diff --git a/assets/js/src/core/modules/execution-engine/jobs/__tests__/job-rehydration.test.ts b/assets/js/src/core/modules/execution-engine/jobs/__tests__/job-rehydration.test.ts
index 5ff0c9f104..002f30dd5d 100644
--- a/assets/js/src/core/modules/execution-engine/jobs/__tests__/job-rehydration.test.ts
+++ b/assets/js/src/core/modules/execution-engine/jobs/__tests__/job-rehydration.test.ts
@@ -13,6 +13,7 @@ import { MessageBusJobHandler } from '@Pimcore/modules/execution-engine/message-
import { ChildJobStepTracker } from '@Pimcore/modules/execution-engine/message-handlers/message-bus-job/step-tracker/child-job-step-tracker'
import { DefaultStepTracker } from '@Pimcore/modules/execution-engine/message-handlers/message-bus-job/step-tracker/default-step-tracker'
import { ProgressFieldCalculator } from '@Pimcore/modules/execution-engine/message-handlers/message-bus-job/progress-calculator/progress-field-calculator'
+import { BatchedStepProgressCalculator } from '@Pimcore/modules/execution-engine/message-handlers/message-bus-job/progress-calculator/batched-step-progress-calculator'
import { ZipDownloadJob } from '@Pimcore/modules/execution-engine/jobs/download/zip-download-job'
import { CsvDownloadJob } from '@Pimcore/modules/execution-engine/jobs/download/csv-download-job'
import { XlsxDownloadJob } from '@Pimcore/modules/execution-engine/jobs/download/xlsx-download-job'
@@ -243,10 +244,10 @@ describe('AbstractBatchEditJob.rehydrate()', () => {
expect(opts.stepTracker).toBeUndefined()
})
- it('does not pass progressCalculator (uses handler default)', () => {
+ it('uses BatchedStepProgressCalculator', () => {
AbstractBatchEditJob.rehydrate([jobRun(42, 'studio_ee_job_patch_elements')])
const opts = HandlerMock.mock.calls.at(-1)![0]
- expect(opts.progressCalculator).toBeUndefined()
+ expect(opts.progressCalculator).toBeInstanceOf(BatchedStepProgressCalculator)
})
})
@@ -477,7 +478,7 @@ describe('ZipUploadJob: run() matches rehydrate() structurally', () => {
})
describe('AbstractBatchEditJob: run() matches rehydrate() structurally', () => {
- it('produces identical title, stepTracker (none) and progressCalculator (none)', async () => {
+ it('produces identical title, stepTracker (none) and BatchedStepProgressCalculator', async () => {
const job = new TestableBatchEditJob({ assetContextId: 1, refreshGrid: async () => {} })
await job.run({ messageBus: mockBus as any })
const runSnapshot = structuralSnapshot(HandlerMock.mock.calls.at(-1)![0])
diff --git a/assets/js/src/core/modules/execution-engine/jobs/batch-edit/abstract-batch-edit-job.ts b/assets/js/src/core/modules/execution-engine/jobs/batch-edit/abstract-batch-edit-job.ts
index dde74156b6..40023a7a66 100644
--- a/assets/js/src/core/modules/execution-engine/jobs/batch-edit/abstract-batch-edit-job.ts
+++ b/assets/js/src/core/modules/execution-engine/jobs/batch-edit/abstract-batch-edit-job.ts
@@ -12,6 +12,7 @@ import { isNil } from 'lodash'
import trackError, { GeneralError } from '@Pimcore/modules/app/error-handler'
import { type JobInterface, type JobRunOptions } from '../job-interface'
import { MessageBusJobHandler, type JobCompletionData } from '../../message-handlers/message-bus-job/message-bus-job-handler'
+import { BatchedStepProgressCalculator } from '../../message-handlers/message-bus-job/progress-calculator/batched-step-progress-calculator'
import { type JobButtonCustomizationContext } from '../../message-handlers/message-bus-job/message-bus-job-notification'
import { t } from 'i18next'
import { type RehydratableJob, type JobRunList } from '../../services/job-rehydration-registry'
@@ -109,6 +110,7 @@ export abstract class AbstractBatchEditJob implements JobInterface {
return new MessageBusJobHandler({
jobRunId: options.jobRunId,
title: t('batch-edit.job-title'),
+ progressCalculator: new BatchedStepProgressCalculator(),
onJobCompletion: options.onJobCompletion,
onRetry: options.onRetry,
onCustomizeButtons: options.onCustomizeButtons
diff --git a/assets/js/src/core/modules/execution-engine/jobs/tag-assign/tag-assign-job.ts b/assets/js/src/core/modules/execution-engine/jobs/tag-assign/tag-assign-job.ts
index a652b4225b..b090a091fa 100644
--- a/assets/js/src/core/modules/execution-engine/jobs/tag-assign/tag-assign-job.ts
+++ b/assets/js/src/core/modules/execution-engine/jobs/tag-assign/tag-assign-job.ts
@@ -14,6 +14,7 @@ import trackError, { ApiError, GeneralError } from '@Pimcore/modules/app/error-h
import { type JobInterface, type JobRunOptions } from '../job-interface'
import { type ElementType } from '@Pimcore/types/enums/element/element-type'
import { MessageBusJobHandler } from '../../message-handlers/message-bus-job/message-bus-job-handler'
+import { BatchedStepProgressCalculator } from '../../message-handlers/message-bus-job/progress-calculator/batched-step-progress-calculator'
import { api, type TagBatchOperationToElementsByTypeAndIdApiArg } from '@Pimcore/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice-enhanced'
import { t } from 'i18next'
import { type RehydratableJob, type JobRunList } from '../../services/job-rehydration-registry'
@@ -99,7 +100,8 @@ export class TagAssignJob implements JobInterface {
}): MessageBusJobHandler {
return new MessageBusJobHandler({
jobRunId: options.jobRunId,
- title: t(titleKeyByOperation[options.operation])
+ title: t(titleKeyByOperation[options.operation]),
+ progressCalculator: new BatchedStepProgressCalculator()
})
}
}
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/entrypoints.json b/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/entrypoints.json
deleted file mode 100644
index 5b94823366..0000000000
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/entrypoints.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "entrypoints": {
- "index": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js"
- ],
- "css": []
- },
- "pimcore_studio_ui_bundle": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js"
- ],
- "css": []
- },
- "exposeRemote": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/exposeRemote.js"
- ],
- "css": []
- }
- }
-}
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/manifest.json b/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/manifest.json
deleted file mode 100644
index f587f07c72..0000000000
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/manifest.json
+++ /dev/null
@@ -1,811 +0,0 @@
-{
- "allFiles": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/9633.d4e96fc8.css",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-stats.json",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-manifest.json",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Light.bec6f0ae.ttf",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Regular.4291f48c.ttf",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Bold.2c00c297.ttf",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/svg/spritesheet.ac8b36fa.svg",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/index.html"
- ],
- "entries": {
- "index": {
- "html": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/index.html"
- ],
- "initial": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js"
- ]
- },
- "async": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js"
- ]
- },
- "async": {
- "js": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js"
- ],
- "css": [
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/9633.d4e96fc8.css",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css",
- "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
- ]
- }
- }
- },
- "integrity": {}
-}
\ No newline at end of file
diff --git a/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/entrypoints.json b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/entrypoints.json
new file mode 100644
index 0000000000..625f811cef
--- /dev/null
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/entrypoints.json
@@ -0,0 +1,23 @@
+{
+ "entrypoints": {
+ "index": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js"
+ ],
+ "css": []
+ },
+ "pimcore_studio_ui_bundle": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js"
+ ],
+ "css": []
+ },
+ "exposeRemote": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/exposeRemote.js"
+ ],
+ "css": []
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/exposeRemote.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/exposeRemote.js
similarity index 53%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/exposeRemote.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/exposeRemote.js
index a8b32f6207..a935371411 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/exposeRemote.js
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/exposeRemote.js
@@ -1,3 +1,3 @@
- window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js'
+ window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js'
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/index.html b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/index.html
similarity index 56%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/index.html
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/index.html
index 69a8382727..9ec98d1fbf 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/index.html
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/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/4188a550-3aa8-47ff-9d90-42489b220dd9/manifest.json b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/manifest.json
new file mode 100644
index 0000000000..8042d38cf7
--- /dev/null
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/manifest.json
@@ -0,0 +1,811 @@
+{
+ "allFiles": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/9633.1ef0a110.css",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-stats.json",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-manifest.json",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Light.bec6f0ae.ttf",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Regular.4291f48c.ttf",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/svg/spritesheet.ac8b36fa.svg",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/index.html"
+ ],
+ "entries": {
+ "index": {
+ "html": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/index.html"
+ ],
+ "initial": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js"
+ ]
+ },
+ "async": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/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/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js"
+ ]
+ },
+ "async": {
+ "js": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js"
+ ],
+ "css": [
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/9633.1ef0a110.css",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css",
+ "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
+ ]
+ }
+ }
+ },
+ "integrity": {}
+}
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-manifest.json b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-manifest.json
similarity index 99%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-manifest.json
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-manifest.json
index 911644c2da..8dbfd1da6f 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-manifest.json
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-manifest.json
@@ -22,7 +22,7 @@
"globalName": "pimcore_studio_ui_bundle",
"pluginVersion": "2.2.3",
"prefetchInterface": false,
- "publicPath": "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/"
+ "publicPath": "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/"
},
"shared": [
{
@@ -789,7 +789,7 @@
"css": {
"async": [],
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
]
}
},
@@ -840,7 +840,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js"
],
@@ -1108,8 +1108,8 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
],
"async": []
}
@@ -1141,7 +1141,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js"
],
"async": [
@@ -1424,19 +1424,19 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
},
@@ -1482,7 +1482,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -1778,20 +1778,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
},
@@ -1822,7 +1822,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -1881,7 +1881,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -2159,14 +2159,14 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
]
}
},
@@ -2874,7 +2874,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -3165,7 +3165,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -3219,7 +3219,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -3505,20 +3505,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
},
@@ -3809,7 +3809,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -3856,7 +3856,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js"
@@ -4141,20 +4141,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
},
@@ -4442,7 +4442,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -4751,7 +4751,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5040,7 +5040,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5349,7 +5349,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5638,7 +5638,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5957,7 +5957,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6246,7 +6246,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6553,7 +6553,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6590,7 +6590,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -6610,9 +6610,9 @@
"css": {
"sync": [],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
]
}
},
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-stats.json b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-stats.json
similarity index 99%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-stats.json
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-stats.json
index 07c481cb3c..a278fff479 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/mf-stats.json
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/mf-stats.json
@@ -22,7 +22,7 @@
"globalName": "pimcore_studio_ui_bundle",
"pluginVersion": "2.2.3",
"prefetchInterface": false,
- "publicPath": "/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/"
+ "publicPath": "/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/"
},
"shared": [
{
@@ -1004,7 +1004,7 @@
"css": {
"async": [],
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
]
}
},
@@ -1062,7 +1062,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js"
],
@@ -1330,8 +1330,8 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
],
"async": []
}
@@ -1365,7 +1365,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js"
],
"async": [
@@ -1648,19 +1648,19 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
}
@@ -1719,7 +1719,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -2015,20 +2015,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
}
@@ -2061,7 +2061,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -2120,7 +2120,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -2398,14 +2398,14 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
]
}
}
@@ -3157,7 +3157,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -3450,7 +3450,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -3510,7 +3510,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -3796,20 +3796,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
}
@@ -4105,7 +4105,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -4160,7 +4160,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js"
@@ -4445,20 +4445,20 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/2103.0449b778.js"
]
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css"
]
}
}
@@ -4748,7 +4748,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5061,7 +5061,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5362,7 +5362,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5675,7 +5675,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -5966,7 +5966,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6293,7 +6293,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6584,7 +6584,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6895,7 +6895,7 @@
},
"css": {
"sync": [
- "static/css/async/9633.d4e96fc8.css"
+ "static/css/async/9633.1ef0a110.css"
],
"async": []
}
@@ -6937,7 +6937,7 @@
"static/js/async/1693.f94a5c52.js",
"static/js/async/2843.971b7a56.js",
"static/js/async/2545.5fc75b47.js",
- "static/js/async/6359.8c0be3b6.js",
+ "static/js/async/6359.26d45383.js",
"static/js/async/4530.72904f19.js",
"static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js",
"static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js",
@@ -6957,9 +6957,9 @@
"css": {
"sync": [],
"async": [
- "static/css/async/9633.d4e96fc8.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css",
- "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css"
+ "static/css/async/9633.1ef0a110.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css",
+ "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css"
]
}
}
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/9633.d4e96fc8.css b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/9633.1ef0a110.css
similarity index 98%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/9633.d4e96fc8.css
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/9633.1ef0a110.css
index 0522ed47d8..2fd58ebe98 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/9633.d4e96fc8.css
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/9633.1ef0a110.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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/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/4188a550-3aa8-47ff-9d90-42489b220dd9/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/4188a550-3aa8-47ff-9d90-42489b220dd9/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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css
similarity index 96%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.css
index 8df688b8f0..978d8de302 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap.3ecb63e4.css
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap.b347e6d7.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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/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/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf);font-weight:700}
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css
similarity index 96%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.css
index 8df688b8f0..978d8de302 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.3ecb63e4.css
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.b347e6d7.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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/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/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf);font-weight:700}
\ No newline at end of file
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Bold.2c00c297.ttf b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Bold.2c00c297.ttf
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Bold.2c00c297.ttf
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Light.bec6f0ae.ttf b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Light.bec6f0ae.ttf
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Light.bec6f0ae.ttf
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Light.bec6f0ae.ttf
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Regular.4291f48c.ttf b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Regular.4291f48c.ttf
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/font/Lato-Regular.4291f48c.ttf
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/font/Lato-Regular.4291f48c.ttf
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/7366.cc04fcb0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/7366.cc04fcb0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1003.469c1fdb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1003.469c1fdb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/101.1b8f34f4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/101.1b8f34f4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1010.af98507b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1010.af98507b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1019.2c88f074.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1019.2c88f074.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/103.3717b318.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/103.3717b318.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1065.5cc838a2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1065.5cc838a2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1102.01cefe38.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1102.01cefe38.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1153.7cbdaf39.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1153.7cbdaf39.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1180.c2738508.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1180.c2738508.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1207.ea0577c0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1207.ea0577c0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1265.d95e4129.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1265.d95e4129.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1270.4a7146b0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1270.4a7146b0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/129.24017dc3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/129.24017dc3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1303.f89c138e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1303.f89c138e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/141.a305e3e9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/141.a305e3e9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1428.b3183de2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1428.b3183de2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1438.67cdf5fd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1438.67cdf5fd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/145.7d13ff5f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/145.7d13ff5f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1472.e37f95af.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1472.e37f95af.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1553.630acce1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1553.630acce1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1567.debd0837.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1567.debd0837.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/157.8615578d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/157.8615578d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1612.54f63d68.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1612.54f63d68.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1635.18d9dd0b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1635.18d9dd0b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1643.b41a359d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1643.b41a359d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1668.120c2fdd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1668.120c2fdd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1688.4626095c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1688.4626095c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1693.f94a5c52.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1693.f94a5c52.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1708.de5f09b0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1708.de5f09b0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/172.cb77a99e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/172.cb77a99e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1742.9207983d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1742.9207983d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/175.780b640e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/175.780b640e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1750.19b70383.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1750.19b70383.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1762.e6454223.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1762.e6454223.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1797.bc29fd89.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1797.bc29fd89.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1814.16619920.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1814.16619920.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1834.3ea07c1f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1834.3ea07c1f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1851.1528a0c7.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1851.1528a0c7.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/1875.048f7c1f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/1875.048f7c1f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/198.96c8f5d3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/198.96c8f5d3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2015.28b3f667.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2015.28b3f667.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2016.2efa4d68.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2016.2efa4d68.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2020.79eb6b1c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2020.79eb6b1c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/206.0227085b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/206.0227085b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2073.0f14210c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2073.0f14210c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2098.4b97bea3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2098.4b97bea3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2103.0449b778.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2103.0449b778.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2117.da809f8e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2117.da809f8e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2121.8117f390.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2121.8117f390.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2162.e42c8ad6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2162.e42c8ad6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2168.3b00277e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2168.3b00277e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2179.7408679f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2179.7408679f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2188.4f425ede.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2188.4f425ede.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2189.e296ffec.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2189.e296ffec.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2202.bd928b8b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2202.bd928b8b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2204.875d7d36.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2204.875d7d36.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2237.e23d4ce3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2237.e23d4ce3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2267.ad4d61d8.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2267.ad4d61d8.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2272.b29c0e6c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2272.b29c0e6c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2287.6a200c82.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2287.6a200c82.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2290.68fd6bdf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2290.68fd6bdf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/235.97e84a52.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/235.97e84a52.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2373.11c5538c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2373.11c5538c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2380.d6bc17ef.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2380.d6bc17ef.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2399.305db162.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2399.305db162.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2410.4b5baf39.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2410.4b5baf39.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2427.2406cc45.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2427.2406cc45.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/243.098f10af.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/243.098f10af.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2463.da2cfb76.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2463.da2cfb76.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2464.8deaa84f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2464.8deaa84f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2472.f40725db.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2472.f40725db.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2492.cc8cd85c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2492.cc8cd85c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/25.36d6a68b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/25.36d6a68b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2503.1efd0e77.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2503.1efd0e77.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/254.7abe0c11.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/254.7abe0c11.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2545.5fc75b47.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2545.5fc75b47.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2597.969d51fc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2597.969d51fc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/261.0e13114e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/261.0e13114e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2619.543b4f03.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2619.543b4f03.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2638.d949ec28.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2638.d949ec28.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2709.809fe258.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2709.809fe258.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2739.84cc2ba2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2739.84cc2ba2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2775.0d98465a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2775.0d98465a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2793.a25ad8de.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2793.a25ad8de.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/281.d912a74e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/281.d912a74e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2841.e1a4734b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2841.e1a4734b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2843.971b7a56.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2843.971b7a56.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2845.d2c82bf6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2845.d2c82bf6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2893.99328fa1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2893.99328fa1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/2980.d885aa98.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/2980.d885aa98.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3.470a371d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3.470a371d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3009.be7deeee.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3009.be7deeee.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3055.b0f87225.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3055.b0f87225.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3062.323c4508.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3062.323c4508.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3066.31b992e1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3066.31b992e1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3068.7b747a5f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3068.7b747a5f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3125.ce787981.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3125.ce787981.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3144.edcf7515.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3144.edcf7515.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3166.32d06e35.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3166.32d06e35.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3197.ebf93fd4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3197.ebf93fd4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3209.6722a080.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3209.6722a080.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3229.97f4b7e5.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3229.97f4b7e5.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3240.f86bdd91.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3240.f86bdd91.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3330.c830e580.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3330.c830e580.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/334.67e5210f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/334.67e5210f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3379.f0e413e5.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3379.f0e413e5.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/339.19de338d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/339.19de338d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3392.42b07d09.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3392.42b07d09.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3396.4cc8f904.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3396.4cc8f904.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3406.86351b7b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3406.86351b7b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/35.d81ad3e5.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/35.d81ad3e5.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3528.60fd342c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3528.60fd342c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3548.133939a2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3548.133939a2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3584.4ad9a196.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3584.4ad9a196.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/365.e655295f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/365.e655295f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3653.7c1ffecd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3653.7c1ffecd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3657.cf916f7e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3657.cf916f7e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3686.6b54036a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3686.6b54036a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3748.7adfb9d1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3748.7adfb9d1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3750.921e74ed.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3750.921e74ed.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3756.7a4c5e02.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3756.7a4c5e02.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/380.0cdf7b27.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/380.0cdf7b27.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3836.6a4b9fd9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3836.6a4b9fd9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3838.4b01fffb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3838.4b01fffb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3839.800430ba.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3839.800430ba.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3846.e0ec9537.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3846.e0ec9537.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/385.d9b4f6a1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/385.d9b4f6a1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3902.c12cb4c1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3902.c12cb4c1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3935.0990f5be.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3935.0990f5be.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/3941.9ceed713.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/3941.9ceed713.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4028.d910fe41.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4028.d910fe41.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4034.ebc0a070.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4034.ebc0a070.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4062.57e047db.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4062.57e047db.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4083.82e017ef.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4083.82e017ef.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4084.a80198a1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4084.a80198a1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4120.afd6653a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4120.afd6653a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4154.2617dd8b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4154.2617dd8b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4160.1311e5ef.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4160.1311e5ef.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4195.4fb2f2ba.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4195.4fb2f2ba.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4225.61de23fc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4225.61de23fc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4241.f5777d74.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4241.f5777d74.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4319.ca014781.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4319.ca014781.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4329.4e8ef4cc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4329.4e8ef4cc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4346.867849d4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4346.867849d4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4426.20bcaf42.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4426.20bcaf42.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/446.2523c50a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/446.2523c50a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/45.e217286d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/45.e217286d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4530.72904f19.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4530.72904f19.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4603.86da83a0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4603.86da83a0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4680.66eae797.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4680.66eae797.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4693.552164ec.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4693.552164ec.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4698.6d0eba4e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4698.6d0eba4e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4702.508d41d1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4702.508d41d1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4715.3e1202d6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4715.3e1202d6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4718.b15efaaf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4718.b15efaaf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4771.c5e9b1dd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4771.c5e9b1dd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4799.a225248d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4799.a225248d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4858.820711a5.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4858.820711a5.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/4871.b42a8935.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/4871.b42a8935.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/489.693d11de.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/489.693d11de.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5084.877dbf80.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5084.877dbf80.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5114.ebf1bfcb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5114.ebf1bfcb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5123.9f567207.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5123.9f567207.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5154.a94bb137.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5154.a94bb137.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5168.fdbd2cef.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5168.fdbd2cef.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5177.a255dad2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5177.a255dad2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5186.deb009c0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5186.deb009c0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/521.cb98200a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/521.cb98200a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5277.97ce57aa.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5277.97ce57aa.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5331.bbbb73f8.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5331.bbbb73f8.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5412.53c2e3aa.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5412.53c2e3aa.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5431.0eb962a2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5431.0eb962a2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5454.a8bca7d3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5454.a8bca7d3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5545.cde240bd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5545.cde240bd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5561.b76a78d2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5561.b76a78d2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5690.782c3ae6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5690.782c3ae6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5696.ab2274ca.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5696.ab2274ca.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5712.ffe8bf9d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5712.ffe8bf9d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5731.15301fd9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5731.15301fd9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5753.371bde44.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5753.371bde44.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5804.1be86954.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5804.1be86954.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/582.4f5fd381.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/582.4f5fd381.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5841.812278cf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5841.812278cf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5904.327a2f83.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5904.327a2f83.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5976.be3da2cf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5976.be3da2cf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/5990.3c9d8c23.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/5990.3c9d8c23.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6052.a270b069.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6052.a270b069.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6135.d371dcf8.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6135.d371dcf8.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6186.9fa7f507.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6186.9fa7f507.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/619.59f8e380.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/619.59f8e380.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6229.ec077e40.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6229.ec077e40.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6255.2e48b884.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6255.2e48b884.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6270.f9ff3abd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6270.f9ff3abd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6272.f2f56a80.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6272.f2f56a80.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6313.e76747fb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6313.e76747fb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6335.0ad9b174.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6335.0ad9b174.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js
similarity index 97%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js
index 0bfa6d7272..00c60a8ff9 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js
@@ -1,4 +1,4 @@
-/*! For license information please see 6359.8c0be3b6.js.LICENSE.txt */
+/*! For license information please see 6359.26d45383.js.LICENSE.txt */
(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6359"],{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={}}}},50889(e,t,i){"use strict";i(46680);var n,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,N,A,R,V,z,B,O,K,_,H,$,W,q,G,U,J,Q,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,eN,eA,eR,eV,ez,eB,eO,eK,e_,eH,e$,eW,eq,eG,eU,eJ,eQ,eZ,eY,eX,e0,e1,e2,e3,e6,e4,e5,e7,e8,e9,te,tt,ti,tn,tr,ta,tl,to,ts,td,tc,tf=i(34231),tu=i(27755),tm=i(10600),tp=i(63364),tg=i(26053),th=i(77885),ty=i(57885),tv=i(58487),tb=i(86208),tx=i(85296),tj=i(61476),tw=i(89446),tk=i(68220),tT=i(84956),tS=i(53152),tC=i(31635),tD=i(62446);class tI{registerComponent(e,t){this.components.set(e,t)}getComponentByType(e){return this.components.get(e)}constructor(){this.components=new Map}}tI=(0,tC.Cg)([(0,tD.injectable)()],tI);class tM{register(e){for(let t of e.jobNames)this.registry.set(t,t=>e.rehydrate(t))}get(e){return this.registry.get(e)}constructor(){this.registry=new Map}}tM=(0,tC.Cg)([(0,tD.injectable)()],tM);class tL{async runJob(e){this.globalProcess.isConnected()||this.globalProcess.start();let t=e.constructor;if(null!=t.jobNames){for(let i of t.jobNames)if(void 0===this.rehydrationRegistry.get(i))throw Error(`Job "${i}" (${e.constructor.name}) is not registered in the rehydration registry. Call registry.register(${e.constructor.name}) in your module's onInit().`)}await e.run({messageBus:this.messageBus})}rehydrateRunningJobs(e){if(0===e.length)return;this.globalProcess.isConnected()||this.globalProcess.start();let t=new Set(e.filter(e=>null!=e.jobRunChildId).map(e=>e.jobRunChildId));for(let i of e.filter(e=>!t.has(e.id))){let t=this.rehydrationRegistry.get(i.jobName);if(void 0===t){console.warn(`[ExecutionEngine] No rehydration handler for job "${i.jobName}" (id ${i.id}). Register it with JobRehydrationRegistry in your module's onInit().`);continue}let n=[i],r=i;for(;null!=r.jobRunChildId;){let t=e.find(e=>e.id===r.jobRunChildId);if(void 0===t)break;n.push(t),r=t}let a=t(n);a.setInitialStatus(n.at(-1).state),this.messageBus.registerHandler(a)}}constructor(e,t,i){this.messageBus=e,this.globalProcess=t,this.rehydrationRegistry=i}}tL=(0,tC.Cg)([(0,tD.injectable)(),(0,tC.Qj)(0,(0,tD.inject)(tm.K.globalMessageBus)),(0,tC.Qj)(1,(0,tD.inject)(tm.K.globalMessageBusProcess)),(0,tC.Qj)(2,(0,tD.inject)(tm.K["ExecutionEngine/JobRehydrationRegistry"])),(0,tC.Sn)("design:type",Function),(0,tC.Sn)("design:paramtypes",["u"{t in e&&!(0,tP.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,tE.$)()}/assets/${n}`;"video"===r?(t="/video/stream/image-thumbnail",i=this.buildQueryParams(e,tR)):(t=`/${r}/stream/custom`,i=this.buildQueryParams(e,tA),(0,tP.isUndefined)(e.resizeMode)&&i.set("resizeMode","document"===r?"resize":"none"),(0,tP.isUndefined)(e.mimeType)&&i.set("mimeType","JPEG"));let l=i.toString();return`${a}${t}${!(0,tP.isEmpty)(l)?`?${l}`:""}`}buildQueryParams(e,t){let i=new URLSearchParams;return t.forEach(t=>{let n=e[t];!(0,tP.isNil)(n)&&((0,tP.isBoolean)(n)?n&&i.append(t,"true"):(0,tP.isNumber)(n)?i.append(t,Math.round(n).toString()):i.append(t,String(n)))}),i}}tV=(0,tC.Cg)([(0,tD.injectable)()],tV);var tz=i(23176),tB=i(69186);class tO extends tB.P{}tO=(0,tC.Cg)([(0,tD.injectable)()],tO);class tK{}tK=(0,tC.Cg)([(0,tD.injectable)()],tK);class t_ extends tK{constructor(...e){super(...e),this.id="archive"}}t_=(0,tC.Cg)([(0,tD.injectable)()],t_);class tH extends tK{constructor(...e){super(...e),this.id="audio"}}tH=(0,tC.Cg)([(0,tD.injectable)()],tH);class t$ extends tK{constructor(...e){super(...e),this.id="document"}}t$=(0,tC.Cg)([(0,tD.injectable)()],t$);class tW extends tK{constructor(...e){super(...e),this.id="folder"}}tW=(0,tC.Cg)([(0,tD.injectable)()],tW);class tq extends tK{constructor(...e){super(...e),this.id="image"}}tq=(0,tC.Cg)([(0,tD.injectable)()],tq);class tG extends tK{constructor(...e){super(...e),this.id="text"}}tG=(0,tC.Cg)([(0,tD.injectable)()],tG);class tU extends tK{constructor(...e){super(...e),this.id="unknown"}}tU=(0,tC.Cg)([(0,tD.injectable)()],tU);class tJ extends tK{constructor(...e){super(...e),this.id="video"}}tJ=(0,tC.Cg)([(0,tD.injectable)()],tJ);var tQ=i(57697),tZ=i(74848),tY=i(47867),tX=i.n(tY),t0=i(92428),t1=i(87616);let t2=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tZ.jsx)(t1.lV.Item,{initialValue:!1,name:i,valuePropName:"checked",children:(0,tZ.jsx)(t0.S,{})})},t3=(0,tD.injectable)()(x=class{getBatchEditComponent(e){return(0,tZ.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","checkbox")}})||x;var t6=i(81659),t4=i(81215),t5=i(11354);let t7=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tZ.jsx)(t1.lV.Item,{name:i,children:(0,tZ.jsx)(t5.l,{outputType:"timestamp"})})},t8=(0,tD.injectable)()(j=class{getBatchEditComponent(e){return(0,tZ.jsx)(t7,{...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")}})||j;var t9=i(74462),ie=i(50094);let it=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tZ.jsx)(ie._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tZ.jsx)(t1.lV.Item,{name:i,children:(0,tZ.jsx)(t9.P,{assetsAllowed:!0})})})},ii=(0,tD.injectable)()(w=class{getBatchEditComponent(e){return(0,tZ.jsx)(it,{...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")}})||w;var ir=i(1993);let ia=e=>{var t,i;let{batchEdit:n}=e,{key:r,config:a}=n,l="definition"in a&&(0,tP.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,tZ.jsx)(t1.lV.Item,{name:r,children:(0,tZ.jsx)(ir.l,{options:o})})},il=(0,tD.injectable)()(k=class{getBatchEditComponent(e){return(0,tZ.jsx)(ia,{...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")}})||k;var io=i(33473),is=i(53031),id=i(78785),ic=i(17044),iu=i(16450),im=i(11584);let ip=e=>{switch(e){case -1:return!1;case 0:default:return null;case 1:return!0}},ig=e=>!0===e?1:!1===e?-1:0,ih=()=>{var e;let{setData:t,data:i,config:n}=(0,iu.F)(),[r,a]=(0,tY.useState)([]),l=[];return l=(0,im.a)(n)&&Array.isArray(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,tY.useEffect)(()=>{a((i??[]).map(ig))},[i]),(0,tZ.jsx)(ir.l,{mode:"multiple",onChange:e=>{a(e),t(e.map(ip))},options:l,style:{width:"100%"},value:r})},iy=(0,tD.injectable)()(T=class extends ic.C{getFieldFilterType(){return"system.boolean"}getFieldFilterComponent(){return(0,tZ.jsx)(ih,{})}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")}})||T,iv=(0,tD.injectable)()(S=class extends iy{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")}})||S;var ib=i(94652);let ix=(0,tD.injectable)()(C=class extends ic.C{getFieldFilterType(){return"crm.consent"}getFieldFilterComponent(e){return(0,tZ.jsx)(ib.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")}})||C;var ij=i(86569),iw=i(72928);let ik=()=>{let{config:e}=(0,iu.F)(),{getType:t,hasType:i,getComponentRenderer:n}=(0,iw.R)();if(!(0,im.a)(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,tZ.jsx)(ij.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,tZ.jsx)(ij.Alert,{message:`Filter for ${r.fieldtype} is not supported`,type:"error"}):(0,tZ.jsx)(tZ.Fragment,{children:l(r)})};var iT=i(46881);let iS=(0,tD.injectable)()(D=class extends ic.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){if(null===e)return!1;let t=iT.container.get(iT.serviceIds["DynamicTypes/ObjectDataRegistry"]);return!!t.hasDynamicType(e)&&t.getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tZ.jsx)(ik,{...e})}transformFilterToApiRequest(e){return iT.container.get(iT.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")}})||D,iC=()=>{let{config:e}=(0,iu.F)(),{hasType:t,getComponentRenderer:i}=(0,iw.R)();if(!(0,im.a)(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,tZ.jsx)(ij.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,tZ.jsx)(tZ.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tZ.jsx)(tZ.Fragment,{children:a(n)})},iD=(0,tD.injectable)()(I=class extends ic.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){return null!==e&&iT.container.get(iT.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tZ.jsx)(iC,{...e})}transformFilterToApiRequest(e){return iT.container.get(iT.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")}})||I;var iI=i(46383),iM=i(71916);let iL=(0,tD.injectable)()(M=class extends ic.C{getFieldFilterType(){return"system.number"}getFieldFilterComponent(e){return(0,tZ.jsx)(iM.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")}})||M;var iF=i(13145),iE=i(95433),iP=i(14542);class iN extends ic.C{getFieldFilterComponent(e){return(0,tZ.jsx)(iP.i,{...e})}}let iA=(0,tD.injectable)()(L=class extends iN{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")}})||L;var iR=i(97536),iV=i(30595),iz=i(40917);let iB=(0,tD.injectable)()(F=class extends iV.E{getGridCellComponent(e){return(0,tZ.jsx)(iz.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")}})||F;var iO=i(31492),iK=i(7814),i_=i(44241);let iH=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{cell:i`
.pimcore-icon {
color: ${t.Colors.Neutral.Icon.colorIcon};
@@ -887,7 +887,7 @@
.ant-dropdown-menu-item-group-list {
margin: 0 !important;
}
- `}}),SU=()=>{let{t:e}=(0,i1.useTranslation)(),[t,i]=tX().useState([]),{workflowDetailsData:n,isFetchingWorkflowDetails:r}=(0,S$.j)(),{styles:a}=SG();return(0,tY.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,tZ.jsx)(Sq,{workflow:t})}),{key:t.workflowName,type:"group",label:e(t.workflowLabel),children:r}}))},[n]),(0,tZ.jsxs)(ax.s,{align:"center",justify:"flex-end",children:[(0,tZ.jsx)(Sz.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,tZ.jsx)(SB.E,{color:i.color}),style:n};t.push(r)}}),t),[])]:[[]],wrap:!1}),void 0!==n&&(0,tZ.jsx)(pI.m,{disabled:r,menu:{items:t},overlayClassName:a.dropdownOverlay,children:(0,tZ.jsx)(pD.g,{children:(0,tZ.jsx)(aa.I,{options:{height:16,width:16},value:"workflow"})})})]})};var SJ=i(33142);let SQ=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2],[n,{isLoading:r,isSuccess:a,isError:l,error:o}]=(0,i6.Jj)(),[s,d]=(0,tY.useState)(!1),{element:c,schedules:f,resetSchedulesChanges:u}=(0,SJ.D)(t,e),m=(0,uH.J)(),{t:p}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{s&&(i&&m.success(p("save-success")),u())},[s]),(0,tY.useEffect)(()=>{d(a)},[a]),(0,tY.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 SZ=i(60124),SY=i(3416);let SX=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,i3.J)(),i=(0,iT.useAppDispatch)(),{asset:n,properties:r,removeTrackedChanges:a,customMetadata:l,customSettings:o,imageSettings:s,textData:d}=(0,kJ.l)(t),[c,{isLoading:f,isSuccess:u,isError:m,error:p}]=(0,kZ.useAssetUpdateByIdMutation)(),{saveSchedules:g,isLoading:h,isSuccess:y,isError:v,error:b}=SQ("asset",t,!1),x=(0,uH.J)();return(0,tY.useEffect)(()=>{(async()=>{u&&y&&(a(),await x.success(e("save-success")))})().catch(e=>{console.error(e)})},[u,y]),(0,tY.useEffect)(()=>{m&&!(0,tP.isNil)(p)?(0,i4.Ay)(new i4.hD(p)):v&&!(0,tP.isNil)(b)&&(0,i4.Ay)(new i4.hD(b))},[m,v,p,b]),(0,pp.Z)(async()=>{null!=n&&(0,Si.o)(n.permissions,"publish")&&j()},"publish"),(0,pp.Z)(async()=>{null!=n&&(0,Si.o)(n.permissions,"publish")&&j()},"save"),(0,tZ.jsx)(tZ.Fragment,{children:(0,Si.o)(null==n?void 0:n.permissions,"publish")&&(0,tZ.jsx)(aW.$,{disabled:f||h,loading:f||h,onClick:j,type:"primary",children:e((null==n?void 0:n.type)==="folder"?"toolbar.save":"toolbar.save-and-publish")})});function j(){if((null==n?void 0:n.changes)===void 0)return;let e={};if(n.changes.properties){let t=null==r?void 0:r.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)}n.changes.customMetadata&&(e.metadata=null==l?void 0:l.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})),n.changes.customSettings&&(e.customSettings=o),n.changes.imageSettings&&(e.image=s),n.changes.textData&&(e.data=d);let a=tp.kL.get(tm.K["Asset/ProcessorRegistry/SaveDataProcessor"]),f=new dv.r(t,e);a.executeProcessors(f),Promise.all([c({id:t,body:{data:{...e}}}).then(n=>{if(void 0===n.error){"modificationDate"in n.data&&i((0,T8.hN)({id:t,modificationDate:n.data.modificationDate??null}));let r={identifier:{type:SY.m["asset:editor:post-update"],id:String(t)},payload:{id:t,updatedData:e,responseData:n.data}};SZ.B.publish(r)}return n}),g()]).catch(e=>{console.log(e)})}};var S0=i(11324),S1=i(27918),S2=i(61923),S3=i(83547),S6=i(3257),S4=i(69634);let S5=()=>(0,tZ.jsx)(pC.M,{children:(0,tZ.jsxs)(S3.F,{children:[(0,tZ.jsx)(ax.s,{children:(0,tZ.jsx)(S4.Y,{slot:yH.e.asset.editor.toolbar.slots.left.name})}),(0,tZ.jsx)(ax.s,{style:{height:"32px"},vertical:!1,children:(0,tZ.jsx)(S4.Y,{slot:yH.e.asset.editor.toolbar.slots.right.name})}),(0,tZ.jsx)(S6.x,{})]})});var S7=i(78524),S8=i(17236);let S9=e=>{let{id:t}=e,{isLoading:i,isError:n,asset:r,editorType:a,activeTab:l}=(0,kJ.l)(t),o=(0,S0.P)(),{setContext:s,removeContext:d}=(0,S1.k)();return((0,tY.useEffect)(()=>()=>{d()},[]),(0,tY.useEffect)(()=>(o&&s({id:t,...!(0,tP.isNil)(r)&&{contextIdentifiers:(0,S8.R9)(r,l===Ti.h.key)}}),()=>{o||d()}),[o,l,r]),i)?(0,tZ.jsx)(uG.U,{loading:!0}):n?(0,tZ.jsx)(uG.U,{padded:!0,children:(0,tZ.jsx)(TM.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(T9.AssetProvider,{id:t,children:(0,tZ.jsx)(S7.F,{dataTestId:`asset-editor-${(0,py.Gc)(t)}`,renderTabbar:(0,tZ.jsx)(S2.a,{elementEditorType:a}),renderToolbar:(0,tZ.jsx)(S5,{})})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.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"}),tp.kL.get(tm.K.widgetManager).registerWidget(Se);let t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:yH.e.asset.editor.container.name,component:S9}),t.register({name:yH.e.asset.editor.tab.embeddedMetadata.name,component:SP}),t.register({name:yH.e.asset.editor.tab.customMetadata.name,component:So}),t.register({name:yH.e.asset.editor.tab.versions.name,component:SE}),t.registerToSlot("asset.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:SV}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:SU}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"saveButton",priority:200,component:SX})}});var Ce=i(72681),Ct=i(56177),Ci=i(50744),Cn=i(1947),Cr=i(36490),Ca=i(53894),Cl=i(85566),Co=i(79246);let Cs=()=>{let{data:e}=(0,ye.E)(),{selectedRows:t}=(0,Ca.U)(),{elementType:i}=(0,dQ.useElementContext)();return(e=>{let{data:t,selectedRows:i,elementType:n}=e,{context:r,setContext:a}=(0,Cl.L)(),{context:l,setContext:o}=(0,S1.k)(),{context:s,setContext:d}=(0,Co.v)(),c=(0,tY.useMemo)(()=>(0,tP.isNil)(i)?[]:Object.keys(i).map(Number),[i]);(0,tY.useEffect)(()=>{var e;if((0,le.Po)(t))return;let{context:i,setContext:f}=(()=>{switch(n){case sq.W.dataObject:return{context:r,setContext:a};case sq.W.asset:return{context:l,setContext:o};case sq.W.document:return{context:s,setContext:d};default:return{context:r,setContext:a}}})();if((0,tP.isNil)(i))return;let u=null==i||null==(e=i.config)?void 0:e.contextIdentifiers;if(!(0,tP.isObject)(u)||(0,tP.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,tP.isEmpty)(c)&&!(0,tP.isNil)(i)&&m.length>p.length)return void f({id:i.config.id,contextIdentifiers:{...u,tags:p}});if(!(0,tP.isEmpty)(c)){let e=[],r=[];if(c.forEach(i=>{let a=(e=>{let t=(0,tP.get)((0,tP.find)(null==e?void 0:e.columns,{key:"type"}),"value"),i=(0,tP.get)((0,tP.find)(null==e?void 0:e.columns,{key:"classname"}),"value");switch(n){case sq.W.dataObject:return(0,le.Po)(i)?null:`${S8.v1}_${i}_selection`.toLowerCase();case sq.W.asset:return(0,le.Po)(t)?null:`${S8.W4}_${t}_selection`.toLowerCase();case sq.W.document:return(0,le.Po)(t)?null:`${S8.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,tP.isNull)(a)||r.push(a)}),r.length>0){let t=null==u?void 0:u.tags.filter(e=>!e.endsWith("_selection")),n=(0,tP.uniq)([...t,...r]),a=(0,tP.isEqual)(u.tags,r),l=(0,tP.isEqual)(u.selectedElements,e);a||l||(0,tP.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,tZ.jsx)(tZ.Fragment,{})},Cd=e=>{let{ViewComponent:t}={...e};return{...e,ViewComponent:()=>{let{data:e}=(0,ye.E)();return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(t,{}),void 0!==e&&(0,tZ.jsx)(Cs,{})]})}}};var Cc=i(56993);let Cf=e=>{let{ContextComponent:t,...i}=e;return{...i,ContextComponent:()=>(0,tZ.jsx)(dQ.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tZ.jsx)(t,{})})}},Cu=()=>(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(yo.y,{}),(0,tZ.jsx)(ys.d,{})]});var Cm=i(52185),Cp=i(8412);let Cg=(0,tY.createContext)({batchEdits:[],setBatchEdits:()=>{}}),Ch=e=>{let{children:t}=e,[i,n]=(0,tY.useState)([]);return(0,tY.useMemo)(()=>(0,tZ.jsx)(Cg.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])};var Cy=i(23558),Cv=i(66634);let Cb=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tY.useContext)(Cg);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 Cx=i(32773),Cj=i(68901),Cw=i(38086);let Ck=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,iw.R)(),{ComponentRenderer:a}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===a?(0,tZ.jsx)(tZ.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tZ.jsx)(tZ.Fragment,{children:a({batchEdit:t})})},CT=()=>{let{batchEdits:e,removeBatchEdit:t}=Cb(),{updateLocale:i}=Cb(),n=["-",...(0,gf.t)().requiredLanguages],r=e.map(e=>{let r=e.locale??"-";return{id:e.key,children:(0,tZ.jsx)(ij.Tag,{children:(0,ne.t)(`${e.key}`)}),renderRightToolbar:(0,tZ.jsx)(Sl.e,{items:[...e.localizable?[(0,tZ.jsx)(Cj.v,{languages:n,onSelectLanguage:t=>{i(e.key,(0,Cw.z1)(t))},selectedLanguage:r},"language-selection")]:[],(0,tZ.jsx)(lw.K,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,tZ.jsx)(Ck,{batchEdit:e})}});return(0,tZ.jsxs)(tZ.Fragment,{children:[0===r.length&&(0,tZ.jsx)(hV.R,{text:(0,ne.t)("batch-edit.no-content")}),r.length>0&&(0,tZ.jsx)(Cx.N,{items:r})]})};var CS=i(62786);let CC=(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=CC(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)),CD=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||CD(e.children));var CI=i(82763);class CM{async run(e){let{messageBus:t}=e;try{let i=await this.executeEditRequest();if((0,tP.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from edit request"));let n=this.createHandler({jobRunId:i,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,ne.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,i4.Ay)(new i4.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch edit job failed:",e)}createHandler(e){return this.constructor.buildHandler(e)}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-edit.job-title"),onJobCompletion:e.onJobCompletion,onRetry:e.onRetry,onCustomizeButtons:e.onCustomizeButtons})}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}constructor(e){this.assetContextId=e.assetContextId,this.onFinish=e.onFinish,this.refreshGrid=e.refreshGrid}}CM.jobNames=["studio_ee_job_patch_elements","studio_ee_job_rewrite_element_references"];class CL extends CM{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}}var CF=i(42523),CE=i(25548);class CP extends CM{static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-edit.job-title"),stepDescriptions:{1:"jobs.job.step.batch-edit.preparing",2:"jobs.job.step.batch-edit.applying"},stepTracker:new CE.m({showStepLabel:!0}),progressCalculator:new CF.a,onJobCompletion:e.onJobCompletion,onRetry:e.onRetry,onCustomizeButtons:e.onCustomizeButtons})}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}}CP.jobNames=["studio_ee_job_patch_folder_elements"];class CN extends CP{async executeEditRequest(){var e;return(null==(e=(await this.patchAssetsInFolder({id:this.folderId,body:{data:{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 CA=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,Cv.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:l}=Cb(),[o]=t1.lV.useForm(),{t:s}=(0,i1.useTranslation)(),[d,{isError:c,isSuccess:f,error:u}]=(0,kZ.useAssetPatchByIdMutation)(),[m,{isError:p,isSuccess:g,error:h}]=(0,kZ.useAssetPatchFolderByIdMutation)(),{selectedRows:y}=(0,Ca.U)(),v=Object.keys(y??{}).map(Number),b=v.length,x=tp.kL.get(tm.K.executionEngine),{id:j,elementType:w}=(0,i3.J)(),{useDataQueryHelper:k}=(0,Cp.t)(),{getArgs:T}=k(),{hasType:S}=(0,iw.R)(),{refreshGrid:C}=(0,CS.X)(w),D=()=>{l(),o.resetFields()};(0,tY.useEffect)(()=>{(f||g)&&(i(!1),D()),1===b&&kZ.api.util.invalidateTags(uB.qN.ASSET_GRID_ID(v[0]))},[f,g]),(0,tY.useEffect)(()=>{c&&(0,i4.Ay)(new i4.hD(u)),p&&(0,i4.Ay)(new i4.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 CN({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 CL({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,tY.useMemo)(()=>()=>(0,tP.isUndefined)(M)?[]:CC(M,r,S),[M,r,S]),F=!CD(L());return(0,tZ.jsx)(Cy.m,{afterClose:()=>{D()},footer:(0,tZ.jsxs)(gy.j,{divider:!0,justify:"space-between",children:[(0,tZ.jsx)(pI.m,{menu:{items:L()},children:(0,tZ.jsx)(pc.J,{disabled:F,icon:{value:"new"},type:"default",children:s("listing.add-column")})}),r.length>0&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"extra-small",children:[(0,tZ.jsx)(pc.J,{icon:{value:"close"},onClick:()=>{l()},type:"link",children:s("batch-edit.modal-footer.discard-all-changes")}),(0,tZ.jsx)(aW.$,{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,tZ.jsx)(gh.w,{children:s("batch-edit.modal-title")}),children:(0,tZ.jsx)(t1.lV,{form:o,onFinish:I,children:(0,tZ.jsx)(CT,{})})})},CR=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsxs)(t1.lV,{layout:"vertical",...t,children:[(0,tZ.jsx)(t1.lV.Item,{label:i("export-csv-form.form-field.delimiter"),name:"delimiter",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ij.Input,{})}),(0,tZ.jsx)(t1.lV.Item,{label:i("export-csv-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ir.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 CV=i(54745),Cz=i(66707);let{useExportDownloadCsvQuery:CB,useExportDeleteCsvMutation:CO,useExportCsvMutation:CK,useExportCsvFolderMutation:C_,useExportDownloadXlsxQuery:CH,useExportDeleteXlsxMutation:C$,useExportXlsxMutation:CW,useExportXlsxFolderMutation:Cq}=p0.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/${e.id}`,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/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["Export"]})}),overrideExisting:!1});var CG=i(35747),CU=i(2662);let CJ=e=>{let[t]=ns.Form.useForm(),i=(0,CU.O)(),{id:n,elementType:r}=(0,i3.J)(),{element:a}=(0,SJ.D)(n,r),[l,o]=(0,tY.useState)("Element"),[s,{isError:d,error:c}]=CK(),[f,{isError:u,error:m}]=C_(),{selectedRows:p}=(0,Ca.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,Cz.K)(),{useDataQueryHelper:y}=(0,Cp.t)(),{getArgs:v}=y(),b=(0,CG.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tY.useEffect)(()=>{d&&(0,i4.Ay)(new i4.hD(c))},[d]),(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(m))},[u]),(0,tZ.jsx)(ij.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tZ.jsx)(gh.w,{iconName:"export",children:j("export-csv-form.modal-title")}),children:(0,tZ.jsxs)(ij.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tZ.jsx)(ij.Alert,{message:j("export-csv-form.export-notice"),showIcon:!0,type:"warning"}),(0,tZ.jsx)(CR,{form:t,initialValues:{delimiter:";",header:"name"},onFinish:function(t){let n=0===g.length,r=new CV.c({action:async()=>await w(t.delimiter,t.header),isFolderExport:n});i.runJob(r),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({id:n,body:{elementType:r,columns:d,config:{delimiter:e,header:t},filters:{...i},...!(0,tP.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},...!(0,tP.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await i).data.jobRunId}}},CQ=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsx)(t1.lV,{layout:"vertical",...t,children:(0,tZ.jsx)(t1.lV.Item,{label:i("export-xlsx-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ir.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")}]})})})};var CZ=i(66901),CY=i(46404);let CX="studio_ee_job_collect_xlsx_folder_export_elements";class C0 extends CZ.k{usesChildJob(){return this.isFolderExport}static getTitle(){return(0,ne.t)("jobs.download-xlsx-job.title")}static getDownloadUrl(){return`${(0,tE.$)()}/export/download/xlsx/{jobRunId}`}static rehydrate(e){let[t]=e;return this.buildHandler({...(0,CY.f)(e),hasChildJob:t.jobName===CX})}constructor(e){super({action:e.action}),this.isFolderExport=e.isFolderExport??!1}}C0.jobNames=["studio_ee_job_create_xlsx",CX];let C1=e=>{let[t]=ns.Form.useForm(),i=(0,CU.O)(),{id:n,elementType:r}=(0,i3.J)(),{element:a}=(0,SJ.D)(n,r),[l,o]=(0,tY.useState)("Element"),[s,{isError:d,error:c}]=CW(),[f,{isError:u,error:m}]=Cq(),{selectedRows:p}=(0,Ca.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,Cz.K)(),{useDataQueryHelper:y}=(0,Cp.t)(),{getArgs:v}=y(),b=(0,CG.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tY.useEffect)(()=>{d&&(0,i4.Ay)(new i4.hD(c))},[d]),(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(m))},[u]),(0,tZ.jsx)(ij.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tZ.jsx)(gh.w,{iconName:"export",children:j("export-xlsx-form.modal-title")}),children:(0,tZ.jsxs)(ij.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tZ.jsx)(ij.Alert,{message:j("export-xlsx-form.export-notice"),showIcon:!0,type:"warning"}),(0,tZ.jsx)(CQ,{form:t,initialValues:{header:"name"},onFinish:function(t){let n=new C0({action:async()=>await w(t.header),isFolderExport:0===g.length});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({id:n,body:{elementType:r,columns:o,config:{header:e},filters:{...t},...!(0,tP.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},...!(0,tP.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await t).data.jobRunId}}};var C2=i(20189);class C3{async run(e){let{messageBus:t}=e;try{let i=await this.executeDeleteRequest();if((0,tP.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from delete request"));let n=C3.buildHandler({jobRunId:i,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,i4.Ay)(new i4.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch delete job failed:",e)}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-delete.job-title"),progressCalculator:new C2.j,onJobCompletion:e.onJobCompletion,onRetry:e.onRetry})}constructor(e){this.itemIds=e.itemIds,this.onFinish=e.onFinish}}class C6 extends C3{static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}async executeDeleteRequest(){var e;let t=await uz.M_.dispatch(kZ.api.endpoints.assetBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}}C6.jobNames=["studio_ee_job_batch_delete_assets"];let C4=()=>{let e=(0,Cm.S)(),{id:t,elementType:i}=(0,i3.J)(),{useDataQueryHelper:n}=(0,Cp.t)(),{getArgs:r}=n(),a=tp.kL.get(tm.K.executionEngine),{refreshGrid:l}=(0,CS.X)(i),{createZipDownload:o}=(0,TZ.v)({type:"folder"}),{createZipDownload:s}=(0,TZ.v)({type:"asset-list"}),[d,c]=(0,tY.useState)(!1),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),{t:g}=(0,i1.useTranslation)();if(void 0===e)return(0,tZ.jsx)(tZ.Fragment,{});let{selectedRows:h,setSelectedRows:y}=e,v=void 0!==h?Object.keys(h).map(Number):[],b=void 0!==h&&Object.keys(h).length>0,x=async()=>{let e=new C6({itemIds:v,onFinish:async()=>{await l(),y({})}});await a.runJob(e)},j={items:[{key:"1",label:g("listing.actions.batch-edit"),icon:(0,tZ.jsx)(aa.I,{value:"batch-selection"}),onClick:()=>{p(!0)}},{key:"2",label:g("listing.actions.export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),children:[{key:"2.1",label:g("listing.actions.csv-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{c(!0)}},{key:"2.2",label:g("listing.actions.xlsx-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{u(!0)}}]},{key:"3",label:g("listing.actions.zip-download"),icon:(0,tZ.jsx)(aa.I,{value:"download"}),onClick:()=>{b?s({requestData:{body:{assets:v,parentId:t}}}):o({requestData:{body:{folders:[t],filters:{...r().body.filters??{}}}}})}},{key:"4",hidden:!b,label:g("listing.actions.delete"),icon:(0,tZ.jsx)(aa.I,{value:"trash"}),onClick:x}]};return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pI.m,{menu:j,children:(0,tZ.jsx)(pD.g,{"data-testid":"listing-batch-actions-button",children:g(b?"listing.actions":"listing.non-selected.actions")},"dropdown-button")}),(0,tZ.jsx)(CJ,{open:d,setOpen:c}),(0,tZ.jsx)(C1,{open:f,setOpen:u}),(0,tZ.jsx)(Ch,{children:(0,tZ.jsx)(CA,{batchEditModalOpen:m,setBatchEditModalOpen:p})})]})},C5=()=>(0,tZ.jsxs)(oR.B,{size:"mini",children:[(0,tZ.jsx)(yl.B,{}),(0,tZ.jsx)(C4,{})]}),C7=()=>(0,tZ.jsxs)(pC.M,{theme:"secondary",children:[(0,tZ.jsx)(ns.Space,{size:"small",children:(0,tZ.jsx)(S4.Y,{slot:uR.componentConfig.asset.listing.toolbar.left.name})}),(0,tZ.jsx)(ns.Space,{size:"small",children:(0,tZ.jsx)(S4.Y,{slot:uR.componentConfig.asset.listing.toolbar.right.name})})]});tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:th.eb.asset.listing.toolbar.component.name,component:C7}),e.registerToSlot(th.eb.asset.listing.toolbar.left.name,{name:"batch-actions",component:C5}),e.registerToSlot(th.eb.asset.listing.toolbar.right.name,{name:"pagination",component:Cu});let t=tp.kL.get(tm.K["Asset/Listing/Builder"]);t.addDecorator({name:"dynamicType",decorator:Cf}),t.addDecorator({name:"actionColumn",decorator:Cn._}),t.addDecorator({name:"globalContext",decorator:Cd}),t.addDecorator({name:"sorting",decorator:h7.Y}),t.addDecorator({name:"paging",decorator:h5.S}),t.addDecorator({name:"columnConfiguration",decorator:Ce.y});let i={useInlineEditApiUpdate:Cc.C};t.addDecorator({name:"inlineEdit",decorator:Ci.P,config:i}),t.addDecorator({name:"rowSelection",decorator:Ct.Y,config:{rowSelectionMode:"multiple"}}),t.addDecorator({name:"contextMenu",decorator:Cr.y}),t.addDecorator({name:"tagFilter",decorator:h1.A}),t.addDecorator({name:"generalFilters",decorator:h4.p})}});var C8=i(41989),C9=i(93121),De=i(56292),Dt=i(63186);let Di=e=>{let{t}=(0,i1.useTranslation)();return(0,tZ.jsx)(Dt.s,{...e,label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var Dn=i(16907),Dr=i(27202),Da=i(65864),Dl=i(62284),Do=i(59385),Ds=i(70916);let Dd=()=>{let{treeId:e}=(0,Ds.z)(),t=(0,Dl.useStore)();return{isSourceAllowed:i=>{var n;if(!(0,Si.o)(i.permissions,"settings")||i.isLocked)return!1;let r=t.getState(),a=(0,Do.selectNodeState)(r,e,i.id.toString());return!(null==a||null==(n=a.treeNodeProps)?void 0:n.isLocked)},isTargetAllowed:e=>(0,Si.o)(e.permissions,"create")}};var Dc=i(16327),Df=i(23050),Du=i(7433),Dm=i(39803),Dp=i(5743);let Dg=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{dragger:i`
+ `}}),SU=()=>{let{t:e}=(0,i1.useTranslation)(),[t,i]=tX().useState([]),{workflowDetailsData:n,isFetchingWorkflowDetails:r}=(0,S$.j)(),{styles:a}=SG();return(0,tY.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,tZ.jsx)(Sq,{workflow:t})}),{key:t.workflowName,type:"group",label:e(t.workflowLabel),children:r}}))},[n]),(0,tZ.jsxs)(ax.s,{align:"center",justify:"flex-end",children:[(0,tZ.jsx)(Sz.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,tZ.jsx)(SB.E,{color:i.color}),style:n};t.push(r)}}),t),[])]:[[]],wrap:!1}),void 0!==n&&(0,tZ.jsx)(pI.m,{disabled:r,menu:{items:t},overlayClassName:a.dropdownOverlay,children:(0,tZ.jsx)(pD.g,{children:(0,tZ.jsx)(aa.I,{options:{height:16,width:16},value:"workflow"})})})]})};var SJ=i(33142);let SQ=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2],[n,{isLoading:r,isSuccess:a,isError:l,error:o}]=(0,i6.Jj)(),[s,d]=(0,tY.useState)(!1),{element:c,schedules:f,resetSchedulesChanges:u}=(0,SJ.D)(t,e),m=(0,uH.J)(),{t:p}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{s&&(i&&m.success(p("save-success")),u())},[s]),(0,tY.useEffect)(()=>{d(a)},[a]),(0,tY.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 SZ=i(60124),SY=i(3416);let SX=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,i3.J)(),i=(0,iT.useAppDispatch)(),{asset:n,properties:r,removeTrackedChanges:a,customMetadata:l,customSettings:o,imageSettings:s,textData:d}=(0,kJ.l)(t),[c,{isLoading:f,isSuccess:u,isError:m,error:p}]=(0,kZ.useAssetUpdateByIdMutation)(),{saveSchedules:g,isLoading:h,isSuccess:y,isError:v,error:b}=SQ("asset",t,!1),x=(0,uH.J)();return(0,tY.useEffect)(()=>{(async()=>{u&&y&&(a(),await x.success(e("save-success")))})().catch(e=>{console.error(e)})},[u,y]),(0,tY.useEffect)(()=>{m&&!(0,tP.isNil)(p)?(0,i4.Ay)(new i4.hD(p)):v&&!(0,tP.isNil)(b)&&(0,i4.Ay)(new i4.hD(b))},[m,v,p,b]),(0,pp.Z)(async()=>{null!=n&&(0,Si.o)(n.permissions,"publish")&&j()},"publish"),(0,pp.Z)(async()=>{null!=n&&(0,Si.o)(n.permissions,"publish")&&j()},"save"),(0,tZ.jsx)(tZ.Fragment,{children:(0,Si.o)(null==n?void 0:n.permissions,"publish")&&(0,tZ.jsx)(aW.$,{disabled:f||h,loading:f||h,onClick:j,type:"primary",children:e((null==n?void 0:n.type)==="folder"?"toolbar.save":"toolbar.save-and-publish")})});function j(){if((null==n?void 0:n.changes)===void 0)return;let e={};if(n.changes.properties){let t=null==r?void 0:r.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)}n.changes.customMetadata&&(e.metadata=null==l?void 0:l.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})),n.changes.customSettings&&(e.customSettings=o),n.changes.imageSettings&&(e.image=s),n.changes.textData&&(e.data=d);let a=tp.kL.get(tm.K["Asset/ProcessorRegistry/SaveDataProcessor"]),f=new dv.r(t,e);a.executeProcessors(f),Promise.all([c({id:t,body:{data:{...e}}}).then(n=>{if(void 0===n.error){"modificationDate"in n.data&&i((0,T8.hN)({id:t,modificationDate:n.data.modificationDate??null}));let r={identifier:{type:SY.m["asset:editor:post-update"],id:String(t)},payload:{id:t,updatedData:e,responseData:n.data}};SZ.B.publish(r)}return n}),g()]).catch(e=>{console.log(e)})}};var S0=i(11324),S1=i(27918),S2=i(61923),S3=i(83547),S6=i(3257),S4=i(69634);let S5=()=>(0,tZ.jsx)(pC.M,{children:(0,tZ.jsxs)(S3.F,{children:[(0,tZ.jsx)(ax.s,{children:(0,tZ.jsx)(S4.Y,{slot:yH.e.asset.editor.toolbar.slots.left.name})}),(0,tZ.jsx)(ax.s,{style:{height:"32px"},vertical:!1,children:(0,tZ.jsx)(S4.Y,{slot:yH.e.asset.editor.toolbar.slots.right.name})}),(0,tZ.jsx)(S6.x,{})]})});var S7=i(78524),S8=i(17236);let S9=e=>{let{id:t}=e,{isLoading:i,isError:n,asset:r,editorType:a,activeTab:l}=(0,kJ.l)(t),o=(0,S0.P)(),{setContext:s,removeContext:d}=(0,S1.k)();return((0,tY.useEffect)(()=>()=>{d()},[]),(0,tY.useEffect)(()=>(o&&s({id:t,...!(0,tP.isNil)(r)&&{contextIdentifiers:(0,S8.R9)(r,l===Ti.h.key)}}),()=>{o||d()}),[o,l,r]),i)?(0,tZ.jsx)(uG.U,{loading:!0}):n?(0,tZ.jsx)(uG.U,{padded:!0,children:(0,tZ.jsx)(TM.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(T9.AssetProvider,{id:t,children:(0,tZ.jsx)(S7.F,{dataTestId:`asset-editor-${(0,py.Gc)(t)}`,renderTabbar:(0,tZ.jsx)(S2.a,{elementEditorType:a}),renderToolbar:(0,tZ.jsx)(S5,{})})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.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"}),tp.kL.get(tm.K.widgetManager).registerWidget(Se);let t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:yH.e.asset.editor.container.name,component:S9}),t.register({name:yH.e.asset.editor.tab.embeddedMetadata.name,component:SP}),t.register({name:yH.e.asset.editor.tab.customMetadata.name,component:So}),t.register({name:yH.e.asset.editor.tab.versions.name,component:SE}),t.registerToSlot("asset.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:SV}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:SU}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"saveButton",priority:200,component:SX})}});var Ce=i(72681),Ct=i(56177),Ci=i(50744),Cn=i(1947),Cr=i(36490),Ca=i(53894),Cl=i(85566),Co=i(79246);let Cs=()=>{let{data:e}=(0,ye.E)(),{selectedRows:t}=(0,Ca.U)(),{elementType:i}=(0,dQ.useElementContext)();return(e=>{let{data:t,selectedRows:i,elementType:n}=e,{context:r,setContext:a}=(0,Cl.L)(),{context:l,setContext:o}=(0,S1.k)(),{context:s,setContext:d}=(0,Co.v)(),c=(0,tY.useMemo)(()=>(0,tP.isNil)(i)?[]:Object.keys(i).map(Number),[i]);(0,tY.useEffect)(()=>{var e;if((0,le.Po)(t))return;let{context:i,setContext:f}=(()=>{switch(n){case sq.W.dataObject:return{context:r,setContext:a};case sq.W.asset:return{context:l,setContext:o};case sq.W.document:return{context:s,setContext:d};default:return{context:r,setContext:a}}})();if((0,tP.isNil)(i))return;let u=null==i||null==(e=i.config)?void 0:e.contextIdentifiers;if(!(0,tP.isObject)(u)||(0,tP.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,tP.isEmpty)(c)&&!(0,tP.isNil)(i)&&m.length>p.length)return void f({id:i.config.id,contextIdentifiers:{...u,tags:p}});if(!(0,tP.isEmpty)(c)){let e=[],r=[];if(c.forEach(i=>{let a=(e=>{let t=(0,tP.get)((0,tP.find)(null==e?void 0:e.columns,{key:"type"}),"value"),i=(0,tP.get)((0,tP.find)(null==e?void 0:e.columns,{key:"classname"}),"value");switch(n){case sq.W.dataObject:return(0,le.Po)(i)?null:`${S8.v1}_${i}_selection`.toLowerCase();case sq.W.asset:return(0,le.Po)(t)?null:`${S8.W4}_${t}_selection`.toLowerCase();case sq.W.document:return(0,le.Po)(t)?null:`${S8.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,tP.isNull)(a)||r.push(a)}),r.length>0){let t=null==u?void 0:u.tags.filter(e=>!e.endsWith("_selection")),n=(0,tP.uniq)([...t,...r]),a=(0,tP.isEqual)(u.tags,r),l=(0,tP.isEqual)(u.selectedElements,e);a||l||(0,tP.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,tZ.jsx)(tZ.Fragment,{})},Cd=e=>{let{ViewComponent:t}={...e};return{...e,ViewComponent:()=>{let{data:e}=(0,ye.E)();return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(t,{}),void 0!==e&&(0,tZ.jsx)(Cs,{})]})}}};var Cc=i(56993);let Cf=e=>{let{ContextComponent:t,...i}=e;return{...i,ContextComponent:()=>(0,tZ.jsx)(dQ.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tZ.jsx)(t,{})})}},Cu=()=>(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(yo.y,{}),(0,tZ.jsx)(ys.d,{})]});var Cm=i(52185),Cp=i(8412);let Cg=(0,tY.createContext)({batchEdits:[],setBatchEdits:()=>{}}),Ch=e=>{let{children:t}=e,[i,n]=(0,tY.useState)([]);return(0,tY.useMemo)(()=>(0,tZ.jsx)(Cg.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])};var Cy=i(23558),Cv=i(66634);let Cb=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tY.useContext)(Cg);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 Cx=i(32773),Cj=i(68901),Cw=i(38086);let Ck=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,iw.R)(),{ComponentRenderer:a}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===a?(0,tZ.jsx)(tZ.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tZ.jsx)(tZ.Fragment,{children:a({batchEdit:t})})},CT=()=>{let{batchEdits:e,removeBatchEdit:t}=Cb(),{updateLocale:i}=Cb(),n=["-",...(0,gf.t)().requiredLanguages],r=e.map(e=>{let r=e.locale??"-";return{id:e.key,children:(0,tZ.jsx)(ij.Tag,{children:(0,ne.t)(`${e.key}`)}),renderRightToolbar:(0,tZ.jsx)(Sl.e,{items:[...e.localizable?[(0,tZ.jsx)(Cj.v,{languages:n,onSelectLanguage:t=>{i(e.key,(0,Cw.z1)(t))},selectedLanguage:r},"language-selection")]:[],(0,tZ.jsx)(lw.K,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,tZ.jsx)(Ck,{batchEdit:e})}});return(0,tZ.jsxs)(tZ.Fragment,{children:[0===r.length&&(0,tZ.jsx)(hV.R,{text:(0,ne.t)("batch-edit.no-content")}),r.length>0&&(0,tZ.jsx)(Cx.N,{items:r})]})};var CS=i(62786);let CC=(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=CC(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)),CD=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||CD(e.children));var CI=i(82763),CM=i(20189);class CL{async run(e){let{messageBus:t}=e;try{let i=await this.executeEditRequest();if((0,tP.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from edit request"));let n=this.createHandler({jobRunId:i,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,ne.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,i4.Ay)(new i4.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch edit job failed:",e)}createHandler(e){return this.constructor.buildHandler(e)}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-edit.job-title"),progressCalculator:new CM.j,onJobCompletion:e.onJobCompletion,onRetry:e.onRetry,onCustomizeButtons:e.onCustomizeButtons})}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}constructor(e){this.assetContextId=e.assetContextId,this.onFinish=e.onFinish,this.refreshGrid=e.refreshGrid}}CL.jobNames=["studio_ee_job_patch_elements","studio_ee_job_rewrite_element_references"];class CF extends CL{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}}var CE=i(42523),CP=i(25548);class CN extends CL{static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-edit.job-title"),stepDescriptions:{1:"jobs.job.step.batch-edit.preparing",2:"jobs.job.step.batch-edit.applying"},stepTracker:new CP.m({showStepLabel:!0}),progressCalculator:new CE.a,onJobCompletion:e.onJobCompletion,onRetry:e.onRetry,onCustomizeButtons:e.onCustomizeButtons})}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}}CN.jobNames=["studio_ee_job_patch_folder_elements"];class CA extends CN{async executeEditRequest(){var e;return(null==(e=(await this.patchAssetsInFolder({id:this.folderId,body:{data:{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 CR=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,Cv.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:l}=Cb(),[o]=t1.lV.useForm(),{t:s}=(0,i1.useTranslation)(),[d,{isError:c,isSuccess:f,error:u}]=(0,kZ.useAssetPatchByIdMutation)(),[m,{isError:p,isSuccess:g,error:h}]=(0,kZ.useAssetPatchFolderByIdMutation)(),{selectedRows:y}=(0,Ca.U)(),v=Object.keys(y??{}).map(Number),b=v.length,x=tp.kL.get(tm.K.executionEngine),{id:j,elementType:w}=(0,i3.J)(),{useDataQueryHelper:k}=(0,Cp.t)(),{getArgs:T}=k(),{hasType:S}=(0,iw.R)(),{refreshGrid:C}=(0,CS.X)(w),D=()=>{l(),o.resetFields()};(0,tY.useEffect)(()=>{(f||g)&&(i(!1),D()),1===b&&kZ.api.util.invalidateTags(uB.qN.ASSET_GRID_ID(v[0]))},[f,g]),(0,tY.useEffect)(()=>{c&&(0,i4.Ay)(new i4.hD(u)),p&&(0,i4.Ay)(new i4.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 CA({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 CF({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,tY.useMemo)(()=>()=>(0,tP.isUndefined)(M)?[]:CC(M,r,S),[M,r,S]),F=!CD(L());return(0,tZ.jsx)(Cy.m,{afterClose:()=>{D()},footer:(0,tZ.jsxs)(gy.j,{divider:!0,justify:"space-between",children:[(0,tZ.jsx)(pI.m,{menu:{items:L()},children:(0,tZ.jsx)(pc.J,{disabled:F,icon:{value:"new"},type:"default",children:s("listing.add-column")})}),r.length>0&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"extra-small",children:[(0,tZ.jsx)(pc.J,{icon:{value:"close"},onClick:()=>{l()},type:"link",children:s("batch-edit.modal-footer.discard-all-changes")}),(0,tZ.jsx)(aW.$,{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,tZ.jsx)(gh.w,{children:s("batch-edit.modal-title")}),children:(0,tZ.jsx)(t1.lV,{form:o,onFinish:I,children:(0,tZ.jsx)(CT,{})})})},CV=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsxs)(t1.lV,{layout:"vertical",...t,children:[(0,tZ.jsx)(t1.lV.Item,{label:i("export-csv-form.form-field.delimiter"),name:"delimiter",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ij.Input,{})}),(0,tZ.jsx)(t1.lV.Item,{label:i("export-csv-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ir.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 Cz=i(54745),CB=i(66707);let{useExportDownloadCsvQuery:CO,useExportDeleteCsvMutation:CK,useExportCsvMutation:C_,useExportCsvFolderMutation:CH,useExportDownloadXlsxQuery:C$,useExportDeleteXlsxMutation:CW,useExportXlsxMutation:Cq,useExportXlsxFolderMutation:CG}=p0.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/${e.id}`,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/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["Export"]})}),overrideExisting:!1});var CU=i(35747),CJ=i(2662);let CQ=e=>{let[t]=ns.Form.useForm(),i=(0,CJ.O)(),{id:n,elementType:r}=(0,i3.J)(),{element:a}=(0,SJ.D)(n,r),[l,o]=(0,tY.useState)("Element"),[s,{isError:d,error:c}]=C_(),[f,{isError:u,error:m}]=CH(),{selectedRows:p}=(0,Ca.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,CB.K)(),{useDataQueryHelper:y}=(0,Cp.t)(),{getArgs:v}=y(),b=(0,CU.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tY.useEffect)(()=>{d&&(0,i4.Ay)(new i4.hD(c))},[d]),(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(m))},[u]),(0,tZ.jsx)(ij.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tZ.jsx)(gh.w,{iconName:"export",children:j("export-csv-form.modal-title")}),children:(0,tZ.jsxs)(ij.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tZ.jsx)(ij.Alert,{message:j("export-csv-form.export-notice"),showIcon:!0,type:"warning"}),(0,tZ.jsx)(CV,{form:t,initialValues:{delimiter:";",header:"name"},onFinish:function(t){let n=0===g.length,r=new Cz.c({action:async()=>await w(t.delimiter,t.header),isFolderExport:n});i.runJob(r),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({id:n,body:{elementType:r,columns:d,config:{delimiter:e,header:t},filters:{...i},...!(0,tP.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},...!(0,tP.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await i).data.jobRunId}}},CZ=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsx)(t1.lV,{layout:"vertical",...t,children:(0,tZ.jsx)(t1.lV.Item,{label:i("export-xlsx-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tZ.jsx)(ir.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")}]})})})};var CY=i(66901),CX=i(46404);let C0="studio_ee_job_collect_xlsx_folder_export_elements";class C1 extends CY.k{usesChildJob(){return this.isFolderExport}static getTitle(){return(0,ne.t)("jobs.download-xlsx-job.title")}static getDownloadUrl(){return`${(0,tE.$)()}/export/download/xlsx/{jobRunId}`}static rehydrate(e){let[t]=e;return this.buildHandler({...(0,CX.f)(e),hasChildJob:t.jobName===C0})}constructor(e){super({action:e.action}),this.isFolderExport=e.isFolderExport??!1}}C1.jobNames=["studio_ee_job_create_xlsx",C0];let C2=e=>{let[t]=ns.Form.useForm(),i=(0,CJ.O)(),{id:n,elementType:r}=(0,i3.J)(),{element:a}=(0,SJ.D)(n,r),[l,o]=(0,tY.useState)("Element"),[s,{isError:d,error:c}]=Cq(),[f,{isError:u,error:m}]=CG(),{selectedRows:p}=(0,Ca.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,CB.K)(),{useDataQueryHelper:y}=(0,Cp.t)(),{getArgs:v}=y(),b=(0,CU.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,i1.useTranslation)();return(0,tY.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tY.useEffect)(()=>{d&&(0,i4.Ay)(new i4.hD(c))},[d]),(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(m))},[u]),(0,tZ.jsx)(ij.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tZ.jsx)(gh.w,{iconName:"export",children:j("export-xlsx-form.modal-title")}),children:(0,tZ.jsxs)(ij.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tZ.jsx)(ij.Alert,{message:j("export-xlsx-form.export-notice"),showIcon:!0,type:"warning"}),(0,tZ.jsx)(CZ,{form:t,initialValues:{header:"name"},onFinish:function(t){let n=new C1({action:async()=>await w(t.header),isFolderExport:0===g.length});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({id:n,body:{elementType:r,columns:o,config:{header:e},filters:{...t},...!(0,tP.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},...!(0,tP.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await t).data.jobRunId}}};class C3{async run(e){let{messageBus:t}=e;try{let i=await this.executeDeleteRequest();if((0,tP.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from delete request"));let n=C3.buildHandler({jobRunId:i,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,i4.Ay)(new i4.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch delete job failed:",e)}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)("batch-delete.job-title"),progressCalculator:new CM.j,onJobCompletion:e.onJobCompletion,onRetry:e.onRetry})}constructor(e){this.itemIds=e.itemIds,this.onFinish=e.onFinish}}class C6 extends C3{static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}async executeDeleteRequest(){var e;let t=await uz.M_.dispatch(kZ.api.endpoints.assetBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}}C6.jobNames=["studio_ee_job_batch_delete_assets"];let C4=()=>{let e=(0,Cm.S)(),{id:t,elementType:i}=(0,i3.J)(),{useDataQueryHelper:n}=(0,Cp.t)(),{getArgs:r}=n(),a=tp.kL.get(tm.K.executionEngine),{refreshGrid:l}=(0,CS.X)(i),{createZipDownload:o}=(0,TZ.v)({type:"folder"}),{createZipDownload:s}=(0,TZ.v)({type:"asset-list"}),[d,c]=(0,tY.useState)(!1),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),{t:g}=(0,i1.useTranslation)();if(void 0===e)return(0,tZ.jsx)(tZ.Fragment,{});let{selectedRows:h,setSelectedRows:y}=e,v=void 0!==h?Object.keys(h).map(Number):[],b=void 0!==h&&Object.keys(h).length>0,x=async()=>{let e=new C6({itemIds:v,onFinish:async()=>{await l(),y({})}});await a.runJob(e)},j={items:[{key:"1",label:g("listing.actions.batch-edit"),icon:(0,tZ.jsx)(aa.I,{value:"batch-selection"}),onClick:()=>{p(!0)}},{key:"2",label:g("listing.actions.export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),children:[{key:"2.1",label:g("listing.actions.csv-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{c(!0)}},{key:"2.2",label:g("listing.actions.xlsx-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{u(!0)}}]},{key:"3",label:g("listing.actions.zip-download"),icon:(0,tZ.jsx)(aa.I,{value:"download"}),onClick:()=>{b?s({requestData:{body:{assets:v,parentId:t}}}):o({requestData:{body:{folders:[t],filters:{...r().body.filters??{}}}}})}},{key:"4",hidden:!b,label:g("listing.actions.delete"),icon:(0,tZ.jsx)(aa.I,{value:"trash"}),onClick:x}]};return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pI.m,{menu:j,children:(0,tZ.jsx)(pD.g,{"data-testid":"listing-batch-actions-button",children:g(b?"listing.actions":"listing.non-selected.actions")},"dropdown-button")}),(0,tZ.jsx)(CQ,{open:d,setOpen:c}),(0,tZ.jsx)(C2,{open:f,setOpen:u}),(0,tZ.jsx)(Ch,{children:(0,tZ.jsx)(CR,{batchEditModalOpen:m,setBatchEditModalOpen:p})})]})},C5=()=>(0,tZ.jsxs)(oR.B,{size:"mini",children:[(0,tZ.jsx)(yl.B,{}),(0,tZ.jsx)(C4,{})]}),C7=()=>(0,tZ.jsxs)(pC.M,{theme:"secondary",children:[(0,tZ.jsx)(ns.Space,{size:"small",children:(0,tZ.jsx)(S4.Y,{slot:uR.componentConfig.asset.listing.toolbar.left.name})}),(0,tZ.jsx)(ns.Space,{size:"small",children:(0,tZ.jsx)(S4.Y,{slot:uR.componentConfig.asset.listing.toolbar.right.name})})]});tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:th.eb.asset.listing.toolbar.component.name,component:C7}),e.registerToSlot(th.eb.asset.listing.toolbar.left.name,{name:"batch-actions",component:C5}),e.registerToSlot(th.eb.asset.listing.toolbar.right.name,{name:"pagination",component:Cu});let t=tp.kL.get(tm.K["Asset/Listing/Builder"]);t.addDecorator({name:"dynamicType",decorator:Cf}),t.addDecorator({name:"actionColumn",decorator:Cn._}),t.addDecorator({name:"globalContext",decorator:Cd}),t.addDecorator({name:"sorting",decorator:h7.Y}),t.addDecorator({name:"paging",decorator:h5.S}),t.addDecorator({name:"columnConfiguration",decorator:Ce.y});let i={useInlineEditApiUpdate:Cc.C};t.addDecorator({name:"inlineEdit",decorator:Ci.P,config:i}),t.addDecorator({name:"rowSelection",decorator:Ct.Y,config:{rowSelectionMode:"multiple"}}),t.addDecorator({name:"contextMenu",decorator:Cr.y}),t.addDecorator({name:"tagFilter",decorator:h1.A}),t.addDecorator({name:"generalFilters",decorator:h4.p})}});var C8=i(41989),C9=i(93121),De=i(56292),Dt=i(63186);let Di=e=>{let{t}=(0,i1.useTranslation)();return(0,tZ.jsx)(Dt.s,{...e,label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var Dn=i(16907),Dr=i(27202),Da=i(65864),Dl=i(62284),Do=i(59385),Ds=i(70916);let Dd=()=>{let{treeId:e}=(0,Ds.z)(),t=(0,Dl.useStore)();return{isSourceAllowed:i=>{var n;if(!(0,Si.o)(i.permissions,"settings")||i.isLocked)return!1;let r=t.getState(),a=(0,Do.selectNodeState)(r,e,i.id.toString());return!(null==a||null==(n=a.treeNodeProps)?void 0:n.isLocked)},isTargetAllowed:e=>(0,Si.o)(e.permissions,"create")}};var Dc=i(16327),Df=i(23050),Du=i(7433),Dm=i(39803),Dp=i(5743);let Dg=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{dragger:i`
.ant-upload {
padding: 0 !important;
background: none;
@@ -917,7 +917,7 @@
width: 100%;
}
}
- `}});var Dh=i(82740),Dy=i(99050);let Dv=e=>{let{styles:t}=Dg(),{Dragger:i}=ij.Upload,n=(0,tY.useRef)(null),r=(0,Dh.A)(n,!0);return(0,tZ.jsx)("div",{ref:n,children:r?(0,tZ.jsx)(Dy.v,{...e,openFileDialogOnClick:!1,uploadComponent:i,uploadComponentClassName:t.dragger}):e.children})};var Db=i(38990);async function Dx(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 Dj(e){return await new Promise((t,i)=>{e.file(t,i)})}async function Dw(e,t){let i=`${(0,tE.$)()}/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 Dk(e){let t=`${(0,tE.$)()}/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,tP.isNil)(n)||"number"!=typeof n.id)throw Error(`Unexpected response resolving path "${e}": ${JSON.stringify(n)}`);return n.id}async function DT(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,tP.isNil)(t)){r=t;continue}await Dw(r,e),r=await Dk(a),n.set(a,r)}return r}async function DS(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 Dj(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 Dx(a)))t.push({entry:e,parentRelativeFolderPath:i,depth:r+1})}}}return i}let DC=new WeakMap;function DD(e){let t=DC.get(e)??"";return`${t}/${e.name}-${e.size}`}async function DI(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 DS(t);if(0===o.length)return[];let s=new Map;for(let{file:e,parentRelativeFolderPath:t}of(r.clear(),o)){DC.set(e,t);let a=await DT(i,n,t,s);r.set(DD(e),a)}for(let{file:e}of o){let t=DD(e),i=r.get(t);await l(e,i)}return o.map(e=>{let{file:t}=e;return t}).filter(e=>!a.skipKeys.has(DD(e)))}let DM=e=>{var t,i;return null==(i=e.current)||null==(t=i.upload)?void 0:t.uploader};async function DL(e,t){let i=DM(e);for(let t=0;(0,tP.isNil)(i)&&t<10;t++)await new Promise(e=>{setTimeout(e,100)}),i=DM(e);(0,tP.isNil)(i)?(0,i4.Ay)(new i4.$g("Folder upload: upload component not ready after drop")):i.uploadFiles(t)}var DF=i(83655),DE=i(58016);let DP=e=>{let{open:t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsx)(ij.Modal,{closable:!1,footer:null,open:t,title:(0,tZ.jsx)(gh.w,{iconName:"folder",children:i("asset.upload.folder-drop.creating-folders")}),children:(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",justify:"center",style:{padding:"16px 0"},children:[(0,tZ.jsx)(sJ.t,{size:"small"}),(0,tZ.jsx)(ri.E,{type:"secondary",children:i("asset.upload.folder-drop.creating-folders-hint")})]})})},DN=e=>{let{nodeId:t,nodePath:i,children:n}=e,{refreshTree:r}=(0,Db.h)("asset"),a=parseInt(t),[l,o]=(0,tY.useState)(!1),s=(0,tY.useRef)(!1),{checkFile:d,maps:c,resetMaps:f}=(()=>{let{checkFileExists:e,askUserOverwrite:t,resetApplyToAll:i}=(0,DE.e)(),n=(0,tY.useRef)(new Map),r=(0,tY.useRef)(new Set);return{checkFile:async(i,a)=>{let{exists:l,id:o}=await e(i.name,a);if(!l||(0,tP.isNil)(o))return;let s=await t(i.name),d=DD(i);s===DF.W.SKIP?r.current.add(d):s===DF.W.OVERWRITE&&n.current.set(d,o)},maps:{replaceIdByKey:n.current,skipKeys:r.current},resetMaps:()=>{n.current.clear(),r.current.clear(),i()}}})(),u=(0,tY.useRef)(new Map),m=(0,tY.useRef)(null),p=(0,tY.useCallback)(e=>{m.current=e},[]),g=(0,tY.useCallback)(e=>{if(s.current)return u.current.get(DD(e))},[]),h=(0,tY.useCallback)(e=>{if(s.current)return c.replaceIdByKey.get(DD(e))},[c.replaceIdByKey]),y=(0,tY.useCallback)(e=>{if((0,tP.isNil)(e.dataTransfer)||!function(e){if((0,tP.isNil)(e.items))return!1;for(let t=0;t{let e;f(),s.current=!1,o(!0);try{e=await DI({dataTransfer:t,rootFolderId:a,rootPath:i,folderIdByKey:u.current,conflictMaps:c,checkFile:d})}catch(e){(0,i4.Ay)(new i4.$g(`Folder upload (tree traversal): ${e instanceof Error?e.message:String(e)}`)),o(!1);return}o(!1),0!==e.length&&(s.current=!0,await DL(m,e))})()},[i,a,c,d,f]);return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(DP,{open:l}),(0,tZ.jsx)("div",{onDropCapture:y,children:(0,tZ.jsx)(Dv,{getExternalReplaceId:h,getTargetFolderIdForFile:g,onSuccess:async()=>{s.current=!1,r(a)},skipAssetFetch:!0,skipConflictCheck:s,targetFolderId:a,uploadRef:p,children:n})})]})};var DA=i(67950),DR=i(42382);let DV=e=>{let t=e.node??C9.G,i=(0,k8.W)("asset.tree",{target:t,onComplete:()=>{}});return(0,tZ.jsx)(DR.W,{dataTestId:(0,py.b0)("asset",t.id),items:i})},Dz=(0,Du.Y)((l=C9.n,o=(0,tY.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tZ.jsx)(l,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DA.y9,{renderMenu:()=>(0,tZ.jsx)(DV,{node:n}),children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),s=(0,tY.forwardRef)((e,t)=>{var i,n;let r=null==(i=e.metaData)?void 0:i.asset,{t:a}=(0,i1.useTranslation)();if((null==(n=e.metaData)?void 0:n.asset)===void 0)return(0,tZ.jsx)(o,{...e,ref:t});let l=(0,tP.isString)(null==r?void 0:r.filename)&&(null==r?void 0:r.filename)!==""?null==r?void 0:r.filename:a("home");return(0,tZ.jsx)(Dn.s,{info:{icon:e.icon,title:l,type:"asset",data:{...r}},children:(0,tZ.jsx)(o,{...e,ref:t})})}),d=(0,tY.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,kZ.useAssetPatchByIdMutation)({fixedCacheKey:`ASSET_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,Dc.mG)({fixedCacheKey:`ASSET_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:l,isDeleting:o}=(0,Df.W)(e.id);return(0,tZ.jsx)(s,{...e,danger:i||r||o,isLoading:i||!0!==l&&a||n||r,ref:t})}),c=(0,tY.forwardRef)((e,t)=>"folder"!==e.type?(0,tZ.jsx)(d,{...e,ref:t}):(0,tZ.jsx)(d,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DN,{nodeId:e.id,nodePath:e.fullPath??"",children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})),(0,tY.forwardRef)((e,t)=>{var i;let{move:n}=(0,Da.e)("asset"),{isSourceAllowed:r,isTargetAllowed:a}=Dd();if((null==(i=e.metaData)?void 0:i.asset)===void 0)return(0,tZ.jsx)(c,{...e});let l=e.metaData.asset,o=e=>a(e)&&"folder"===e.type;if(!o(l))return(0,tZ.jsx)(c,{...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,i4.Ay)(new i4.$g("Item could not be moved"))})},d=e=>"asset"===e.type,f=e=>{let t=e.data;return"asset"===e.type&&r(t)&&o(l)};return(0,tZ.jsx)(c,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(lV.g,{disableDndActiveIndicator:!0,isValidContext:d,isValidData:f,onDrop:s,children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),DB=e=>{let{id:t=1,showRoot:i=!0}=e,{openAsset:n}=(0,k7.G)(),{rootNode:r,isLoading:a}=(0,Dm.m)(t,i),l=(0,Dp.e)().get(yH.e.asset.tree.contextMenu.name);if(i&&a)return(0,tZ.jsx)(pj.a,{padding:"small",children:(0,tZ.jsx)(Dr.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tZ.jsx)(C8.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Di,renderNode:Dz,renderNodeContent:C8.Yb.renderNodeContent,renderPager:De.l,rootNode:r,showRoot:i,tooltipSlotName:yH.e.asset.tree.tooltip.name})};var DO=i(50458),DK=i(11480),D_=i(83986),DH=i(68153),D$=i(17388),DW=i(40875);class Dq{async run(e){let{messageBus:t}=e,{triggerUpload:i,parentFolder:n,onJobCompletion:r}=this.options;await new Promise(e=>{i({action:`${(0,tE.$)()}/assets/add-zip/${n}`,accept:".zip, .rar, .7zip",name:"zipFile",multiple:!1,onSuccess:async i=>{var n;if(!Array.isArray(i)||0===i.length||(null==(n=i[0])?void 0:n.response)==null)return void e();let a=i[0].response.jobRunId??void 0;if((0,tP.isNumber)(a)){let e=Dq.buildHandler({jobRunId:Number(a),onJobCompletion:async e=>{e.isFinished&&!(0,tP.isUndefined)(r)&&await r()}});t.registerHandler(e)}e()},onError:t=>{console.error(t),e()}})})}static rehydrate(e){return this.buildHandler((0,CY.f)(e))}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,ancestorJobRunIds:e.ancestorJobRunIds,title:e=>{if("running"===e.status){if(1===e.currentStep)return(0,ne.t)("jobs.zip-upload-job.step1.title");if(2===e.currentStep)return(0,ne.t)("jobs.zip-upload-job.step2.title")}return(0,ne.t)("jobs.zip-upload-job.title")},stepTracker:new DW.o({totalSteps:2,startAtStep:e.startAtStep}),progressCalculator:new CF.a,onJobCompletion:e.onJobCompletion})}constructor(e){this.options=e}}Dq.jobNames=["studio_ee_job_upload_zip_file"],tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.assetTree;e.registerToSlot(t.name,{name:"newAssets",priority:t.priority.newAssets,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{uploadContextMenuItem:i,zipUploadContextMenuItem:n}=(()=>{let{triggerUpload:e}=(0,D_.d)(),{t}=(0,i1.useTranslation)(),{refreshTree:i}=(0,Db.h)("asset"),{isTreeActionAllowed:n}=(0,D$.H)(),r=(0,CU.O)(),a=t=>{e({targetFolderId:parseInt(t),skipAssetFetch:!0,onSuccess:async()=>{i(parseInt(t))}})},l=t=>{r.runJob(new Dq({triggerUpload:e,parentFolder:t,onJobCompletion:async()=>{i(parseInt(t))}}))},o=e=>!(0,Si.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,tZ.jsx)(aa.I,{value:"upload-cloud"}),hidden:o(e)||!n(DH.o.AddUpload),onClick:()=>{a(e.id)}}),zipUploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-zip"),key:"uploadZip",icon:(0,tZ.jsx)(aa.I,{value:"upload-zip"}),hidden:o(e)||!n(DH.o.AddUploadZip),onClick:()=>{l(e.id)}})}})();return{label:t("element.tree.context-menu.new-assets"),key:"new-assets",icon:(0,tZ.jsx)(aa.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,DO.N)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,T0.M)("asset",(0,T2.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,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteTreeContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,TX.z)("asset",(0,T2.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,TZ.v)({type:"folder"});return t(e.target)}}),e.registerToSlot(t.name,{name:"uploadNewVersion",priority:t.priority.uploadNewVersion,useMenuItem:e=>{let{uploadNewVersionTreeContextMenuItem:t}=(0,T3.D)();return t(e.target)}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadTreeContextMenuItem:t}=(0,TQ.m)();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{lockTreeContextMenuItem:i,lockAndPropagateTreeContextMenuItem:n,unlockTreeContextMenuItem:r,unlockAndPropagateTreeContextMenuItem:a,isLockMenuHidden:l}=(0,DK.V)("asset");return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tZ.jsx)(aa.I,{value:"more"}),hidden:l(e.target),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tZ.jsx)(aa.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,Db.h)("asset");return t(e.target)}})}}),tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yH.e.asset.tree.contextMenu.name,component:DV})}});let DG=e=>{var t,i,n,r,a,l,o;let{node:s,children:d}=e,{t:c}=(0,i1.useTranslation)(),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),[g,h]=(0,tY.useState)(!1),y=(0,tY.useRef)(null),v=(0,tY.useRef)(null),b=(0,tY.useRef)(null),x=(0,tY.useRef)({x:0,y:0}),j=(null==(t=s.metaData)?void 0:t.asset)??(null==(i=s.metaData)?void 0:i.dataObject)??(null==(n=s.metaData)?void 0:n.document),w=(null==(r=s.metaData)?void 0:r.asset)!==void 0,k=(null==(a=s.metaData)?void 0:a.dataObject)!==void 0,T=(null==j||null==(l=j.customAttributes)?void 0:l.tooltip)!==null&&(null==j||null==(o=j.customAttributes)?void 0:o.tooltip)!==void 0,S=null==j?void 0:j.imageThumbnailPath;(0,tY.useEffect)(()=>{h(!1)},[S]),(0,tY.useEffect)(()=>{let e=e=>{let t=!(0,tP.isNull)(e.detail);p(t),t&&D()};return window.addEventListener("studioui:draggable:change-drag-info",e),()=>{window.removeEventListener("studioui:draggable:change-drag-info",e),C()}},[]);let C=(0,tY.useCallback)(()=>{null!==v.current&&(clearTimeout(v.current),v.current=null),null!==b.current&&(clearInterval(b.current),b.current=null)},[]),D=(0,tY.useCallback)(()=>{u(!1),C()},[C]),I=(0,tY.useCallback)(()=>{if(null===y.current)return!1;let e=y.current.getBoundingClientRect(),{x:t,y:i}=x.current;return t>=e.left&&t<=e.right&&i>=e.top&&i<=e.bottom},[]),M=(0,tY.useCallback)(()=>{b.current=setInterval(()=>{I()||D()},100)},[I,D]),L=(0,tY.useCallback)(()=>{m||(C(),v.current=setTimeout(()=>{u(!0),M()},500))},[m,C,M]),F=(0,tY.useCallback)(()=>{D()},[D]);(0,tY.useEffect)(()=>{let e=e=>{if(x.current={x:e.clientX,y:e.clientY},!f||null===y.current)return;let t=y.current.getBoundingClientRect(),{clientX:i,clientY:n}=e;i>=t.left-10&&i<=t.right+10&&n>=t.top-10&&n<=t.bottom+10||D()};return document.addEventListener("mousemove",e,{passive:!0}),()=>{document.removeEventListener("mousemove",e)}},[f,D]);let E=(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsxs)("div",{children:[c("ID"),": ",s.id]}),(0,tZ.jsxs)("div",{children:[c("Type"),": ",c(k&&("object"===s.type||"variant"===s.type)?s.metaData.dataObject.className:s.type)]})]});return(0,tZ.jsx)("div",{onMouseEnter:L,onMouseLeave:F,ref:y,children:(0,tZ.jsx)(iK.m,{open:f,overlayStyle:{width:280},placement:"right",title:(0,tZ.jsxs)(pj.a,{padding:"extra-small",children:[w&&(null==j?void 0:j.imageThumbnailPath)!==void 0&&(0,tZ.jsx)(pj.a,{className:"w-full",padding:{bottom:"extra-small"},children:(0,tZ.jsxs)(ax.s,{className:"w-full",justify:"center",style:{maxHeight:200,overflow:"hidden"},children:[!g&&(0,tZ.jsx)(ij.Skeleton.Image,{active:!0,style:{width:248,height:150}}),(0,tZ.jsx)(hH._,{alt:j.filename,onLoad:()=>{h(!0)},src:j.imageThumbnailPath,style:{maxHeight:200,display:g?void 0:"none"}})]})}),T?(0,tZ.jsx)("div",{dangerouslySetInnerHTML:{__html:j.customAttributes.tooltip}}):E]}),children:d})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.assetListGrid;e.registerToSlot(t.name,{name:"open",priority:t.priority.open,useMenuItem:e=>{let{openGridContextMenuItem:t}=(0,T6.i)("asset");return t(e.row)??null}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameGridContextMenuItem:t}=(0,T0.M)("asset",(0,T2.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,T4.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,TX.z)("asset",(0,T2.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,TQ.m)();return t(e.row)??null}})}});var DU=i(53463);let DJ=e=>{let{node:t}=e,{isLocked:i,locked:n}=t,{styles:r}=(0,DU.I)();return i?(0,tZ.jsx)(aa.I,{className:(0,tP.isNil)(n)||(0,tP.isEmpty)(n)?r.indirectLockedIcon:"","data-testid":`tree-node-lock-icon-${t.id}`,options:{width:14,height:14},value:"lock"}):null};var DQ=i(79448);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager),t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"asset-tree",component:DB}),t.register({name:yH.e.asset.tree.tooltip.name,component:DG}),t.registerToSlot(yH.e.asset.tree.node.meta.name,{name:"lockIcon",component:DJ,priority:100});let i=tp.kL.get(tm.K["ExecutionEngine/JobRehydrationRegistry"]);i.register(C6),i.register(Dq),i.register(DQ.$)}}),i(38380);let DZ={key:"versions",label:"version.label",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:th.eb.dataObject.editor.tab.versions.name}),icon:(0,tZ.jsx)(aa.I,{value:"history"}),isDetachable:!0,hidden:e=>!(0,Si.o)(e.permissions,"versions")},DY={key:"preview",label:"preview.label",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:th.eb.dataObject.editor.tab.preview.name}),icon:(0,tZ.jsx)(aa.I,{value:"preview"}),isDetachable:!0,hidden:e=>!e.hasPreview};var DX=i(78367),D0=i(20713),D1=i(26280),D2=i(7652);let D3=()=>{let{t:e}=(0,i1.useTranslation)(),{deleteDraft:t,isLoading:i,buttonText:n}=(0,D2.K)("data-object"),{id:r}=(0,tY.useContext)(D0.Z),{dataObject:a}=(0,a0.A)(r);if((0,tP.isNil)(a))return(0,tZ.jsx)(tZ.Fragment,{});let l=null==a?void 0:a.draftData;if((0,tP.isNil)(l)||a.changes[D1.u0])return(0,tZ.jsx)(tZ.Fragment,{});let o=(0,tZ.jsx)(aW.$,{danger:!0,ghost:!0,loading:i,onClick:t,size:"small",children:n});return(0,tZ.jsx)(pj.a,{padding:"extra-small",children:(0,tZ.jsx)(TM.F,{action:o,icon:(0,tZ.jsx)(aa.I,{value:"draft"}),message:e(l.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})},D6=e=>"string"==typeof e?e:void 0,D4=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(Array.isArray(e))return void e.forEach(e=>{D4(e,t,i)});if("object"!=typeof e||null===e)return;let n={dataType:D6(e.datatype??e.dataType),name:D6(e.name),fieldType:D6(e.fieldType??e.fieldtype)},r={...i};"data"===n.dataType&&void 0===i.currentTopLevelDataName&&void 0!==n.name&&void 0!==n.fieldType&&(t.set(n.name,n.fieldType),r.currentTopLevelDataName=n.name),Object.values(e).forEach(e=>{D4(e,t,r)})},D5=e=>{let{layout:t,data:i,className:n}=e,{form:r,setFieldTypeMap:a,updateModifiedDataObjectAttributes:l,updateDraft:o,getChangedFieldName:s,disabled:d}=(0,DX.P)(),c=(0,a1.n)();(0,tY.useEffect)(()=>{let e;a((D4(t,e=new Map),e))},[t,a]);let f=(e,t)=>{var i;if(d)return;l(e);let n=s(e);null!==n&&(null==c||null==(i=c.getInheritanceState(n))?void 0:i.inherited)===!0&&(null==c||c.breakInheritance(n)),o().catch(e=>{console.error(e)})};return(0,tY.useMemo)(()=>(0,tZ.jsx)(ij.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,tZ.jsx)(ie._Y,{children:(0,tZ.jsx)(t1.lV,{className:n,form:r,initialValues:i,layout:"vertical",onValuesChange:f,preserve:!0,children:(0,tZ.jsx)(pw.s,{renderTopBar:(0,tZ.jsx)(D3,{}),children:(0,tZ.jsx)(ap.f,{...t})})})})}),[t,i,n])};var D7=i(91434),D8=i(15925);let D9=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{editContainer:i`
+ `}});var Dh=i(82740),Dy=i(99050);let Dv=e=>{let{styles:t}=Dg(),{Dragger:i}=ij.Upload,n=(0,tY.useRef)(null),r=(0,Dh.A)(n,!0);return(0,tZ.jsx)("div",{ref:n,children:r?(0,tZ.jsx)(Dy.v,{...e,openFileDialogOnClick:!1,uploadComponent:i,uploadComponentClassName:t.dragger}):e.children})};var Db=i(38990);async function Dx(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 Dj(e){return await new Promise((t,i)=>{e.file(t,i)})}async function Dw(e,t){let i=`${(0,tE.$)()}/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 Dk(e){let t=`${(0,tE.$)()}/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,tP.isNil)(n)||"number"!=typeof n.id)throw Error(`Unexpected response resolving path "${e}": ${JSON.stringify(n)}`);return n.id}async function DT(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,tP.isNil)(t)){r=t;continue}await Dw(r,e),r=await Dk(a),n.set(a,r)}return r}async function DS(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 Dj(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 Dx(a)))t.push({entry:e,parentRelativeFolderPath:i,depth:r+1})}}}return i}let DC=new WeakMap;function DD(e){let t=DC.get(e)??"";return`${t}/${e.name}-${e.size}`}async function DI(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 DS(t);if(0===o.length)return[];let s=new Map;for(let{file:e,parentRelativeFolderPath:t}of(r.clear(),o)){DC.set(e,t);let a=await DT(i,n,t,s);r.set(DD(e),a)}for(let{file:e}of o){let t=DD(e),i=r.get(t);await l(e,i)}return o.map(e=>{let{file:t}=e;return t}).filter(e=>!a.skipKeys.has(DD(e)))}let DM=e=>{var t,i;return null==(i=e.current)||null==(t=i.upload)?void 0:t.uploader};async function DL(e,t){let i=DM(e);for(let t=0;(0,tP.isNil)(i)&&t<10;t++)await new Promise(e=>{setTimeout(e,100)}),i=DM(e);(0,tP.isNil)(i)?(0,i4.Ay)(new i4.$g("Folder upload: upload component not ready after drop")):i.uploadFiles(t)}var DF=i(83655),DE=i(58016);let DP=e=>{let{open:t}=e,{t:i}=(0,i1.useTranslation)();return(0,tZ.jsx)(ij.Modal,{closable:!1,footer:null,open:t,title:(0,tZ.jsx)(gh.w,{iconName:"folder",children:i("asset.upload.folder-drop.creating-folders")}),children:(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",justify:"center",style:{padding:"16px 0"},children:[(0,tZ.jsx)(sJ.t,{size:"small"}),(0,tZ.jsx)(ri.E,{type:"secondary",children:i("asset.upload.folder-drop.creating-folders-hint")})]})})},DN=e=>{let{nodeId:t,nodePath:i,children:n}=e,{refreshTree:r}=(0,Db.h)("asset"),a=parseInt(t),[l,o]=(0,tY.useState)(!1),s=(0,tY.useRef)(!1),{checkFile:d,maps:c,resetMaps:f}=(()=>{let{checkFileExists:e,askUserOverwrite:t,resetApplyToAll:i}=(0,DE.e)(),n=(0,tY.useRef)(new Map),r=(0,tY.useRef)(new Set);return{checkFile:async(i,a)=>{let{exists:l,id:o}=await e(i.name,a);if(!l||(0,tP.isNil)(o))return;let s=await t(i.name),d=DD(i);s===DF.W.SKIP?r.current.add(d):s===DF.W.OVERWRITE&&n.current.set(d,o)},maps:{replaceIdByKey:n.current,skipKeys:r.current},resetMaps:()=>{n.current.clear(),r.current.clear(),i()}}})(),u=(0,tY.useRef)(new Map),m=(0,tY.useRef)(null),p=(0,tY.useCallback)(e=>{m.current=e},[]),g=(0,tY.useCallback)(e=>{if(s.current)return u.current.get(DD(e))},[]),h=(0,tY.useCallback)(e=>{if(s.current)return c.replaceIdByKey.get(DD(e))},[c.replaceIdByKey]),y=(0,tY.useCallback)(e=>{if((0,tP.isNil)(e.dataTransfer)||!function(e){if((0,tP.isNil)(e.items))return!1;for(let t=0;t{let e;f(),s.current=!1,o(!0);try{e=await DI({dataTransfer:t,rootFolderId:a,rootPath:i,folderIdByKey:u.current,conflictMaps:c,checkFile:d})}catch(e){(0,i4.Ay)(new i4.$g(`Folder upload (tree traversal): ${e instanceof Error?e.message:String(e)}`)),o(!1);return}o(!1),0!==e.length&&(s.current=!0,await DL(m,e))})()},[i,a,c,d,f]);return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(DP,{open:l}),(0,tZ.jsx)("div",{onDropCapture:y,children:(0,tZ.jsx)(Dv,{getExternalReplaceId:h,getTargetFolderIdForFile:g,onSuccess:async()=>{s.current=!1,r(a)},skipAssetFetch:!0,skipConflictCheck:s,targetFolderId:a,uploadRef:p,children:n})})]})};var DA=i(67950),DR=i(42382);let DV=e=>{let t=e.node??C9.G,i=(0,k8.W)("asset.tree",{target:t,onComplete:()=>{}});return(0,tZ.jsx)(DR.W,{dataTestId:(0,py.b0)("asset",t.id),items:i})},Dz=(0,Du.Y)((l=C9.n,o=(0,tY.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tZ.jsx)(l,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DA.y9,{renderMenu:()=>(0,tZ.jsx)(DV,{node:n}),children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),s=(0,tY.forwardRef)((e,t)=>{var i,n;let r=null==(i=e.metaData)?void 0:i.asset,{t:a}=(0,i1.useTranslation)();if((null==(n=e.metaData)?void 0:n.asset)===void 0)return(0,tZ.jsx)(o,{...e,ref:t});let l=(0,tP.isString)(null==r?void 0:r.filename)&&(null==r?void 0:r.filename)!==""?null==r?void 0:r.filename:a("home");return(0,tZ.jsx)(Dn.s,{info:{icon:e.icon,title:l,type:"asset",data:{...r}},children:(0,tZ.jsx)(o,{...e,ref:t})})}),d=(0,tY.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,kZ.useAssetPatchByIdMutation)({fixedCacheKey:`ASSET_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,Dc.mG)({fixedCacheKey:`ASSET_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:l,isDeleting:o}=(0,Df.W)(e.id);return(0,tZ.jsx)(s,{...e,danger:i||r||o,isLoading:i||!0!==l&&a||n||r,ref:t})}),c=(0,tY.forwardRef)((e,t)=>"folder"!==e.type?(0,tZ.jsx)(d,{...e,ref:t}):(0,tZ.jsx)(d,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DN,{nodeId:e.id,nodePath:e.fullPath??"",children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})),(0,tY.forwardRef)((e,t)=>{var i;let{move:n}=(0,Da.e)("asset"),{isSourceAllowed:r,isTargetAllowed:a}=Dd();if((null==(i=e.metaData)?void 0:i.asset)===void 0)return(0,tZ.jsx)(c,{...e});let l=e.metaData.asset,o=e=>a(e)&&"folder"===e.type;if(!o(l))return(0,tZ.jsx)(c,{...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,i4.Ay)(new i4.$g("Item could not be moved"))})},d=e=>"asset"===e.type,f=e=>{let t=e.data;return"asset"===e.type&&r(t)&&o(l)};return(0,tZ.jsx)(c,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(lV.g,{disableDndActiveIndicator:!0,isValidContext:d,isValidData:f,onDrop:s,children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),DB=e=>{let{id:t=1,showRoot:i=!0}=e,{openAsset:n}=(0,k7.G)(),{rootNode:r,isLoading:a}=(0,Dm.m)(t,i),l=(0,Dp.e)().get(yH.e.asset.tree.contextMenu.name);if(i&&a)return(0,tZ.jsx)(pj.a,{padding:"small",children:(0,tZ.jsx)(Dr.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tZ.jsx)(C8.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Di,renderNode:Dz,renderNodeContent:C8.Yb.renderNodeContent,renderPager:De.l,rootNode:r,showRoot:i,tooltipSlotName:yH.e.asset.tree.tooltip.name})};var DO=i(50458),DK=i(11480),D_=i(83986),DH=i(68153),D$=i(17388),DW=i(40875);class Dq{async run(e){let{messageBus:t}=e,{triggerUpload:i,parentFolder:n,onJobCompletion:r}=this.options;await new Promise(e=>{i({action:`${(0,tE.$)()}/assets/add-zip/${n}`,accept:".zip, .rar, .7zip",name:"zipFile",multiple:!1,onSuccess:async i=>{var n;if(!Array.isArray(i)||0===i.length||(null==(n=i[0])?void 0:n.response)==null)return void e();let a=i[0].response.jobRunId??void 0;if((0,tP.isNumber)(a)){let e=Dq.buildHandler({jobRunId:Number(a),onJobCompletion:async e=>{e.isFinished&&!(0,tP.isUndefined)(r)&&await r()}});t.registerHandler(e)}e()},onError:t=>{console.error(t),e()}})})}static rehydrate(e){return this.buildHandler((0,CX.f)(e))}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,ancestorJobRunIds:e.ancestorJobRunIds,title:e=>{if("running"===e.status){if(1===e.currentStep)return(0,ne.t)("jobs.zip-upload-job.step1.title");if(2===e.currentStep)return(0,ne.t)("jobs.zip-upload-job.step2.title")}return(0,ne.t)("jobs.zip-upload-job.title")},stepTracker:new DW.o({totalSteps:2,startAtStep:e.startAtStep}),progressCalculator:new CE.a,onJobCompletion:e.onJobCompletion})}constructor(e){this.options=e}}Dq.jobNames=["studio_ee_job_upload_zip_file"],tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.assetTree;e.registerToSlot(t.name,{name:"newAssets",priority:t.priority.newAssets,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{uploadContextMenuItem:i,zipUploadContextMenuItem:n}=(()=>{let{triggerUpload:e}=(0,D_.d)(),{t}=(0,i1.useTranslation)(),{refreshTree:i}=(0,Db.h)("asset"),{isTreeActionAllowed:n}=(0,D$.H)(),r=(0,CJ.O)(),a=t=>{e({targetFolderId:parseInt(t),skipAssetFetch:!0,onSuccess:async()=>{i(parseInt(t))}})},l=t=>{r.runJob(new Dq({triggerUpload:e,parentFolder:t,onJobCompletion:async()=>{i(parseInt(t))}}))},o=e=>!(0,Si.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,tZ.jsx)(aa.I,{value:"upload-cloud"}),hidden:o(e)||!n(DH.o.AddUpload),onClick:()=>{a(e.id)}}),zipUploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-zip"),key:"uploadZip",icon:(0,tZ.jsx)(aa.I,{value:"upload-zip"}),hidden:o(e)||!n(DH.o.AddUploadZip),onClick:()=>{l(e.id)}})}})();return{label:t("element.tree.context-menu.new-assets"),key:"new-assets",icon:(0,tZ.jsx)(aa.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,DO.N)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,T0.M)("asset",(0,T2.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,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteTreeContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Da.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,TX.z)("asset",(0,T2.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,TZ.v)({type:"folder"});return t(e.target)}}),e.registerToSlot(t.name,{name:"uploadNewVersion",priority:t.priority.uploadNewVersion,useMenuItem:e=>{let{uploadNewVersionTreeContextMenuItem:t}=(0,T3.D)();return t(e.target)}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadTreeContextMenuItem:t}=(0,TQ.m)();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{lockTreeContextMenuItem:i,lockAndPropagateTreeContextMenuItem:n,unlockTreeContextMenuItem:r,unlockAndPropagateTreeContextMenuItem:a,isLockMenuHidden:l}=(0,DK.V)("asset");return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tZ.jsx)(aa.I,{value:"more"}),hidden:l(e.target),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tZ.jsx)(aa.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,Db.h)("asset");return t(e.target)}})}}),tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yH.e.asset.tree.contextMenu.name,component:DV})}});let DG=e=>{var t,i,n,r,a,l,o;let{node:s,children:d}=e,{t:c}=(0,i1.useTranslation)(),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),[g,h]=(0,tY.useState)(!1),y=(0,tY.useRef)(null),v=(0,tY.useRef)(null),b=(0,tY.useRef)(null),x=(0,tY.useRef)({x:0,y:0}),j=(null==(t=s.metaData)?void 0:t.asset)??(null==(i=s.metaData)?void 0:i.dataObject)??(null==(n=s.metaData)?void 0:n.document),w=(null==(r=s.metaData)?void 0:r.asset)!==void 0,k=(null==(a=s.metaData)?void 0:a.dataObject)!==void 0,T=(null==j||null==(l=j.customAttributes)?void 0:l.tooltip)!==null&&(null==j||null==(o=j.customAttributes)?void 0:o.tooltip)!==void 0,S=null==j?void 0:j.imageThumbnailPath;(0,tY.useEffect)(()=>{h(!1)},[S]),(0,tY.useEffect)(()=>{let e=e=>{let t=!(0,tP.isNull)(e.detail);p(t),t&&D()};return window.addEventListener("studioui:draggable:change-drag-info",e),()=>{window.removeEventListener("studioui:draggable:change-drag-info",e),C()}},[]);let C=(0,tY.useCallback)(()=>{null!==v.current&&(clearTimeout(v.current),v.current=null),null!==b.current&&(clearInterval(b.current),b.current=null)},[]),D=(0,tY.useCallback)(()=>{u(!1),C()},[C]),I=(0,tY.useCallback)(()=>{if(null===y.current)return!1;let e=y.current.getBoundingClientRect(),{x:t,y:i}=x.current;return t>=e.left&&t<=e.right&&i>=e.top&&i<=e.bottom},[]),M=(0,tY.useCallback)(()=>{b.current=setInterval(()=>{I()||D()},100)},[I,D]),L=(0,tY.useCallback)(()=>{m||(C(),v.current=setTimeout(()=>{u(!0),M()},500))},[m,C,M]),F=(0,tY.useCallback)(()=>{D()},[D]);(0,tY.useEffect)(()=>{let e=e=>{if(x.current={x:e.clientX,y:e.clientY},!f||null===y.current)return;let t=y.current.getBoundingClientRect(),{clientX:i,clientY:n}=e;i>=t.left-10&&i<=t.right+10&&n>=t.top-10&&n<=t.bottom+10||D()};return document.addEventListener("mousemove",e,{passive:!0}),()=>{document.removeEventListener("mousemove",e)}},[f,D]);let E=(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsxs)("div",{children:[c("ID"),": ",s.id]}),(0,tZ.jsxs)("div",{children:[c("Type"),": ",c(k&&("object"===s.type||"variant"===s.type)?s.metaData.dataObject.className:s.type)]})]});return(0,tZ.jsx)("div",{onMouseEnter:L,onMouseLeave:F,ref:y,children:(0,tZ.jsx)(iK.m,{open:f,overlayStyle:{width:280},placement:"right",title:(0,tZ.jsxs)(pj.a,{padding:"extra-small",children:[w&&(null==j?void 0:j.imageThumbnailPath)!==void 0&&(0,tZ.jsx)(pj.a,{className:"w-full",padding:{bottom:"extra-small"},children:(0,tZ.jsxs)(ax.s,{className:"w-full",justify:"center",style:{maxHeight:200,overflow:"hidden"},children:[!g&&(0,tZ.jsx)(ij.Skeleton.Image,{active:!0,style:{width:248,height:150}}),(0,tZ.jsx)(hH._,{alt:j.filename,onLoad:()=>{h(!0)},src:j.imageThumbnailPath,style:{maxHeight:200,display:g?void 0:"none"}})]})}),T?(0,tZ.jsx)("div",{dangerouslySetInnerHTML:{__html:j.customAttributes.tooltip}}):E]}),children:d})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.assetListGrid;e.registerToSlot(t.name,{name:"open",priority:t.priority.open,useMenuItem:e=>{let{openGridContextMenuItem:t}=(0,T6.i)("asset");return t(e.row)??null}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameGridContextMenuItem:t}=(0,T0.M)("asset",(0,T2.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,T4.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,TX.z)("asset",(0,T2.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,TQ.m)();return t(e.row)??null}})}});var DU=i(53463);let DJ=e=>{let{node:t}=e,{isLocked:i,locked:n}=t,{styles:r}=(0,DU.I)();return i?(0,tZ.jsx)(aa.I,{className:(0,tP.isNil)(n)||(0,tP.isEmpty)(n)?r.indirectLockedIcon:"","data-testid":`tree-node-lock-icon-${t.id}`,options:{width:14,height:14},value:"lock"}):null};var DQ=i(79448);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager),t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"asset-tree",component:DB}),t.register({name:yH.e.asset.tree.tooltip.name,component:DG}),t.registerToSlot(yH.e.asset.tree.node.meta.name,{name:"lockIcon",component:DJ,priority:100});let i=tp.kL.get(tm.K["ExecutionEngine/JobRehydrationRegistry"]);i.register(C6),i.register(Dq),i.register(DQ.$)}}),i(38380);let DZ={key:"versions",label:"version.label",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:th.eb.dataObject.editor.tab.versions.name}),icon:(0,tZ.jsx)(aa.I,{value:"history"}),isDetachable:!0,hidden:e=>!(0,Si.o)(e.permissions,"versions")},DY={key:"preview",label:"preview.label",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:th.eb.dataObject.editor.tab.preview.name}),icon:(0,tZ.jsx)(aa.I,{value:"preview"}),isDetachable:!0,hidden:e=>!e.hasPreview};var DX=i(78367),D0=i(20713),D1=i(26280),D2=i(7652);let D3=()=>{let{t:e}=(0,i1.useTranslation)(),{deleteDraft:t,isLoading:i,buttonText:n}=(0,D2.K)("data-object"),{id:r}=(0,tY.useContext)(D0.Z),{dataObject:a}=(0,a0.A)(r);if((0,tP.isNil)(a))return(0,tZ.jsx)(tZ.Fragment,{});let l=null==a?void 0:a.draftData;if((0,tP.isNil)(l)||a.changes[D1.u0])return(0,tZ.jsx)(tZ.Fragment,{});let o=(0,tZ.jsx)(aW.$,{danger:!0,ghost:!0,loading:i,onClick:t,size:"small",children:n});return(0,tZ.jsx)(pj.a,{padding:"extra-small",children:(0,tZ.jsx)(TM.F,{action:o,icon:(0,tZ.jsx)(aa.I,{value:"draft"}),message:e(l.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})},D6=e=>"string"==typeof e?e:void 0,D4=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(Array.isArray(e))return void e.forEach(e=>{D4(e,t,i)});if("object"!=typeof e||null===e)return;let n={dataType:D6(e.datatype??e.dataType),name:D6(e.name),fieldType:D6(e.fieldType??e.fieldtype)},r={...i};"data"===n.dataType&&void 0===i.currentTopLevelDataName&&void 0!==n.name&&void 0!==n.fieldType&&(t.set(n.name,n.fieldType),r.currentTopLevelDataName=n.name),Object.values(e).forEach(e=>{D4(e,t,r)})},D5=e=>{let{layout:t,data:i,className:n}=e,{form:r,setFieldTypeMap:a,updateModifiedDataObjectAttributes:l,updateDraft:o,getChangedFieldName:s,disabled:d}=(0,DX.P)(),c=(0,a1.n)();(0,tY.useEffect)(()=>{let e;a((D4(t,e=new Map),e))},[t,a]);let f=(e,t)=>{var i;if(d)return;l(e);let n=s(e);null!==n&&(null==c||null==(i=c.getInheritanceState(n))?void 0:i.inherited)===!0&&(null==c||c.breakInheritance(n)),o().catch(e=>{console.error(e)})};return(0,tY.useMemo)(()=>(0,tZ.jsx)(ij.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,tZ.jsx)(ie._Y,{children:(0,tZ.jsx)(t1.lV,{className:n,form:r,initialValues:i,layout:"vertical",onValuesChange:f,preserve:!0,children:(0,tZ.jsx)(pw.s,{renderTopBar:(0,tZ.jsx)(D3,{}),children:(0,tZ.jsx)(ap.f,{...t})})})})}),[t,i,n])};var D7=i(91434),D8=i(15925);let D9=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{editContainer:i`
display: flex;
width: 100%;
height: 100%;
@@ -933,7 +933,7 @@
width: 100%;
}
}
- `}},{hashPriority:"high"});var Ie=i(33541);let It=()=>{let{id:e}=(0,i3.J)(),{currentLayout:t}=(0,dJ.W)(),{data:i,isLoading:n,error:r}=(0,D7.nF)({id:e,layoutId:t??void 0}),{dataObject:a,isLoading:l}=(0,a0.A)(e),{styles:o}=D9();if(void 0!==r&&(0,i4.Ay)(new i4.hD(r)),void 0===i||n||l)return(0,tZ.jsx)(uG.U,{loading:!0});if(!(void 0!==a&&"objectData"in a))throw Error("Data Object data is undefined in Edit Container");return(0,tZ.jsx)(D8.Q,{children:(0,tZ.jsx)(Ie.E,{children:(0,tZ.jsx)(D5,{className:o.editContainer,data:null==a?void 0:a.objectData,layout:i})})})},Ii={key:"edit",label:"edit",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.edit.name}),icon:(0,tZ.jsx)(aa.I,{value:"edit-pen"}),isDetachable:!1};var In=i(68845);let Ir=()=>(0,tZ.jsx)(In.w8,{}),Ia={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.listing.name}),icon:(0,tZ.jsx)(aa.I,{value:"list"}),isDetachable:!1};var Il=i(35510),Io=i(69187),Is=i(69622),Id=i(14826),Ic=i(41309),If=i(60213),Iu=i(76133);let Im=(0,tY.createContext)({batchEdits:[],setBatchEdits:()=>{}}),Ip=e=>{let{children:t}=e,[i,n]=(0,tY.useState)([]);return(0,tY.useMemo)(()=>(0,tZ.jsx)(Im.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])},Ig=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tY.useContext)(Im),i=(0,gf.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}))}}},Ih=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,iw.R)();return(0,tY.useMemo)(()=>{let{ComponentRenderer:e}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===e?(0,tZ.jsx)(tZ.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tZ.jsx)(tZ.Fragment,{children:e({batchEdit:t})})},[t])},Iy=()=>{let{batchEdits:e,removeBatchEdit:t}=Ig(),{updateLocale:i}=Ig(),n=(0,gf.t)(),r=n.requiredLanguages,a=e.map(e=>{let a=e.locale??n.requiredLanguages[0],l=(0,im.a)(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,tZ.jsx)(ij.Tag,{children:(0,ne.t)(`${l}`)}),renderRightToolbar:(0,tZ.jsx)(Sl.e,{items:[...e.localizable?[(0,tZ.jsx)(Cj.v,{languages:r,onSelectLanguage:t=>{i(e,(0,Cw.z1)(t))},selectedLanguage:a},"language-selection")]:[],(0,tZ.jsx)(lw.K,{icon:{value:"close"},onClick:()=>{t(e)}},"remove")]}),body:(0,tZ.jsx)(Ih,{batchEdit:e})}});return(0,tZ.jsxs)(tZ.Fragment,{children:[0===a.length&&(0,tZ.jsx)(hV.R,{text:(0,ne.t)("batch-edit.no-content")}),a.length>0&&(0,tZ.jsx)(Cx.N,{items:a})]})},Iv=(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=Iv(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=tp.kL.get(tm.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)),Ib=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||Ib(e.children));var Ix=i(74003),Ij=i(96511);class Iw extends CM{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 Ik extends CP{async executeEditRequest(){var e;return(null==(e=(await this.patchObjectsInFolder({id:this.folderId,body:{data:{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 IT=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,Cv.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,addOrUpdateBatchEdits:l,resetBatchEdits:o}=Ig(),[s]=t1.lV.useForm(),{selectedRows:d}=(0,Ca.U)(),[c,{error:f,isError:u,isSuccess:m}]=(0,D7.Ex)(),[p,{error:g,isError:h,isSuccess:y}]=(0,D7.M5)(),{useDataQueryHelper:v}=(0,Cp.t)(),{getArgs:b}=v(),{id:x,elementType:j}=(0,i3.J)(),w=(0,iT.useAppDispatch)(),k=tp.kL.get(tm.K.executionEngine),T=Object.keys(d??{}),S=T.length,{hasType:C,getType:D}=(0,iw.R)(),{refreshGrid:I}=(0,CS.X)(j),M=(0,CG.p)().selectedClassDefinition,{openModal:L}=(0,Ix._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,Cv.m)(),E=()=>{o(),s.resetFields()};(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(f)),h&&(0,i4.Ay)(new i4.hD(g))},[f,g]),(0,tY.useEffect)(()=>{(m||y)&&E(),y&&1===S&&w(D7.FH.util.invalidateTags(uB.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 Ik({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 Iw({patchObjectsByIds:p,selectedRowsIds:T.map(Number),values:e,assetContextId:x,refreshGrid:I});await k.runJob(t)}E(),i(!1)},N=n(e=>{if("dataobject.classificationstore"===e.type){var t;if(!(0,im.a)(e.config))throw Error("Field definition is missing in config");L({...null==(t=e.config)?void 0:t.fieldDefinition,fieldName:e.key,allowedTabs:[Ij.X.GroupByKey]});return}a(e,void 0)}).menu.items,A=(0,tY.useMemo)(()=>()=>(0,tP.isUndefined)(N)?[]:Iv(N,r,C,D),[N,r,C,D]),R=!Ib(A());return(0,tZ.jsx)(D8.Q,{children:(0,tZ.jsx)(Cy.m,{afterClose:()=>{E()},footer:(0,tZ.jsxs)(gy.j,{divider:!0,justify:"space-between",children:[(0,tZ.jsx)(pI.m,{menu:{items:A()},children:(0,tZ.jsx)(pc.J,{disabled:R,icon:{value:"new"},type:"default",children:(0,ne.t)("listing.add-column")})}),r.length>0&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"extra-small",children:[(0,tZ.jsx)(pc.J,{icon:{value:"close"},onClick:()=>{E()},type:"link",children:(0,ne.t)("batch-edit.modal-footer.discard-all-changes")}),(0,tZ.jsx)(aW.$,{onClick:()=>{s.submit()},type:"primary",children:(0,ne.t)("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1)},open:t,size:"XL",title:(0,tZ.jsx)(gh.w,{children:(0,ne.t)("batch-edit.modal-title")}),children:(0,tZ.jsx)(ie._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tZ.jsx)(t1.lV,{form:s,onFinish:P,children:(0,tZ.jsx)(Iy,{})})})})})};class IS extends C3{static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}async executeDeleteRequest(){var e;let t=await uz.M_.dispatch(D7.FH.endpoints.dataObjectBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}}IS.jobNames=["studio_ee_job_batch_delete_data_objects"];let IC=()=>{let e=(0,Cm.S)(),t=dj.elementTypes.dataObject,{refreshGrid:i}=(0,CS.X)(t),n=tp.kL.get(tm.K.executionEngine),[r,a]=(0,tY.useState)(!1),[l,o]=(0,tY.useState)(!1),[s,d]=(0,tY.useState)(!1),{t:c}=(0,i1.useTranslation)();if(void 0===e)return(0,tZ.jsx)(tZ.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 IS({itemIds:m,onFinish:async()=>{await i(),u({})}});await n.runJob(e)},h={items:[{key:"1",label:c("listing.actions.batch-edit"),icon:(0,tZ.jsx)(aa.I,{value:"batch-selection"}),onClick:()=>{a(!0)}},{key:"2",label:c("listing.actions.export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),children:[{key:"2.1",label:c("listing.actions.csv-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{o(!0)}},{key:"2.2",label:c("listing.actions.xlsx-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{d(!0)}}]},{key:"3",hidden:!p,label:c("listing.actions.delete"),icon:(0,tZ.jsx)(aa.I,{value:"trash"}),onClick:g}]};return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pI.m,{menu:h,children:(0,tZ.jsx)(pD.g,{"data-testid":"listing-batch-actions-button",children:c(p?"listing.actions":"listing.non-selected.actions")},"dropdown-button")}),(0,tZ.jsx)(CJ,{open:l,setOpen:o}),(0,tZ.jsx)(C1,{open:s,setOpen:d}),(0,tZ.jsx)(Ix.K7,{children:(0,tZ.jsx)(Ip,{children:(0,tZ.jsx)(IT,{batchEditModalOpen:r,setBatchEditModalOpen:a})})})]})};var ID=i(40721);let II=()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,aq.Vl)(),[i]=(0,Io.ZE)(),n=(0,iT.useAppDispatch)(),{openDataObject:r}=(0,ID.H)(),{isTreeActionAllowed:a}=(0,D$.H)(),{getClassDefinitionsForCurrentUser:l}=(0,a5.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,i4.Ay)(new i4.hD(e.error));let{id:t}=e.data;r({config:{id:t}}),n((0,Do.refreshNodeChildren)({nodeId:String(a),elementType:"data-object"}))}catch(e){(0,i4.Ay)(new i4.$g("Error creating data object"))}};return{addVariantTreeContextMenuItem:i=>({label:e("data-object.tree.context-menu.add-variant"),key:"addVariant",icon:(0,tZ.jsx)(aa.I,{value:"data-object-variant"}),hidden:!a(DH.o.AddVariant)||!(0,Si.o)(i.permissions,"create")||(0,tP.isEmpty)(l()),onClick:()=>{var n,r,a;n=(e=>{if(!(0,tP.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)}})}}},IM=()=>{let{createDataObjectVariant:e}=II(),{selectedClassDefinition:t}=(0,CG.p)(),{id:i}=(0,i3.J)(),n=(0,uz.jL)(),{t:r}=(0,i1.useTranslation)();return(0,tZ.jsx)(pc.J,{icon:{value:"new"},onClick:()=>{e({id:(null==t?void 0:t.id)??"",name:(null==t?void 0:t.name)??""},i,e=>(n(D7.FH.util.invalidateTags(uB.qN.DATA_OBJECT_GRID_ID(i))),e))},children:r("data-object.variant-listing.create-data-variant")})},IL=()=>{let{selectedRows:e}=(0,Ca.U)(),t=Object.keys(e??{}).length;return(0,tY.useMemo)(()=>(0,tZ.jsxs)(pC.M,{theme:"secondary",children:[(0,tZ.jsxs)(oR.B,{children:[(0,tZ.jsxs)(aZ.$,{size:"extra-small",children:[t>0&&(0,tZ.jsx)(yl.B,{}),t<=0&&(0,tZ.jsx)(IM,{})]}),(0,tZ.jsx)(IC,{})]}),(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(yo.y,{}),(0,tZ.jsx)(ys.d,{})]})]}),[t])},IF={...h6.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,ye.E)(),{selectedClassDefinition:t}=(0,CG.p)();return(0,tY.useMemo)(()=>(0,tZ.jsx)(pw.s,{renderSidebar:void 0!==e?(0,tZ.jsx)(yt.B,{}):void 0,renderToolbar:void 0!==e?(0,tZ.jsx)(IL,{}):void 0,children:void 0!==t&&void 0!==e&&(0,tZ.jsx)(yi.E,{})}),[e])},useDataQuery:Io.dB,useDataQueryHelper:Is.Q,useElementId:Il.$},IE=()=>{let{id:e}=(0,i3.J)(),t=(0,a0.A)(e),i="className"in t?t.className:void 0,n=(0,h8.Z)(Id._,h7.Y,h5.S,[yb.f,{isResolvingClassDefinitionsBasedOnElementId:!1,classRestriction:[{classes:i}]}],Ic.y,[Ci.P,{useInlineEditApiUpdate:Iu.C}],[Ct.Y,{rowSelectionMode:"multiple"}],If.y,h1.A,h4.p,[yc.u,{elementType:"data-object",restrictedOptions:["variant"]}])(IF);return(0,tZ.jsx)(h3.U,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tZ.jsx)(h6.w,{...n})})},IP=()=>{let{setHasLocalizedFields:e}=(0,a7.Sk)();return(0,tY.useEffect)(()=>{e(!0)},[e]),(0,tY.useMemo)(()=>(0,tZ.jsx)(IE,{}),[])},IN={key:"variants",label:"data-object.object-editor-tabs.variants",icon:(0,tZ.jsx)(aa.I,{value:"data-object-variant"}),children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.variants.name}),hidden:e=>!("allowVariants"in e&&(null==e?void 0:e.allowVariants)===!0)};var IA=i(68074),IR=i(29701);let IV={key:"application-logger",label:"application-logger.label",icon:(0,tZ.jsx)(aa.I,{value:"application-logger"}),children:(0,tZ.jsx)(()=>{let{id:e}=(0,i3.J)();return(0,tZ.jsx)(IR.s,{initialRelatedObjectId:e,children:(0,tZ.jsx)(IA.g,{})})},{}),hidden:e=>!("showAppLoggerTab"in e&&!0===e.showAppLoggerTab)};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/ObjectTabManager"]),t={...Ia};t.hidden=e=>(null==e?void 0:e.hasChildren)===!1,t.label="object.object-editor-tabs.children-listing",e.register(Ii),e.register(DY),e.register(k3.Aj),e.register(DZ),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(t),e.register(IN),e.register(k3.MD),e.register(IV)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/VariantTabManager"]);e.register(Ii),e.register(DY),e.register(k3.Aj),e.register(DZ),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(IN),e.register(k3.MD)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/FolderTabManager"]);e.register(Ia),e.register(k3.Aj),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD)}});var Iz=i(68360);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.dataObjectEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,Iz.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,TX.z)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,T0.M)("data-object");return t(e.target)}})}});var IB=i(44725),IO=i(67895);let IK=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(D0.Z),{dataObject:i}=(0,a0.A)(t),{refreshElement:n}=(0,T1.d)("data-object"),{isLoading:r,layouts:a}=(0,IO.c)(t),{setCurrentLayout:l,currentLayout:o}=(0,dJ.W)(),[s,d]=(0,tY.useState)(),c=(0,tY.useRef)(null);if((0,tY.useEffect)(()=>{if((0,tP.isString)(s)){var e;null==(e=c.current)||e.refresh()}},[s]),r)return(0,tZ.jsx)(tZ.Fragment,{});let f=()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,u=(a??[]).map(t=>({key:`reload-${t.id}`,label:(0,tZ.jsx)(ri.E,{strong:o===t.id,children:e(t.name)}),onClick:()=>{d(t.id)}}));return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(SN.j,{hasDataChanged:f,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tZ.jsx)(lw.K,{"data-testid":"data-object-editor-reload-button",icon:{value:"refresh"},children:e("toolbar.reload")})},"reload"),u.length>1&&(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(SN.j,{hasDataChanged:f,onCancel:()=>{d(null)},onReload:()=>{(0,tP.isString)(s)&&l(s),n(t,!0)},ref:c,title:e("toolbar.reload.confirmation")},"reload"),(0,tZ.jsx)(pI.m,{menu:{items:u},trigger:["hover"],children:(0,tZ.jsx)(lw.K,{icon:{value:"chevron-down"},onClick:e=>{e.stopPropagation()},children:e("toolbar.switch-layout")})},"switch-layout")]})]})},I_=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(D0.Z),{dataObject:i}=(0,a0.A)(t),[n,r]=(0,tY.useState)(void 0),a=(0,k8.W)(k9.r.dataObjectEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),{shareViaNotificationContextMenuItem:l,shareViaNotificationModal:o}=SR((0,tP.isNil)(i)?void 0:{type:"object",id:i.id,fullPath:i.fullPath??void 0}),s=[...a,l],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),c=[];return c.push((0,tZ.jsx)(IK,{},"reload-button")),d.length>0&&c.push((0,tZ.jsx)(pI.m,{menu:{items:s,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tZ.jsx)(pD.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(Sl.e,{items:c,noSpacing:!0}),o]})};var IH=i(36877);let I$=()=>{let{id:e}=(0,tY.useContext)(D0.Z),{activeTab:t}=(0,a0.A)(e);return[Ii.key,Ia.key,IN.key].includes(t??"")?(0,tZ.jsx)(IH.v,{}):(0,tZ.jsx)(tZ.Fragment,{})};var IW=i(40703),Iq=i(35041),IG=i(80630),IU=i(62451);let IJ=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{body:i`
+ `}},{hashPriority:"high"});var Ie=i(33541);let It=()=>{let{id:e}=(0,i3.J)(),{currentLayout:t}=(0,dJ.W)(),{data:i,isLoading:n,error:r}=(0,D7.nF)({id:e,layoutId:t??void 0}),{dataObject:a,isLoading:l}=(0,a0.A)(e),{styles:o}=D9();if(void 0!==r&&(0,i4.Ay)(new i4.hD(r)),void 0===i||n||l)return(0,tZ.jsx)(uG.U,{loading:!0});if(!(void 0!==a&&"objectData"in a))throw Error("Data Object data is undefined in Edit Container");return(0,tZ.jsx)(D8.Q,{children:(0,tZ.jsx)(Ie.E,{children:(0,tZ.jsx)(D5,{className:o.editContainer,data:null==a?void 0:a.objectData,layout:i})})})},Ii={key:"edit",label:"edit",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.edit.name}),icon:(0,tZ.jsx)(aa.I,{value:"edit-pen"}),isDetachable:!1};var In=i(68845);let Ir=()=>(0,tZ.jsx)(In.w8,{}),Ia={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.listing.name}),icon:(0,tZ.jsx)(aa.I,{value:"list"}),isDetachable:!1};var Il=i(35510),Io=i(69187),Is=i(69622),Id=i(14826),Ic=i(41309),If=i(60213),Iu=i(76133);let Im=(0,tY.createContext)({batchEdits:[],setBatchEdits:()=>{}}),Ip=e=>{let{children:t}=e,[i,n]=(0,tY.useState)([]);return(0,tY.useMemo)(()=>(0,tZ.jsx)(Im.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])},Ig=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tY.useContext)(Im),i=(0,gf.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}))}}},Ih=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,iw.R)();return(0,tY.useMemo)(()=>{let{ComponentRenderer:e}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===e?(0,tZ.jsx)(tZ.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tZ.jsx)(tZ.Fragment,{children:e({batchEdit:t})})},[t])},Iy=()=>{let{batchEdits:e,removeBatchEdit:t}=Ig(),{updateLocale:i}=Ig(),n=(0,gf.t)(),r=n.requiredLanguages,a=e.map(e=>{let a=e.locale??n.requiredLanguages[0],l=(0,im.a)(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,tZ.jsx)(ij.Tag,{children:(0,ne.t)(`${l}`)}),renderRightToolbar:(0,tZ.jsx)(Sl.e,{items:[...e.localizable?[(0,tZ.jsx)(Cj.v,{languages:r,onSelectLanguage:t=>{i(e,(0,Cw.z1)(t))},selectedLanguage:a},"language-selection")]:[],(0,tZ.jsx)(lw.K,{icon:{value:"close"},onClick:()=>{t(e)}},"remove")]}),body:(0,tZ.jsx)(Ih,{batchEdit:e})}});return(0,tZ.jsxs)(tZ.Fragment,{children:[0===a.length&&(0,tZ.jsx)(hV.R,{text:(0,ne.t)("batch-edit.no-content")}),a.length>0&&(0,tZ.jsx)(Cx.N,{items:a})]})},Iv=(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=Iv(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=tp.kL.get(tm.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)),Ib=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||Ib(e.children));var Ix=i(74003),Ij=i(96511);class Iw extends CL{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 Ik extends CN{async executeEditRequest(){var e;return(null==(e=(await this.patchObjectsInFolder({id:this.folderId,body:{data:{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 IT=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,Cv.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,addOrUpdateBatchEdits:l,resetBatchEdits:o}=Ig(),[s]=t1.lV.useForm(),{selectedRows:d}=(0,Ca.U)(),[c,{error:f,isError:u,isSuccess:m}]=(0,D7.Ex)(),[p,{error:g,isError:h,isSuccess:y}]=(0,D7.M5)(),{useDataQueryHelper:v}=(0,Cp.t)(),{getArgs:b}=v(),{id:x,elementType:j}=(0,i3.J)(),w=(0,iT.useAppDispatch)(),k=tp.kL.get(tm.K.executionEngine),T=Object.keys(d??{}),S=T.length,{hasType:C,getType:D}=(0,iw.R)(),{refreshGrid:I}=(0,CS.X)(j),M=(0,CU.p)().selectedClassDefinition,{openModal:L}=(0,Ix._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,Cv.m)(),E=()=>{o(),s.resetFields()};(0,tY.useEffect)(()=>{u&&(0,i4.Ay)(new i4.hD(f)),h&&(0,i4.Ay)(new i4.hD(g))},[f,g]),(0,tY.useEffect)(()=>{(m||y)&&E(),y&&1===S&&w(D7.FH.util.invalidateTags(uB.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 Ik({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 Iw({patchObjectsByIds:p,selectedRowsIds:T.map(Number),values:e,assetContextId:x,refreshGrid:I});await k.runJob(t)}E(),i(!1)},N=n(e=>{if("dataobject.classificationstore"===e.type){var t;if(!(0,im.a)(e.config))throw Error("Field definition is missing in config");L({...null==(t=e.config)?void 0:t.fieldDefinition,fieldName:e.key,allowedTabs:[Ij.X.GroupByKey]});return}a(e,void 0)}).menu.items,A=(0,tY.useMemo)(()=>()=>(0,tP.isUndefined)(N)?[]:Iv(N,r,C,D),[N,r,C,D]),R=!Ib(A());return(0,tZ.jsx)(D8.Q,{children:(0,tZ.jsx)(Cy.m,{afterClose:()=>{E()},footer:(0,tZ.jsxs)(gy.j,{divider:!0,justify:"space-between",children:[(0,tZ.jsx)(pI.m,{menu:{items:A()},children:(0,tZ.jsx)(pc.J,{disabled:R,icon:{value:"new"},type:"default",children:(0,ne.t)("listing.add-column")})}),r.length>0&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"extra-small",children:[(0,tZ.jsx)(pc.J,{icon:{value:"close"},onClick:()=>{E()},type:"link",children:(0,ne.t)("batch-edit.modal-footer.discard-all-changes")}),(0,tZ.jsx)(aW.$,{onClick:()=>{s.submit()},type:"primary",children:(0,ne.t)("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1)},open:t,size:"XL",title:(0,tZ.jsx)(gh.w,{children:(0,ne.t)("batch-edit.modal-title")}),children:(0,tZ.jsx)(ie._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tZ.jsx)(t1.lV,{form:s,onFinish:P,children:(0,tZ.jsx)(Iy,{})})})})})};class IS extends C3{static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id})}async executeDeleteRequest(){var e;let t=await uz.M_.dispatch(D7.FH.endpoints.dataObjectBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}}IS.jobNames=["studio_ee_job_batch_delete_data_objects"];let IC=()=>{let e=(0,Cm.S)(),t=dj.elementTypes.dataObject,{refreshGrid:i}=(0,CS.X)(t),n=tp.kL.get(tm.K.executionEngine),[r,a]=(0,tY.useState)(!1),[l,o]=(0,tY.useState)(!1),[s,d]=(0,tY.useState)(!1),{t:c}=(0,i1.useTranslation)();if(void 0===e)return(0,tZ.jsx)(tZ.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 IS({itemIds:m,onFinish:async()=>{await i(),u({})}});await n.runJob(e)},h={items:[{key:"1",label:c("listing.actions.batch-edit"),icon:(0,tZ.jsx)(aa.I,{value:"batch-selection"}),onClick:()=>{a(!0)}},{key:"2",label:c("listing.actions.export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),children:[{key:"2.1",label:c("listing.actions.csv-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{o(!0)}},{key:"2.2",label:c("listing.actions.xlsx-export"),icon:(0,tZ.jsx)(aa.I,{value:"export"}),onClick:()=>{d(!0)}}]},{key:"3",hidden:!p,label:c("listing.actions.delete"),icon:(0,tZ.jsx)(aa.I,{value:"trash"}),onClick:g}]};return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pI.m,{menu:h,children:(0,tZ.jsx)(pD.g,{"data-testid":"listing-batch-actions-button",children:c(p?"listing.actions":"listing.non-selected.actions")},"dropdown-button")}),(0,tZ.jsx)(CQ,{open:l,setOpen:o}),(0,tZ.jsx)(C2,{open:s,setOpen:d}),(0,tZ.jsx)(Ix.K7,{children:(0,tZ.jsx)(Ip,{children:(0,tZ.jsx)(IT,{batchEditModalOpen:r,setBatchEditModalOpen:a})})})]})};var ID=i(40721);let II=()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,aq.Vl)(),[i]=(0,Io.ZE)(),n=(0,iT.useAppDispatch)(),{openDataObject:r}=(0,ID.H)(),{isTreeActionAllowed:a}=(0,D$.H)(),{getClassDefinitionsForCurrentUser:l}=(0,a5.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,i4.Ay)(new i4.hD(e.error));let{id:t}=e.data;r({config:{id:t}}),n((0,Do.refreshNodeChildren)({nodeId:String(a),elementType:"data-object"}))}catch(e){(0,i4.Ay)(new i4.$g("Error creating data object"))}};return{addVariantTreeContextMenuItem:i=>({label:e("data-object.tree.context-menu.add-variant"),key:"addVariant",icon:(0,tZ.jsx)(aa.I,{value:"data-object-variant"}),hidden:!a(DH.o.AddVariant)||!(0,Si.o)(i.permissions,"create")||(0,tP.isEmpty)(l()),onClick:()=>{var n,r,a;n=(e=>{if(!(0,tP.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)}})}}},IM=()=>{let{createDataObjectVariant:e}=II(),{selectedClassDefinition:t}=(0,CU.p)(),{id:i}=(0,i3.J)(),n=(0,uz.jL)(),{t:r}=(0,i1.useTranslation)();return(0,tZ.jsx)(pc.J,{icon:{value:"new"},onClick:()=>{e({id:(null==t?void 0:t.id)??"",name:(null==t?void 0:t.name)??""},i,e=>(n(D7.FH.util.invalidateTags(uB.qN.DATA_OBJECT_GRID_ID(i))),e))},children:r("data-object.variant-listing.create-data-variant")})},IL=()=>{let{selectedRows:e}=(0,Ca.U)(),t=Object.keys(e??{}).length;return(0,tY.useMemo)(()=>(0,tZ.jsxs)(pC.M,{theme:"secondary",children:[(0,tZ.jsxs)(oR.B,{children:[(0,tZ.jsxs)(aZ.$,{size:"extra-small",children:[t>0&&(0,tZ.jsx)(yl.B,{}),t<=0&&(0,tZ.jsx)(IM,{})]}),(0,tZ.jsx)(IC,{})]}),(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(yo.y,{}),(0,tZ.jsx)(ys.d,{})]})]}),[t])},IF={...h6.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,ye.E)(),{selectedClassDefinition:t}=(0,CU.p)();return(0,tY.useMemo)(()=>(0,tZ.jsx)(pw.s,{renderSidebar:void 0!==e?(0,tZ.jsx)(yt.B,{}):void 0,renderToolbar:void 0!==e?(0,tZ.jsx)(IL,{}):void 0,children:void 0!==t&&void 0!==e&&(0,tZ.jsx)(yi.E,{})}),[e])},useDataQuery:Io.dB,useDataQueryHelper:Is.Q,useElementId:Il.$},IE=()=>{let{id:e}=(0,i3.J)(),t=(0,a0.A)(e),i="className"in t?t.className:void 0,n=(0,h8.Z)(Id._,h7.Y,h5.S,[yb.f,{isResolvingClassDefinitionsBasedOnElementId:!1,classRestriction:[{classes:i}]}],Ic.y,[Ci.P,{useInlineEditApiUpdate:Iu.C}],[Ct.Y,{rowSelectionMode:"multiple"}],If.y,h1.A,h4.p,[yc.u,{elementType:"data-object",restrictedOptions:["variant"]}])(IF);return(0,tZ.jsx)(h3.U,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tZ.jsx)(h6.w,{...n})})},IP=()=>{let{setHasLocalizedFields:e}=(0,a7.Sk)();return(0,tY.useEffect)(()=>{e(!0)},[e]),(0,tY.useMemo)(()=>(0,tZ.jsx)(IE,{}),[])},IN={key:"variants",label:"data-object.object-editor-tabs.variants",icon:(0,tZ.jsx)(aa.I,{value:"data-object-variant"}),children:(0,tZ.jsx)(uR.ComponentRenderer,{component:uR.componentConfig.dataObject.editor.tab.variants.name}),hidden:e=>!("allowVariants"in e&&(null==e?void 0:e.allowVariants)===!0)};var IA=i(68074),IR=i(29701);let IV={key:"application-logger",label:"application-logger.label",icon:(0,tZ.jsx)(aa.I,{value:"application-logger"}),children:(0,tZ.jsx)(()=>{let{id:e}=(0,i3.J)();return(0,tZ.jsx)(IR.s,{initialRelatedObjectId:e,children:(0,tZ.jsx)(IA.g,{})})},{}),hidden:e=>!("showAppLoggerTab"in e&&!0===e.showAppLoggerTab)};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/ObjectTabManager"]),t={...Ia};t.hidden=e=>(null==e?void 0:e.hasChildren)===!1,t.label="object.object-editor-tabs.children-listing",e.register(Ii),e.register(DY),e.register(k3.Aj),e.register(DZ),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(t),e.register(IN),e.register(k3.MD),e.register(IV)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/VariantTabManager"]);e.register(Ii),e.register(DY),e.register(k3.Aj),e.register(DZ),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(IN),e.register(k3.MD)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DataObject/Editor/FolderTabManager"]);e.register(Ia),e.register(k3.Aj),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD)}});var Iz=i(68360);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.dataObjectEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,Iz.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,TX.z)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,T0.M)("data-object");return t(e.target)}})}});var IB=i(44725),IO=i(67895);let IK=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(D0.Z),{dataObject:i}=(0,a0.A)(t),{refreshElement:n}=(0,T1.d)("data-object"),{isLoading:r,layouts:a}=(0,IO.c)(t),{setCurrentLayout:l,currentLayout:o}=(0,dJ.W)(),[s,d]=(0,tY.useState)(),c=(0,tY.useRef)(null);if((0,tY.useEffect)(()=>{if((0,tP.isString)(s)){var e;null==(e=c.current)||e.refresh()}},[s]),r)return(0,tZ.jsx)(tZ.Fragment,{});let f=()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,u=(a??[]).map(t=>({key:`reload-${t.id}`,label:(0,tZ.jsx)(ri.E,{strong:o===t.id,children:e(t.name)}),onClick:()=>{d(t.id)}}));return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(SN.j,{hasDataChanged:f,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tZ.jsx)(lw.K,{"data-testid":"data-object-editor-reload-button",icon:{value:"refresh"},children:e("toolbar.reload")})},"reload"),u.length>1&&(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(SN.j,{hasDataChanged:f,onCancel:()=>{d(null)},onReload:()=>{(0,tP.isString)(s)&&l(s),n(t,!0)},ref:c,title:e("toolbar.reload.confirmation")},"reload"),(0,tZ.jsx)(pI.m,{menu:{items:u},trigger:["hover"],children:(0,tZ.jsx)(lw.K,{icon:{value:"chevron-down"},onClick:e=>{e.stopPropagation()},children:e("toolbar.switch-layout")})},"switch-layout")]})]})},I_=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(D0.Z),{dataObject:i}=(0,a0.A)(t),[n,r]=(0,tY.useState)(void 0),a=(0,k8.W)(k9.r.dataObjectEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),{shareViaNotificationContextMenuItem:l,shareViaNotificationModal:o}=SR((0,tP.isNil)(i)?void 0:{type:"object",id:i.id,fullPath:i.fullPath??void 0}),s=[...a,l],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),c=[];return c.push((0,tZ.jsx)(IK,{},"reload-button")),d.length>0&&c.push((0,tZ.jsx)(pI.m,{menu:{items:s,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tZ.jsx)(pD.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(Sl.e,{items:c,noSpacing:!0}),o]})};var IH=i(36877);let I$=()=>{let{id:e}=(0,tY.useContext)(D0.Z),{activeTab:t}=(0,a0.A)(e);return[Ii.key,Ia.key,IN.key].includes(t??"")?(0,tZ.jsx)(IH.v,{}):(0,tZ.jsx)(tZ.Fragment,{})};var IW=i(40703),Iq=i(35041),IG=i(80630),IU=i(62451);let IJ=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{body:i`
max-height: 70vh;
overflow-y: auto;
position: relative;
@@ -1028,7 +1028,7 @@
padding: ${t.paddingXS}px;
margin: 0;
}
- `}});var ME=i(85668);let MP=["language","navigation_exclude","navigation_name","navigation_title","navigation_relation","navigation_parameters","navigation_anchor","navigation_target","navigation_class","navigation_tabindex","navigation_accesskey"],MN=(e,t)=>"document"===t&&MP.includes(e),MA=e=>{let{propertiesTableTab:t,showDuplicatePropertyModal:i,showMandatoryModal:n,showDisallowedPropertyModal:r}=e,{t:a}=(0,i1.useTranslation)(),{openElement:l,mapToElementType:o}=(0,no.K)(),{styles:s}=MF(),{id:d,elementType:c}=(0,i3.J)(),{element:f,properties:u,updateProperty:m,removeProperty:p,setModifiedCells:g}=(0,SJ.D)(d,c),h=void 0!==u,y=(0,Si.o)(null==f?void 0:f.permissions,"publish")||(0,Si.o)(null==f?void 0:f.permissions,"save"),{isLoading:v}=(0,ME.B)(),[b,x]=(0,tY.useState)([]),[j,w]=(0,tY.useState)([]),k="properties",T=(null==f?void 0:f.modifiedCells[k])??[];(0,tY.useEffect)(()=>{if(h){let e=e=>e.filter(e=>!MN(e.key,c));x(e(u.filter(e=>!e.inherited))),w(e(u.filter(e=>e.inherited)))}},[u,c]),(0,tY.useEffect)(()=>{T.length>0&&(null==f?void 0:f.changes.properties)===void 0&&g(k,[])},[f,T]);let S=(0,c6.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,tZ.jsxs)("div",{className:"properties-table--actions-column",children:[["document","asset","object"].includes(t.row.original.type)&&null!==t.row.original.data&&(0,tZ.jsx)(lw.K,{icon:{value:"open-folder"},onClick:async()=>{let e=o(t.row.original.type);(0,tP.isUndefined)(e)||await l({type:e,id:t.row.original.data.id})},type:"link"}),"own"===e&&(0,tZ.jsx)(lw.K,{icon:{value:"trash"},onClick:()=>{p(t.row.original)},type:"link"})]})})],D=[...C("own")],I=[...C("inherited")];return(0,tZ.jsx)("div",{className:s.table,children:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(uj.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&&MN(l,c)?r():St(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,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pj.a,{padding:{y:"small"},children:(0,tZ.jsx)(ri.E,{strong:!0,children:a("properties.inherited.properties")})}),(0,tZ.jsx)(uj.x,{autoWidth:!0,columns:I,data:j,resizable:!0})]})]})})},MR=()=>{var e,t,i;let{t:n}=(0,i1.useTranslation)(),[r,a]=(0,tY.useState)("own"),[l,o]=(0,tY.useState)(!1),{id:s,elementType:d}=(0,i3.J)(),{element:c,addProperty:f,properties:u}=(0,SJ.D)(s,d),m=(0,Si.o)(null==c?void 0:c.permissions,"publish")||(0,Si.o)(null==c?void 0:c.permissions,"save"),{showModal:p,closeModal:g,renderModal:h}=(0,Sa.hS)({type:"error"}),{showModal:y,closeModal:v,renderModal:b}=(0,Sa.hS)({type:"error"}),{showModal:x,closeModal:j,renderModal:w}=(0,Sa.hS)({type:"error"}),k=(0,tY.useRef)(""),T=(0,tY.useRef)(null),S=(0,tY.useRef)(""),{data:C,isLoading:D}=(0,ML.VC)({elementType:d});return(0,tY.useEffect)(()=>{if(l){var e;null==(e=T.current)||e.focus()}else S.current="",k.current=""},[l]),(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:n("properties.label"),children:(0,tZ.jsxs)(aZ.$,{size:"small",children:[(0,tZ.jsx)(aJ.$,{onChange:a,options:[{label:n("properties.editable-properties"),value:"own"},{label:n("properties.all-properties"),value:"all"}]}),m&&(0,tZ.jsxs)("div",{className:"pimcore-properties-toolbar__predefined-properties",children:[(0,tZ.jsx)(h,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{onClick:g,type:"primary",children:n("button.ok")})}),title:n("properties.property-already-exist.title"),children:n("properties.property-already-exist.error")}),(0,tZ.jsx)(b,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{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,tZ.jsx)(w,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{onClick:j,type:"primary",children:n("button.ok")})}),title:n("properties.property-key-disallowed.title"),children:n("properties.property-key-disallowed.error")}),l&&(0,tZ.jsxs)(aZ.$,{size:"extra-small",children:[(0,tZ.jsx)(aW.$,{onClick:()=>{o(!1)},type:"link",children:n("properties.add-custom-property.cancel")}),(0,tZ.jsx)(ij.Input,{onChange:function(e){k.current=e.target.value},placeholder:n("properties.add-custom-property.key"),ref:T}),(0,tZ.jsx)(ir.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,tZ.jsx)(pc.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?MN(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,rn.u)()}):y()},children:n("properties.add-custom-property.create")})]}),!l&&(0,tZ.jsxs)(oR.B,{size:"mini",children:[(0,tZ.jsx)(ir.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||(MN(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,rn.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,tZ.jsx)(pc.J,{icon:{value:"new-something"},onClick:()=>{o(!0)},children:n("properties.new-custom-property")},n("properties.new-custom-property"))]})]})]})}),(0,tZ.jsx)(MA,{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 MV=i(59208),Mz=i(42984);let MB={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,tZ.jsx)(()=>{let{id:e}=(0,tY.useContext)(Mx.T),{document:t}=(0,Mj.S)(e),i=(0,MV.h)(null==t?void 0:t.type).getButtons(),n=(0,Mz.S)();return(0,tZ.jsx)(pw.s,{renderSidebar:n.length>0?(0,tZ.jsx)(Tc.B,{buttons:i,entries:n,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(MR,{})})},{}),icon:(0,tZ.jsx)(aa.I,{value:"settings"}),isDetachable:!0};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/FolderTabManager"]);e.register(MB),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD),tp.kL.get(tm.K["Document/Editor/Sidebar/FolderSidebarManager"]).registerEntry(Mv.Ds)}});let MO={key:"edit",label:"edit.label",children:(0,tZ.jsx)(()=>{let{t:e}=(0,i1.useTranslation)(),[t]=ij.Form.useForm(),{id:i}=(0,tY.useContext)(Mx.T),{document:n,updateSettingsData:r}=(0,Mj.S)(i),a=(0,Si.o)(null==n?void 0:n.permissions,"save")||(0,Si.o)(null==n?void 0:n.permissions,"publish"),l=(0,MV.h)(null==n?void 0:n.type).getButtons(),o=(0,Mz.S)(),s=tX().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{},t=null;return(0,tP.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,tZ.jsx)(pw.s,{renderSidebar:o.length>0?(0,tZ.jsx)(Tc.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(ns.Content,{padded:!0,children:(0,tZ.jsxs)(ij.Form,{form:t,initialValues:s,layout:"vertical",children:[(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.source"),name:"sourceDocument",children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,disabled:!a,documentsAllowed:!0,onChange:e=>{if(!a)return;let t={};(0,tP.isNull)(e)?(t.sourceId=null,t.sourcePath=null):!0!==e.textInput&&(t.sourceId=e.id,t.sourcePath=e.fullPath??""),r(t)},showOpenForTextInput:!0})}),(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.properties-from-source"),name:"propertiesFromSource",valuePropName:"checked",children:(0,tZ.jsx)(ij.Switch,{disabled:!a,onChange:e=>{a&&r({propertiesFromSource:e})}})}),(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.children-from-source"),name:"childrenFromSource",valuePropName:"checked",children:(0,tZ.jsx)(ij.Switch,{disabled:!a,onChange:e=>{a&&r({childrenFromSource:e})}})})]})})})},{}),icon:(0,tZ.jsx)(aa.I,{value:"edit"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/HardlinkTabManager"]);e.register(MO),e.register(k3.Aj),e.register(k3.QZ),e.register(k3.mI),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD),tp.kL.get(tm.K["Document/Editor/Sidebar/HardlinkSidebarManager"]).registerEntry(Mv.Ds)}});let MK={key:"edit",label:"edit.label",children:(0,tZ.jsx)(()=>{let{t:e}=(0,i1.useTranslation)(),[t]=ij.Form.useForm(),{id:i}=(0,tY.useContext)(Mx.T),{document:n,updateSettingsData:r}=(0,Mj.S)(i),a=(0,Si.o)(null==n?void 0:n.permissions,"save")||(0,Si.o)(null==n?void 0:n.permissions,"publish"),l=(0,MV.h)(null==n?void 0:n.type).getButtons(),o=(0,Mz.S)(),s=tX().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{};return"direct"===e.linkType&&(0,le.uI)(e.direct)?{linkTarget:{textInput:!0,fullPath:e.direct}}:e.internal&&!(0,tP.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,tZ.jsx)(pw.s,{renderSidebar:o.length>0?(0,tZ.jsx)(Tc.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(ns.Content,{padded:!0,children:(0,tZ.jsx)(ij.Form,{form:t,initialValues:s,layout:"vertical",children:(0,tZ.jsx)(ij.Form.Item,{label:e("document.link.target"),name:"linkTarget",children:(0,tZ.jsx)(f4.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,tZ.jsx)(aa.I,{value:"edit"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/LinkTabManager"]);e.register(MK),e.register(k3.Aj),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/LinkSidebarManager"]);t.registerEntry(Mv.Ds),t.registerEntry(Mv.ck)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/PageTabManager"]);e.register(My.to),e.register(My.tr),e.register(k3.Aj),e.register(My.qW),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/PageSidebarManager"]);t.registerEntry(Mv.eY),t.registerEntry(Mv.Ds),t.registerEntry(Mv.wR),t.registerEntry(Mv.ck)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/SnippetTabManager"]);e.register(My.to),e.register(k3.Aj),e.register(My.qW),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/SnippetSidebarManager"]);t.registerEntry(Mv.eY),t.registerEntry(Mv.Ds),t.registerEntry(Mv.wR)}});var M_=i(68851),MH=i(80707),M$=i(75091),MW=i(8849);let Mq=e=>{let{error:t}=e,{t:i}=(0,i1.useTranslation)(),n=new i4.hD(t).getContent(),r=(0,tP.isString)(n)?n:i(`error.${n.errorKey}`);return(0,tZ.jsx)(TM.F,{message:r,type:"error"})},MG=e=>{var t;let{isOpen:i,documentId:n,selectedDocument:r,onSelectedDocumentChange:a,onClose:l,onSubmit:o}=e,{t:s}=(0,i1.useTranslation)(),{getDisplayName:d}=(0,gw.W)(),[c,f]=(0,tY.useState)(!1),[u,{isFetching:m,error:p}]=(0,oy.xt)();(0,tY.useEffect)(()=>{i&&0!==n&&u({id:n})},[i,n]);let{data:g,isLoading:h,error:y}=(0,ML.vi)({elementType:"document",id:(null==r?void 0:r.id)??0},{skip:(0,tP.isNull)(r)});(0,tY.useEffect)(()=>{(0,tP.isUndefined)(y)||(0,i4.Ay)(new i4.hD(y))},[y]);let v=null==g||null==(t=g.items)?void 0:t.find(e=>"language"===e.key),b=(0,tP.isString)(null==v?void 0:v.data)?v.data:"",x=async()=>{f(!0);try{await o()}finally{f(!1)}};return(0,tZ.jsx)(Cy.m,{footer:(0,tZ.jsxs)(gy.j,{children:[(0,tZ.jsx)(aW.$,{onClick:l,type:"default",children:s("cancel")}),(0,tZ.jsx)(aW.$,{disabled:(0,tP.isNull)(r)||m||!(0,tP.isUndefined)(p),loading:c,onClick:x,type:"primary",children:s("apply")})]}),onCancel:l,open:i,size:"L",title:s("document.translation.link-existing-document"),children:m?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tP.isUndefined)(p)?(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(ns.Form.Item,{label:s("document.translation.title"),layout:"vertical",children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,documentsAllowed:!0,onChange:a,value:r})}),!(0,tP.isNull)(r)&&(0,tZ.jsx)(re.L.Panel,{border:!0,theme:"border-highlight",title:s("language"),children:h?(0,tZ.jsx)(sJ.t,{size:"small"}):(0,le.uI)(b)?(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",children:[(0,tZ.jsx)(gp.i,{value:b}),(0,tZ.jsxs)("span",{children:[d(b)," [",b,"]"]})]}):(0,tZ.jsx)(ri.E,{italic:!0,type:"secondary",children:s("no-data-available")})})]}):(0,tZ.jsx)(Mq,{error:p})})},MU=e=>{var t;let{isOpen:i,useInheritance:n,onClose:r,onSubmit:a,currentDocument:l}=e,{t:o}=(0,i1.useTranslation)(),{getDisplayName:s}=(0,gw.W)(),d=(0,gf.t)(),[c,f]=(0,tY.useState)(!1),[u,m]=(0,tY.useState)(""),[p]=ns.Form.useForm(),g=(0,tP.isNil)(null==l?void 0:l.id)?0:Number(l.id),[h,{isFetching:y,error:v}]=(0,oy.xt)();(0,tY.useEffect)(()=>{i&&0!==g&&h({id:g})},[i,g]);let b=!(0,tP.isNil)(l)&&(0,tP.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,x=(0,tP.isString)(null==b?void 0:b.data)?b.data:"",j=(d.validLanguages??[]).filter(e=>e!==x).map(e=>({value:e,label:`${s(e)} [${e}]`})),{data:w,error:k,isLoading:T,isFetching:S}=(0,oy.L0)({id:g,language:u},{skip:""===u||0===g});(0,tY.useEffect)(()=>{(0,tP.isNil)(k)?(0,tP.isNil)(null==w?void 0:w.fullPath)||(0,tP.isNil)(null==w?void 0:w.id)||p.setFieldValue("parent",{id:w.id,type:"document",fullPath:w.fullPath}):p.setFieldValue("parent",null)},[w,k,p]);let C=async()=>{f(!0);try{let e=await p.validateFields();await a(e)}finally{f(!1)}},D=o(n?"document.translation.new-document-with-inheritance.modal-title":"document.translation.new-document-blank.modal-title");return(0,tZ.jsx)(Cy.m,{footer:(0,tZ.jsxs)(gy.j,{children:[(0,tZ.jsx)(aW.$,{onClick:r,type:"default",children:o("cancel")}),(0,tZ.jsx)(aW.$,{disabled:y||!(0,tP.isUndefined)(v),loading:c,onClick:C,type:"primary",children:o("document.translation.new-document-modal.create")})]}),onCancel:r,open:i,size:"L",title:D,children:y?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tP.isUndefined)(v)?(0,tZ.jsxs)(ns.Form,{form:p,initialValues:{language:"",parent:null,title:"",navigation:"",key:""},layout:"vertical",children:[(0,tZ.jsx)(ns.Form.Item,{label:o("document.translation.new-document-modal.label.language"),name:"language",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(ir.l,{onChange:e=>{m(e),p.setFieldValue("parent",null)},options:j})}),(0,tZ.jsx)(ns.Form.Item,{label:o("document.translation.new-document-modal.label.parent"),name:"parent",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,disabled:T||S,documentsAllowed:!0})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.title"),name:"title",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{onChange:e=>{let t=e.target.value;p.setFieldsValue({title:t,navigation:t,key:t})}})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.navigation"),name:"navigation",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.key"),name:"key",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{})})]}):(0,tZ.jsx)(Mq,{error:v})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.documentEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,Iz.M)("document");return t(e.target,e.onComplete)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,TX.z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,T0.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,i1.useTranslation)(),{openDocument:i}=(0,M$.$)(),{getDisplayName:n}=(0,gw.W)(),[r,{error:a}]=(0,oy.MO)(),[l,{error:o}]=(0,oy.K4)(),[s,{error:d}]=(0,oy.Tw)(),c=(0,uz.jL)(),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),[g,h]=(0,tY.useState)(!1),[y,v]=(0,tY.useState)(null),[b,x]=(0,tY.useState)(null),[j,w]=(0,tY.useState)(null),{addModal:k,removeModal:T}=(0,MW.r)(),S=(0,tY.useMemo)(()=>`link-translation-modal-${(0,rn.u)()}`,[]),C=(0,tY.useMemo)(()=>`new-translation-modal-${(0,rn.u)()}`,[]),[D,{data:I}]=(0,oy.xt)(),{data:M}=(0,oy.XE)();(0,tY.useEffect)(()=>{(0,tP.isUndefined)(a)||(0,i4.Ay)(new i4.hD(a))},[a]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(o)||(0,i4.Ay)(new i4.hD(o))},[o]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(d)||(0,i4.Ay)(new i4.hD(d))},[d]);let L=async()=>{!(0,tP.isNull)(y)&&(await l({id:Number(b.id),translationId:y.id}).unwrap(),v(null),u(!1),(0,tP.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,tP.isNull)(null==a?void 0:a.id)||(await i({config:{id:a.id}}),c((0,Do.refreshNodeChildren)({nodeId:String(r),elementType:"document"}))),p(!1),(0,tP.isNull)(j)||j()}catch{(0,i4.Ay)(new i4.$g("Error creating translation document"))}},E=()=>{v(null),u(!1),w(null),p(!1)};return(0,tY.useEffect)(()=>(f&&!(0,tP.isNull)(b)?k(S,(0,tZ.jsx)(MG,{documentId:Number(b.id),isOpen:f,onClose:E,onSelectedDocumentChange:v,onSubmit:L,selectedDocument:y})):T(S),()=>{T(S)}),[f,b,y]),(0,tY.useEffect)(()=>(m?k(C,(0,tZ.jsx)(MU,{currentDocument:b,isOpen:m,onClose:E,onSubmit:F,useInheritance:g})):T(C),()=>{T(C)}),[m,g]),{translationContextMenuItem:a=>{var l;let o=((null==I?void 0:I.translationLinks)??[]).filter(t=>t.documentId!==Number(e.id)),s=!(0,tP.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,tZ.jsx)(aa.I,{value:"link-document"}),onClick:()=>{D({id:e.id}),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,tZ.jsx)(gp.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,tZ.jsx)(aa.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,tZ.jsx)(gp.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,tZ.jsx)(aa.I,{value:"unlink-document"}),children:i})}return m.push({label:t("document.translation.new-document"),key:"new-document",hidden:!c,icon:(0,tZ.jsx)(aa.I,{value:"new-document"}),children:[{label:t("document.translation.use-inheritance"),key:"new-document-inheritance",hidden:!f,icon:(0,tZ.jsx)(aa.I,{value:"inheritance-active"}),onClick:()=>{D({id:e.id}),x(e),w(()=>a),h(!0),p(!0)}},{label:`> ${t("blank")}`,key:"new-document-blank",icon:(0,tZ.jsx)(aa.I,{value:"blank"}),onClick:()=>{D({id:e.id}),x(e),w(()=>a),h(!1),p(!0)}}]}),{label:t("document.translation.title"),key:"translation",icon:(0,tZ.jsx)(aa.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,M_.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"openPreviewInNewWindow",priority:t.priority.openPreviewInNewWindow,useMenuItem:e=>{let{openPreviewInNewWindowContextMenuItem:t}=(0,M_.j)(),i=(0,MH.o)(e.target.id,e.target.fullPath??"");return t(e.target,i)}})}});var MJ=i(44057);let MQ=()=>(0,tZ.jsx)(pC.M,{children:(0,tZ.jsxs)(S3.F,{children:[(0,tZ.jsx)(ax.s,{children:(0,tZ.jsx)(S4.Y,{slot:yH.e.document.editor.toolbar.slots.left.name})}),(0,tZ.jsx)(ax.s,{align:"center",gap:"extra-small",style:{height:"32px"},vertical:!1,children:(0,tZ.jsx)(S4.Y,{slot:yH.e.document.editor.toolbar.slots.right.name})}),(0,tZ.jsx)(S6.x,{})]})}),MZ=e=>{let{id:t}=e,{isLoading:i,isError:n,document:r,editorType:a}=(0,Mj.S)(t),l=(0,S0.P)(),{setContext:o,removeContext:s}=(0,Co.v)();return((0,tY.useEffect)(()=>()=>{s()},[]),(0,tY.useEffect)(()=>(l&&o({id:t,...!(0,tP.isNil)(r)&&{contextIdentifiers:(0,S8.mt)(r)}}),()=>{l||s()}),[l,r]),i)?(0,tZ.jsx)(uG.U,{loading:!0}):n?(0,tZ.jsx)(uG.U,{padded:!0,children:(0,tZ.jsx)(TM.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(Mx.f,{id:t,children:(0,tZ.jsx)(S7.F,{dataTestId:`document-editor-${(0,py.Gc)(t)}`,renderTabbar:(0,tZ.jsx)(S2.a,{elementEditorType:a}),renderToolbar:(0,tZ.jsx)(MQ,{})})})},MY=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(Mx.T),{document:i}=(0,Mj.S)(t),{refreshElement:n}=(0,T1.d)("document");return(0,tZ.jsx)(SN.j,{hasDataChanged:()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tZ.jsx)(lw.K,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload")},MX=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(Mx.T),{document:i}=(0,Mj.S)(t),[n,r]=(0,tY.useState)(void 0),a=(0,k8.W)(k9.r.documentEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),{shareViaNotificationContextMenuItem:l,shareViaNotificationModal:o}=SR((0,tP.isNil)(i)?void 0:{type:"document",id:i.id,fullPath:i.fullPath??void 0}),s=[...a,l],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),c=[];return c.push((0,tZ.jsx)(MY,{},"reload-button")),d.length>0&&c.push((0,tZ.jsx)(pI.m,{menu:{items:s,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tZ.jsx)(pD.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(Sl.e,{items:c,noSpacing:!0}),o]})};var M0=i(92203),M1=i(58042);let M2=()=>{var e;let t,i,{t:n}=(0,i1.useTranslation)(),{id:r}=(0,tY.useContext)(Mx.T),{document:a,removeTrackedChanges:l,publishDraft:o}=(0,Mj.S)(r),{save:s,isLoading:d,isSuccess:c,isError:f,error:u}=(0,Mk.W)(),{isAutoSaveLoading:m,runningTask:p}=(()=>{let{id:e}=(0,tY.useContext)(Mx.T),[t,i]=(0,tY.useState)();return(0,tY.useEffect)(()=>{let t=M1.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}=SQ("document",r,!1),{deleteDraft:x,isLoading:j,buttonText:w}=(0,D2.K)("document"),k=(0,uH.J)(),T=(null==a||null==(e=a.draftData)?void 0:e.isAutoSave)===!0,{validateRequiredFields:S,showValidationErrorModal:C}=(()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,M0.Z)();return{validateRequiredFields:(0,tY.useCallback)(e=>tp.kL.get(tm.K["Document/RequiredFieldsValidationService"]).validateRequiredFields(e),[]),showValidationErrorModal:i=>{let n=(0,tZ.jsxs)("div",{children:[(0,tZ.jsx)("p",{children:e("document.required-fields.validation-message")}),(0,tZ.jsx)("ul",{children:i.map(e=>(0,tZ.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===Mk.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,tY.useEffect)(()=>{(async()=>{c&&y&&(l(),await k.success(n("save-success")))})().catch(e=>{console.error(e)})},[c,y]),(0,tY.useEffect)(()=>{f&&!(0,tP.isNil)(u)?(0,i4.Ay)(new i4.hD(u)):v&&!(0,tP.isNil)(b)&&(0,i4.Ay)(new i4.hD(b))},[f,v,u,b]),(0,tY.useEffect)(()=>M1.Xs.getInstance(r).onErrorChange((e,t)=>{t===Mk.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===Mk.D.Version&&(d||h)||j;if((0,Si.o)(null==a?void 0:a.permissions,"save")){(null==a?void 0:a.published)===!0&&e.push((0,tZ.jsx)(ns.Button,{disabled:d||h||t,loading:p===Mk.D.Version&&(d||h),onClick:async()=>{await D(Mk.D.Version)},type:"default",children:n("toolbar.save-draft")},"save-draft"));let i=d||h||t;(null==a?void 0:a.published)===!1&&(0,Si.o)(null==a?void 0:a.permissions,"save")&&e.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Publish&&(d||h),onClick:async()=>{await D(Mk.D.Publish,()=>{o()})},type:"default",children:n("toolbar.save-and-publish")},"save-draft")),(0,tP.isNil)(null==a?void 0:a.draftData)||e.push((0,tZ.jsx)(pI.m,{menu:{items:[{disabled:d,label:w,key:"delete-draft",onClick:x}]},children:(0,tZ.jsx)(lw.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,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Save&&(d||h),onClick:async()=>{await D(Mk.D.Save)},type:"primary",children:n("toolbar.save")})):((null==a?void 0:a.published)===!0&&(0,Si.o)(null==a?void 0:a.permissions,"publish")&&t.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Publish&&(d||h),onClick:async()=>{await D(Mk.D.Publish)},type:"primary",children:n("toolbar.save-and-publish")})),(null==a?void 0:a.published)===!1&&(0,Si.o)(null==a?void 0:a.permissions,"save")&&t.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Save&&(d||h),onClick:async()=>{await D(Mk.D.Save)},type:"primary",children:n("toolbar.save-draft")}))),t);return(0,pp.Z)(async()=>{null!=a&&(0,Si.o)(a.permissions,"publish")&&await D(Mk.D.Publish,()=>{a.published||o()})},"publish"),(0,pp.Z)(async()=>{!(d||h||j)&&null!=a&&(0,Si.o)(a.permissions,"save")&&((null==a?void 0:a.type)==="folder"?await D(Mk.D.Save):(null==a?void 0:a.published)&&(0,Si.o)(null==a?void 0:a.permissions,"publish")?await D(Mk.D.Publish):(null==a?void 0:a.published)||await D(Mk.D.Save))},"save"),(0,tZ.jsxs)(tZ.Fragment,{children:[m&&(0,tZ.jsx)(iK.m,{title:n("auto-save.loading-tooltip"),children:(0,tZ.jsx)(sJ.t,{type:"classic"})}),!m&&T&&(0,tZ.jsx)(iK.m,{title:n("auto-save.tooltip"),children:(0,tZ.jsx)(aa.I,{value:"auto-save"})}),I.length>0&&(0,tZ.jsx)(Sl.e,{items:I,noSpacing:!0}),M.length>0&&(0,tZ.jsx)(Sl.e,{items:M,noSpacing:!0})]})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.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=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:th.eb.document.editor.container.name,component:MZ}),t.registerToSlot(th.eb.document.editor.toolbar.slots.left.name,{name:"contextMenu",priority:100,component:MX}),t.registerToSlot(th.eb.document.editor.toolbar.slots.right.name,{name:"workflowMenu",priority:100,component:SU}),t.registerToSlot(th.eb.document.editor.toolbar.slots.right.name,{name:"saveButtons",priority:200,component:M2}),tp.kL.get(tm.K.widgetManager).registerWidget(MJ.T)}});let M3=e=>{let t=e.node??C9.G,i=(0,k8.W)(k9.r.documentTree.name,{target:t,onComplete:()=>{}});return(0,tZ.jsx)(DR.W,{dataTestId:(0,py.b0)("document",t.id),items:i})};var M6=i(44395),M4=i(75023),M5=i(73488);let M7={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 M8=i(80794);let M9=()=>{let{t:e}=(0,i1.useTranslation)(),[t,{error:i}]=(0,oy.ix)(),[n,{error:r}]=(0,oy.eq)(),[a,{error:l}]=(0,oy.wS)(),{modal:o}=ij.App.useApp(),s=(0,iT.useAppDispatch)(),{isTreeActionAllowed:d}=(0,D$.H)(),{treeId:c}=(0,Ds.z)(),{openModal:f,currentDocumentId:u}=(()=>{let e=(0,tY.useContext)(M8.A);if(void 0===e)throw Error("useSiteModal must be used within a SiteModalProvider");return e})(),m=e=>{s((0,Do.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!1}))},p=e=>(0,tP.toNumber)(e.id);(0,tY.useEffect)(()=>{(0,tP.isUndefined)(i)||(0,i4.Ay)(new i4.hD(i))},[i]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(r)||(0,i4.Ay)(new i4.hD(r))},[r]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(l)||(0,i4.Ay)(new i4.hD(l))},[l]);let g=async e=>{let i=await t({id:e});(0,tP.isUndefined)(i.error)&&s((0,Do.setDocumentNodeSiteStatus)({nodeId:String(e),isSite:!1}))},h=async(e,t)=>{let i=(0,le.uI)(t.domains)?t.domains.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[],r={};(0,tP.isUndefined)(t.errorDocuments)||null===t.errorDocuments||Object.entries(t.errorDocuments).forEach(e=>{let[t,i]=e;(0,tP.isObject)(i)&&(0,tP.has)(i,"fullPath")&&(0,le.uI)(i.fullPath)&&(r[t]=i.fullPath)});let a={mainDomain:t.mainDomain??"",domains:i,errorDocument:(0,tP.isObject)(t.errorDocument)&&(0,tP.has)(t.errorDocument,"fullPath")&&(0,le.uI)(t.errorDocument.fullPath)?t.errorDocument.fullPath:"",localizedErrorDocuments:r,redirectToMainDomain:!!t.redirectToMainDomain},l=await n({id:e,updateSite:a});(0,tP.isUndefined)(l.error)&&s((0,Do.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,tP.isUndefined)(r))return void m(t);if(!(0,tP.isUndefined)(n)&&null!==n){let r={mainDomain:n.mainDomain??"",domains:(0,tP.isUndefined)(n.domains)||null===n.domains?"":n.domains.join("\n"),errorDocument:n.errorDocument??null,errorDocuments:n.localizedErrorDocuments??{},redirectToMainDomain:!!n.redirectToMainDomain};f({title:(0,tP.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,tZ.jsx)(aa.I,{value:"trash"}),hidden:"page"!==t.type||!i||!(0,yG.J)("sites")||!d(DH.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,tZ.jsx)(aa.I,{value:"home-root-folder"}),hidden:"page"!==t.type||i||!(0,yG.J)("sites")||!d(DH.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,tZ.jsx)(aa.I,{value:"edit"}),hidden:"page"!==t.type||!i||!(0,yG.J)("sites")||!d(DH.o.EditSite),onClick:()=>{var e;e=p(t),s((0,Do.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!0})),v(p(t),t.fullPath)}}}}};var Le=i(83295);class Lt extends Le.f{static getTitle(){return(0,ne.t)("jobs.document-clone-job.title")}async executeCloneRequest(){var e;let t={id:this.sourceId,parentId:this.targetId,documentCloneParameters:this.parameters??{}},i=await uz.M_.dispatch(M4.FH.endpoints.documentClone.initiate(t));return(0,tP.isUndefined)(i.error)?(null==(e=i.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(i.error)),null)}static rehydrate(e){return this.buildHandler((0,CY.f)(e))}constructor(e){super({...e,elementType:sq.W.document}),this.parameters=e.parameters}}Lt.jobNames=["studio_ee_job_clone_documents"];let Li=()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,iT.useAppDispatch)(),{treeId:i}=(0,Ds.z)(!0),{getStoredNode:n}=(0,Ml.x)("document"),{isPasteHidden:r}=(0,Mo.n)("document"),a=(0,gf.t)(),l=(0,CU.O)(),{getDisplayName:o}=(0,gw.W)(),{modal:s}=ij.App.useApp(),[d]=t1.lV.useForm(),c=(a.validLanguages??[]).map(e=>({value:e,label:`${o(e)} [${e}]`})),f=async(e,t,n)=>{if((0,tP.isNil)(e))throw Error("Source node is null");let r="string"==typeof e.id?parseInt(e.id):e.id,a="string"==typeof t.id?parseInt(t.id):t.id,o=new Lt({sourceId:r,targetId:a,parameters:n,treeId:i,nodeId:String(a)});await l.runJob(o)},u=async(e,n)=>{if((0,tP.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,Do.setNodeFetching)({treeId:i,nodeId:String(a),isFetching:!0}));try{await t(M4.FH.endpoints.documentReplaceContent.initiate({sourceId:r,targetId:a})).unwrap()}catch(e){(0,i4.Ay)(new i4.$g(e.message))}finally{t((0,Do.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,tZ.jsx)(t1.lV,{form:d,children:(0,tZ.jsx)(t1.lV.Item,{label:e("language"),name:"language",rules:[{required:!0,message:e("form.validation.required")}],children:(0,tZ.jsx)(ir.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(t,"copy"),children:[(a=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(c,"copy"),onClick:()=>{m(c,"recursive-update-references")}}),{label:e("element.tree.paste-only-contents"),key:"pasteOnlyContents",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(t,"copy"),children:[(i=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive-inheritance",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(d,"copy"),onClick:()=>{p(d,"recursive-update-references")}})]}}}};var Ln=i(40271);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.documentTree;e.registerToSlot(t.name,{name:"addFolder",priority:t.priority.addFolder,useMenuItem:e=>{let{addFolderTreeContextMenuItem:t}=(0,DO.N)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"addPage",priority:t.priority.addPage,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"page",iconValue:"document",contextMenuKey:"addPage",formType:M6.F.FULL,modalTitle:t("document.tree.context-menu.add-page"),perspectiveTreePermission:Ln.TreePermission.AddPage});return i(e.target)}}),e.registerToSlot(t.name,{name:"addSnippet",priority:t.priority.addSnippet,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"snippet",iconValue:"snippet",contextMenuKey:"addSnippet",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-snippet"),perspectiveTreePermission:Ln.TreePermission.AddSnippet});return i(e.target)}}),e.registerToSlot(t.name,{name:"addLink",priority:t.priority.addLink,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"link",iconValue:"document-link",contextMenuKey:"addLink",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-link"),hasNoChildren:!0,perspectiveTreePermission:Ln.TreePermission.AddLink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addHardlink",priority:t.priority.addHardlink,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"hardlink",iconValue:"hardlink",contextMenuKey:"addHardlink",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-hardlink"),hasNoChildren:!0,perspectiveTreePermission:Ln.TreePermission.AddHardlink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addEmail",priority:t.priority.addEmail,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"email",iconValue:"mail-02",contextMenuKey:"addEmail",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-email"),perspectiveTreePermission:Ln.TreePermission.AddEmail});return i(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,T0.M)("document",(0,T2.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,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"publish",priority:t.priority.publish,useMenuItem:e=>{let{publishTreeContextMenuItem:t}=(0,Ms.Z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishTreeContextMenuItem:t}=(0,Iz.M)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,TX.z)("document",(0,T2.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,M_.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"refreshTree",priority:t.priority.refreshTree,useMenuItem:e=>{let{refreshTreeContextMenuItem:t}=(0,Db.h)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteMenuTreeContextMenuItem:t}=Li();return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteInheritance",priority:t.priority.pasteInheritance,useMenuItem:e=>{let{pasteInheritanceTreeContextMenuItem:t}=Li();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),i=k9.r.documentTreeAdvanced,n=(0,k8.W)(i.name,e);return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tZ.jsx)(aa.I,{value:"more"}),children:n}}});let i=k9.r.documentTreeAdvanced;e.registerToSlot(i.name,{name:"convertTo",priority:i.priority.convertTo,useMenuItem:e=>{let{convertMenuTreeContextMenuItem:t}=(()=>{let{t:e}=(0,i1.useTranslation)(),[t,{isError:i,error:n}]=(0,M4.LS)(),{closeWidget:r}=(0,ps.J)(),a=(0,aq.Vl)(),l=(0,iT.useAppDispatch)(),{isTreeActionAllowed:o}=(0,D$.H)();(0,tY.useEffect)(()=>{i&&(0,i4.Ay)(new i4.hD(n))},[i,n]);let s=async(e,i)=>{let n;if(void 0!==(await t({id:e,type:i})).error)return;r((0,M5.g)("document",e));let a={type:"name",value:(null==(n=M7[i])?void 0:n.icon)??M7.page.icon};l((0,Do.updateNodeType)({nodeId:String(e),elementType:"document",newType:i,newIcon:a}))},d=(t,i)=>{let n=parseInt(t.id),r=t.type,l=M7[i];return r===i||(0,tP.isNil)(l)?{key:`convert-to-${i}`,label:"",hidden:!0}:{key:`convert-to-${i}`,label:e(l.labelKey),icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"flip-forward"}),hidden:!(o(DH.o.Convert)&&!(0,tP.isNil)(t.type)&&1!==parseInt(t.id)&&(0,tP.isNil)(t.locked)&&!(0,tP.isNil)(t.permissions)&&(0,Si.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,DK.V)("document");return t(e.target)}}),e.registerToSlot(i.name,{name:"useAsSite",priority:i.priority.useAsSite,useMenuItem:e=>{let{useAsSiteTreeContextMenuItem:t}=M9();return t(e.target)}}),e.registerToSlot(i.name,{name:"editSite",priority:i.priority.editSite,useMenuItem:e=>{let{editSiteTreeContextMenuItem:t}=M9();return t(e.target)}}),e.registerToSlot(i.name,{name:"removeSite",priority:i.priority.removeSite,useMenuItem:e=>{let{removeSiteTreeContextMenuItem:t}=M9();return t(e.target)}})}}),tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yH.e.document.tree.contextMenu.name,component:M3})}}),i(51344);let Lr=e=>{let{t}=(0,i1.useTranslation)();return(0,tZ.jsx)(Dt.s,{...e,label:t("document.document-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})},La=(p=C9.n,g=(0,tY.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tZ.jsx)(p,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DA.y9,{renderMenu:()=>(0,tZ.jsx)(M3,{node:n}),children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),h=(0,tY.forwardRef)((e,t)=>{var i;let n=e.metaData.document,{t:r}=(0,i1.useTranslation)();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tZ.jsx)(g,{...e});let a=(0,tP.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tZ.jsx)(Dn.s,{info:{icon:e.icon,title:a,type:"document",data:{...n}},children:(0,tZ.jsx)(g,{...e,ref:t})})}),y=(0,tY.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,Dc.mG)({fixedCacheKey:`DOCUMENT_ACTION_DELETE_ID_${e.id}`}),{isFetching:r,isLoading:a,isDeleting:l}=(0,Df.W)(e.id);return(0,tZ.jsx)(h,{...e,danger:i||n||l,isLoading:i||!0!==a&&r||n||l||a,ref:t})}),(0,tY.forwardRef)((e,t)=>{var i;let{move:n}=(0,Da.e)("document"),{move:r}=Mu("document"),{isSourceAllowed:a,isTargetAllowed:l}=Dd();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tZ.jsx)(y,{...e});let o=e.metaData.document;if(!l(o))return(0,tZ.jsx)(y,{...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,i4.Ay)(new i4.$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,i4.Ay)(new i4.$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,tZ.jsx)(y,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(Mp.T,{disableDndActiveIndicator:!0,hotspots:u,children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})})),Ll=e=>{let{id:t=1,showRoot:i=!0}=e,{openDocument:n}=(0,M$.$)(),{rootNode:r,isLoading:a}=(0,Dm.m)(t,i),l=(0,Dp.e)().get(yH.e.document.tree.contextMenu.name);if(i&&a)return(0,tZ.jsx)(pj.a,{padding:"small",children:(0,tZ.jsx)(Dr.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tZ.jsx)(C8.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Lr,renderNode:La,renderNodeContent:C8.Yb.renderNodeContent,renderPager:De.l,rootNode:r,showRoot:i,tooltipSlotName:yH.e.document.tree.tooltip.name})},Lo=e=>{var t,i;let{node:n}=e;return n.elementType!==sq.W.document||(null==(i=n.metaData)||null==(t=i.document)?void 0:t.navigationExclude)!==!0?null:(0,tZ.jsx)(aa.I,{"data-testid":`tree-node-navigation-exclude-icon-${n.id}`,options:{width:14,height:14},value:"not-visible-element"})},Ls=e=>{var t,i;let{node:n}=e;return n.elementType!==sq.W.document||(null==n||null==(i=n.metaData)||null==(t=i.document)?void 0:t.staticGeneratorEnabled)!==!0?null:(0,tZ.jsx)(aa.I,{"data-testid":`tree-node-static-generator-icon-${n.id}`,options:{width:14,height:14},value:"page-static"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager),t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"document-tree",component:Ll}),t.register({name:yH.e.document.tree.tooltip.name,component:DG}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"staticGeneratorIcon",component:Ls,priority:100}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"navigationExcludeIcon",component:Lo,priority:200}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"lockIcon",component:DJ,priority:300})}});let Ld=(0,i_.createStyles)(e=>{let{token:t}=e;return{container:{color:t.colorTextDescription,maxWidth:"300px",textAlign:"center"}}});function Lc(e){let{description:t}=e,{t:i}=(0,i1.useTranslation)(),{styles:n}=Ld();return(0,tZ.jsx)(uG.U,{centered:!0,children:(0,tZ.jsxs)(ax.s,{align:"center",className:n.container,gap:"small",vertical:!0,children:[(0,tZ.jsxs)(ax.s,{align:"center",gap:"mini",children:[(0,tZ.jsx)(aa.I,{value:"info-circle"}),(0,tZ.jsx)("span",{children:i("widget.missing-context.title")})]}),(0,tZ.jsx)("div",{children:t})]})})}var Lf=i(3395);function Lu(e){let{dataObject:t}=(0,a0.A)(e.id),{t:i}=(0,i1.useTranslation)();return(null==t?void 0:t.modified)!==!0?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(iK.m,{placement:"bottomLeft",title:(0,tZ.jsxs)(tZ.Fragment,{children:[i("detached-tab.draft-tooltip"),(0,tZ.jsx)(pj.a,{padding:{top:"normal"},children:i("detached-tab.draft-tooltip-addon")})]}),children:(0,tZ.jsx)(pj.a,{padding:{x:"extra-small"},children:(0,tZ.jsxs)(ax.s,{align:"flex-start",gap:"mini",children:[(0,tZ.jsx)(aa.I,{value:"draft"}),(0,tZ.jsx)(ri.E,{children:"Draft"})]})})})}function Lm(e){let{context:t,tabKey:i}=e,{getOpenedMainWidget:n}=(0,ps.J)(),{editorType:r,isLoading:a}=(0,SJ.D)(t.config.id,t.type),{t:l}=(0,i1.useTranslation)();if(a)return(0,tZ.jsx)(uG.U,{loading:!0});if(void 0===r)return(0,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")});let o=n(),s=tp.kL.get(r.tabManagerServiceId).getTab(i),d=tp.kL.get(tm.K.widgetManager);if(void 0===s||void 0===o)return(0,tZ.jsx)(Lc,{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,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")});let f=c.getContextProvider(t,s.children);return void 0===f?(0,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")}):(0,tZ.jsx)(pw.s,{renderTopBar:(0,tZ.jsxs)(pC.M,{align:"center",position:"top",size:"small",theme:"secondary",children:[(0,tZ.jsx)(Lf.W,{elementType:t.type,id:t.config.id}),"data-object"===t.type&&(0,tZ.jsx)(Lu,{id:t.config.id})]}),children:f})}var Lp=i(55490);let Lg=e=>{let{tabKey:t}=e,{context:i}=(0,Lp.Q)(),{t:n}=(0,i1.useTranslation)();return(null==i?void 0:i.type)===void 0?(0,tZ.jsx)(Lc,{description:n("widget.missing-context.description")}):(0,tZ.jsx)(Lm,{context:i,tabKey:t},i.type)},Lh=(0,i_.createStyles)(e=>{let{css:t,token:i}=e;return{table:t`
+ `}});var ME=i(85668);let MP=["language","navigation_exclude","navigation_name","navigation_title","navigation_relation","navigation_parameters","navigation_anchor","navigation_target","navigation_class","navigation_tabindex","navigation_accesskey"],MN=(e,t)=>"document"===t&&MP.includes(e),MA=e=>{let{propertiesTableTab:t,showDuplicatePropertyModal:i,showMandatoryModal:n,showDisallowedPropertyModal:r}=e,{t:a}=(0,i1.useTranslation)(),{openElement:l,mapToElementType:o}=(0,no.K)(),{styles:s}=MF(),{id:d,elementType:c}=(0,i3.J)(),{element:f,properties:u,updateProperty:m,removeProperty:p,setModifiedCells:g}=(0,SJ.D)(d,c),h=void 0!==u,y=(0,Si.o)(null==f?void 0:f.permissions,"publish")||(0,Si.o)(null==f?void 0:f.permissions,"save"),{isLoading:v}=(0,ME.B)(),[b,x]=(0,tY.useState)([]),[j,w]=(0,tY.useState)([]),k="properties",T=(null==f?void 0:f.modifiedCells[k])??[];(0,tY.useEffect)(()=>{if(h){let e=e=>e.filter(e=>!MN(e.key,c));x(e(u.filter(e=>!e.inherited))),w(e(u.filter(e=>e.inherited)))}},[u,c]),(0,tY.useEffect)(()=>{T.length>0&&(null==f?void 0:f.changes.properties)===void 0&&g(k,[])},[f,T]);let S=(0,c6.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,tZ.jsxs)("div",{className:"properties-table--actions-column",children:[["document","asset","object"].includes(t.row.original.type)&&null!==t.row.original.data&&(0,tZ.jsx)(lw.K,{icon:{value:"open-folder"},onClick:async()=>{let e=o(t.row.original.type);(0,tP.isUndefined)(e)||await l({type:e,id:t.row.original.data.id})},type:"link"}),"own"===e&&(0,tZ.jsx)(lw.K,{icon:{value:"trash"},onClick:()=>{p(t.row.original)},type:"link"})]})})],D=[...C("own")],I=[...C("inherited")];return(0,tZ.jsx)("div",{className:s.table,children:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(uj.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&&MN(l,c)?r():St(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,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pj.a,{padding:{y:"small"},children:(0,tZ.jsx)(ri.E,{strong:!0,children:a("properties.inherited.properties")})}),(0,tZ.jsx)(uj.x,{autoWidth:!0,columns:I,data:j,resizable:!0})]})]})})},MR=()=>{var e,t,i;let{t:n}=(0,i1.useTranslation)(),[r,a]=(0,tY.useState)("own"),[l,o]=(0,tY.useState)(!1),{id:s,elementType:d}=(0,i3.J)(),{element:c,addProperty:f,properties:u}=(0,SJ.D)(s,d),m=(0,Si.o)(null==c?void 0:c.permissions,"publish")||(0,Si.o)(null==c?void 0:c.permissions,"save"),{showModal:p,closeModal:g,renderModal:h}=(0,Sa.hS)({type:"error"}),{showModal:y,closeModal:v,renderModal:b}=(0,Sa.hS)({type:"error"}),{showModal:x,closeModal:j,renderModal:w}=(0,Sa.hS)({type:"error"}),k=(0,tY.useRef)(""),T=(0,tY.useRef)(null),S=(0,tY.useRef)(""),{data:C,isLoading:D}=(0,ML.VC)({elementType:d});return(0,tY.useEffect)(()=>{if(l){var e;null==(e=T.current)||e.focus()}else S.current="",k.current=""},[l]),(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:n("properties.label"),children:(0,tZ.jsxs)(aZ.$,{size:"small",children:[(0,tZ.jsx)(aJ.$,{onChange:a,options:[{label:n("properties.editable-properties"),value:"own"},{label:n("properties.all-properties"),value:"all"}]}),m&&(0,tZ.jsxs)("div",{className:"pimcore-properties-toolbar__predefined-properties",children:[(0,tZ.jsx)(h,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{onClick:g,type:"primary",children:n("button.ok")})}),title:n("properties.property-already-exist.title"),children:n("properties.property-already-exist.error")}),(0,tZ.jsx)(b,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{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,tZ.jsx)(w,{footer:(0,tZ.jsx)(gy.j,{children:(0,tZ.jsx)(aW.$,{onClick:j,type:"primary",children:n("button.ok")})}),title:n("properties.property-key-disallowed.title"),children:n("properties.property-key-disallowed.error")}),l&&(0,tZ.jsxs)(aZ.$,{size:"extra-small",children:[(0,tZ.jsx)(aW.$,{onClick:()=>{o(!1)},type:"link",children:n("properties.add-custom-property.cancel")}),(0,tZ.jsx)(ij.Input,{onChange:function(e){k.current=e.target.value},placeholder:n("properties.add-custom-property.key"),ref:T}),(0,tZ.jsx)(ir.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,tZ.jsx)(pc.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?MN(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,rn.u)()}):y()},children:n("properties.add-custom-property.create")})]}),!l&&(0,tZ.jsxs)(oR.B,{size:"mini",children:[(0,tZ.jsx)(ir.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||(MN(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,rn.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,tZ.jsx)(pc.J,{icon:{value:"new-something"},onClick:()=>{o(!0)},children:n("properties.new-custom-property")},n("properties.new-custom-property"))]})]})]})}),(0,tZ.jsx)(MA,{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 MV=i(59208),Mz=i(42984);let MB={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,tZ.jsx)(()=>{let{id:e}=(0,tY.useContext)(Mx.T),{document:t}=(0,Mj.S)(e),i=(0,MV.h)(null==t?void 0:t.type).getButtons(),n=(0,Mz.S)();return(0,tZ.jsx)(pw.s,{renderSidebar:n.length>0?(0,tZ.jsx)(Tc.B,{buttons:i,entries:n,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(MR,{})})},{}),icon:(0,tZ.jsx)(aa.I,{value:"settings"}),isDetachable:!0};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/FolderTabManager"]);e.register(MB),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD),tp.kL.get(tm.K["Document/Editor/Sidebar/FolderSidebarManager"]).registerEntry(Mv.Ds)}});let MO={key:"edit",label:"edit.label",children:(0,tZ.jsx)(()=>{let{t:e}=(0,i1.useTranslation)(),[t]=ij.Form.useForm(),{id:i}=(0,tY.useContext)(Mx.T),{document:n,updateSettingsData:r}=(0,Mj.S)(i),a=(0,Si.o)(null==n?void 0:n.permissions,"save")||(0,Si.o)(null==n?void 0:n.permissions,"publish"),l=(0,MV.h)(null==n?void 0:n.type).getButtons(),o=(0,Mz.S)(),s=tX().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{},t=null;return(0,tP.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,tZ.jsx)(pw.s,{renderSidebar:o.length>0?(0,tZ.jsx)(Tc.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(ns.Content,{padded:!0,children:(0,tZ.jsxs)(ij.Form,{form:t,initialValues:s,layout:"vertical",children:[(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.source"),name:"sourceDocument",children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,disabled:!a,documentsAllowed:!0,onChange:e=>{if(!a)return;let t={};(0,tP.isNull)(e)?(t.sourceId=null,t.sourcePath=null):!0!==e.textInput&&(t.sourceId=e.id,t.sourcePath=e.fullPath??""),r(t)},showOpenForTextInput:!0})}),(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.properties-from-source"),name:"propertiesFromSource",valuePropName:"checked",children:(0,tZ.jsx)(ij.Switch,{disabled:!a,onChange:e=>{a&&r({propertiesFromSource:e})}})}),(0,tZ.jsx)(ij.Form.Item,{label:e("document.hardlink.children-from-source"),name:"childrenFromSource",valuePropName:"checked",children:(0,tZ.jsx)(ij.Switch,{disabled:!a,onChange:e=>{a&&r({childrenFromSource:e})}})})]})})})},{}),icon:(0,tZ.jsx)(aa.I,{value:"edit"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/HardlinkTabManager"]);e.register(MO),e.register(k3.Aj),e.register(k3.QZ),e.register(k3.mI),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD),tp.kL.get(tm.K["Document/Editor/Sidebar/HardlinkSidebarManager"]).registerEntry(Mv.Ds)}});let MK={key:"edit",label:"edit.label",children:(0,tZ.jsx)(()=>{let{t:e}=(0,i1.useTranslation)(),[t]=ij.Form.useForm(),{id:i}=(0,tY.useContext)(Mx.T),{document:n,updateSettingsData:r}=(0,Mj.S)(i),a=(0,Si.o)(null==n?void 0:n.permissions,"save")||(0,Si.o)(null==n?void 0:n.permissions,"publish"),l=(0,MV.h)(null==n?void 0:n.type).getButtons(),o=(0,Mz.S)(),s=tX().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{};return"direct"===e.linkType&&(0,le.uI)(e.direct)?{linkTarget:{textInput:!0,fullPath:e.direct}}:e.internal&&!(0,tP.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,tZ.jsx)(pw.s,{renderSidebar:o.length>0?(0,tZ.jsx)(Tc.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tZ.jsx)(ns.Content,{padded:!0,children:(0,tZ.jsx)(ij.Form,{form:t,initialValues:s,layout:"vertical",children:(0,tZ.jsx)(ij.Form.Item,{label:e("document.link.target"),name:"linkTarget",children:(0,tZ.jsx)(f4.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,tZ.jsx)(aa.I,{value:"edit"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/LinkTabManager"]);e.register(MK),e.register(k3.Aj),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/LinkSidebarManager"]);t.registerEntry(Mv.Ds),t.registerEntry(Mv.ck)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/PageTabManager"]);e.register(My.to),e.register(My.tr),e.register(k3.Aj),e.register(My.qW),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/PageSidebarManager"]);t.registerEntry(Mv.eY),t.registerEntry(Mv.Ds),t.registerEntry(Mv.wR),t.registerEntry(Mv.ck)}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["Document/Editor/SnippetTabManager"]);e.register(My.to),e.register(k3.Aj),e.register(My.qW),e.register(k3.mI),e.register(k3.QZ),e.register(k3.MV),e.register(k3.OM),e.register(k3.MD);let t=tp.kL.get(tm.K["Document/Editor/Sidebar/SnippetSidebarManager"]);t.registerEntry(Mv.eY),t.registerEntry(Mv.Ds),t.registerEntry(Mv.wR)}});var M_=i(68851),MH=i(80707),M$=i(75091),MW=i(8849);let Mq=e=>{let{error:t}=e,{t:i}=(0,i1.useTranslation)(),n=new i4.hD(t).getContent(),r=(0,tP.isString)(n)?n:i(`error.${n.errorKey}`);return(0,tZ.jsx)(TM.F,{message:r,type:"error"})},MG=e=>{var t;let{isOpen:i,documentId:n,selectedDocument:r,onSelectedDocumentChange:a,onClose:l,onSubmit:o}=e,{t:s}=(0,i1.useTranslation)(),{getDisplayName:d}=(0,gw.W)(),[c,f]=(0,tY.useState)(!1),[u,{isFetching:m,error:p}]=(0,oy.xt)();(0,tY.useEffect)(()=>{i&&0!==n&&u({id:n})},[i,n]);let{data:g,isLoading:h,error:y}=(0,ML.vi)({elementType:"document",id:(null==r?void 0:r.id)??0},{skip:(0,tP.isNull)(r)});(0,tY.useEffect)(()=>{(0,tP.isUndefined)(y)||(0,i4.Ay)(new i4.hD(y))},[y]);let v=null==g||null==(t=g.items)?void 0:t.find(e=>"language"===e.key),b=(0,tP.isString)(null==v?void 0:v.data)?v.data:"",x=async()=>{f(!0);try{await o()}finally{f(!1)}};return(0,tZ.jsx)(Cy.m,{footer:(0,tZ.jsxs)(gy.j,{children:[(0,tZ.jsx)(aW.$,{onClick:l,type:"default",children:s("cancel")}),(0,tZ.jsx)(aW.$,{disabled:(0,tP.isNull)(r)||m||!(0,tP.isUndefined)(p),loading:c,onClick:x,type:"primary",children:s("apply")})]}),onCancel:l,open:i,size:"L",title:s("document.translation.link-existing-document"),children:m?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tP.isUndefined)(p)?(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(ns.Form.Item,{label:s("document.translation.title"),layout:"vertical",children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,documentsAllowed:!0,onChange:a,value:r})}),!(0,tP.isNull)(r)&&(0,tZ.jsx)(re.L.Panel,{border:!0,theme:"border-highlight",title:s("language"),children:h?(0,tZ.jsx)(sJ.t,{size:"small"}):(0,le.uI)(b)?(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",children:[(0,tZ.jsx)(gp.i,{value:b}),(0,tZ.jsxs)("span",{children:[d(b)," [",b,"]"]})]}):(0,tZ.jsx)(ri.E,{italic:!0,type:"secondary",children:s("no-data-available")})})]}):(0,tZ.jsx)(Mq,{error:p})})},MU=e=>{var t;let{isOpen:i,useInheritance:n,onClose:r,onSubmit:a,currentDocument:l}=e,{t:o}=(0,i1.useTranslation)(),{getDisplayName:s}=(0,gw.W)(),d=(0,gf.t)(),[c,f]=(0,tY.useState)(!1),[u,m]=(0,tY.useState)(""),[p]=ns.Form.useForm(),g=(0,tP.isNil)(null==l?void 0:l.id)?0:Number(l.id),[h,{isFetching:y,error:v}]=(0,oy.xt)();(0,tY.useEffect)(()=>{i&&0!==g&&h({id:g})},[i,g]);let b=!(0,tP.isNil)(l)&&(0,tP.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,x=(0,tP.isString)(null==b?void 0:b.data)?b.data:"",j=(d.validLanguages??[]).filter(e=>e!==x).map(e=>({value:e,label:`${s(e)} [${e}]`})),{data:w,error:k,isLoading:T,isFetching:S}=(0,oy.L0)({id:g,language:u},{skip:""===u||0===g});(0,tY.useEffect)(()=>{(0,tP.isNil)(k)?(0,tP.isNil)(null==w?void 0:w.fullPath)||(0,tP.isNil)(null==w?void 0:w.id)||p.setFieldValue("parent",{id:w.id,type:"document",fullPath:w.fullPath}):p.setFieldValue("parent",null)},[w,k,p]);let C=async()=>{f(!0);try{let e=await p.validateFields();await a(e)}finally{f(!1)}},D=o(n?"document.translation.new-document-with-inheritance.modal-title":"document.translation.new-document-blank.modal-title");return(0,tZ.jsx)(Cy.m,{footer:(0,tZ.jsxs)(gy.j,{children:[(0,tZ.jsx)(aW.$,{onClick:r,type:"default",children:o("cancel")}),(0,tZ.jsx)(aW.$,{disabled:y||!(0,tP.isUndefined)(v),loading:c,onClick:C,type:"primary",children:o("document.translation.new-document-modal.create")})]}),onCancel:r,open:i,size:"L",title:D,children:y?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tP.isUndefined)(v)?(0,tZ.jsxs)(ns.Form,{form:p,initialValues:{language:"",parent:null,title:"",navigation:"",key:""},layout:"vertical",children:[(0,tZ.jsx)(ns.Form.Item,{label:o("document.translation.new-document-modal.label.language"),name:"language",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(ir.l,{onChange:e=>{m(e),p.setFieldValue("parent",null)},options:j})}),(0,tZ.jsx)(ns.Form.Item,{label:o("document.translation.new-document-modal.label.parent"),name:"parent",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(f4.P,{allowToClearRelation:!0,disabled:T||S,documentsAllowed:!0})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.title"),name:"title",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{onChange:e=>{let t=e.target.value;p.setFieldsValue({title:t,navigation:t,key:t})}})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.navigation"),name:"navigation",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{})}),(0,tZ.jsx)(ns.Form.Item,{label:o("add-document-form.label.key"),name:"key",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tZ.jsx)(aH.p,{})})]}):(0,tZ.jsx)(Mq,{error:v})})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.documentEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,Iz.M)("document");return t(e.target,e.onComplete)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,TX.z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,T0.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,i1.useTranslation)(),{openDocument:i}=(0,M$.$)(),{getDisplayName:n}=(0,gw.W)(),[r,{error:a}]=(0,oy.MO)(),[l,{error:o}]=(0,oy.K4)(),[s,{error:d}]=(0,oy.Tw)(),c=(0,uz.jL)(),[f,u]=(0,tY.useState)(!1),[m,p]=(0,tY.useState)(!1),[g,h]=(0,tY.useState)(!1),[y,v]=(0,tY.useState)(null),[b,x]=(0,tY.useState)(null),[j,w]=(0,tY.useState)(null),{addModal:k,removeModal:T}=(0,MW.r)(),S=(0,tY.useMemo)(()=>`link-translation-modal-${(0,rn.u)()}`,[]),C=(0,tY.useMemo)(()=>`new-translation-modal-${(0,rn.u)()}`,[]),[D,{data:I}]=(0,oy.xt)(),{data:M}=(0,oy.XE)();(0,tY.useEffect)(()=>{(0,tP.isUndefined)(a)||(0,i4.Ay)(new i4.hD(a))},[a]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(o)||(0,i4.Ay)(new i4.hD(o))},[o]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(d)||(0,i4.Ay)(new i4.hD(d))},[d]);let L=async()=>{!(0,tP.isNull)(y)&&(await l({id:Number(b.id),translationId:y.id}).unwrap(),v(null),u(!1),(0,tP.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,tP.isNull)(null==a?void 0:a.id)||(await i({config:{id:a.id}}),c((0,Do.refreshNodeChildren)({nodeId:String(r),elementType:"document"}))),p(!1),(0,tP.isNull)(j)||j()}catch{(0,i4.Ay)(new i4.$g("Error creating translation document"))}},E=()=>{v(null),u(!1),w(null),p(!1)};return(0,tY.useEffect)(()=>(f&&!(0,tP.isNull)(b)?k(S,(0,tZ.jsx)(MG,{documentId:Number(b.id),isOpen:f,onClose:E,onSelectedDocumentChange:v,onSubmit:L,selectedDocument:y})):T(S),()=>{T(S)}),[f,b,y]),(0,tY.useEffect)(()=>(m?k(C,(0,tZ.jsx)(MU,{currentDocument:b,isOpen:m,onClose:E,onSubmit:F,useInheritance:g})):T(C),()=>{T(C)}),[m,g]),{translationContextMenuItem:a=>{var l;let o=((null==I?void 0:I.translationLinks)??[]).filter(t=>t.documentId!==Number(e.id)),s=!(0,tP.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,tZ.jsx)(aa.I,{value:"link-document"}),onClick:()=>{D({id:e.id}),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,tZ.jsx)(gp.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,tZ.jsx)(aa.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,tZ.jsx)(gp.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,tZ.jsx)(aa.I,{value:"unlink-document"}),children:i})}return m.push({label:t("document.translation.new-document"),key:"new-document",hidden:!c,icon:(0,tZ.jsx)(aa.I,{value:"new-document"}),children:[{label:t("document.translation.use-inheritance"),key:"new-document-inheritance",hidden:!f,icon:(0,tZ.jsx)(aa.I,{value:"inheritance-active"}),onClick:()=>{D({id:e.id}),x(e),w(()=>a),h(!0),p(!0)}},{label:`> ${t("blank")}`,key:"new-document-blank",icon:(0,tZ.jsx)(aa.I,{value:"blank"}),onClick:()=>{D({id:e.id}),x(e),w(()=>a),h(!1),p(!0)}}]}),{label:t("document.translation.title"),key:"translation",icon:(0,tZ.jsx)(aa.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,M_.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"openPreviewInNewWindow",priority:t.priority.openPreviewInNewWindow,useMenuItem:e=>{let{openPreviewInNewWindowContextMenuItem:t}=(0,M_.j)(),i=(0,MH.o)(e.target.id,e.target.fullPath??"");return t(e.target,i)}})}});var MJ=i(44057);let MQ=()=>(0,tZ.jsx)(pC.M,{children:(0,tZ.jsxs)(S3.F,{children:[(0,tZ.jsx)(ax.s,{children:(0,tZ.jsx)(S4.Y,{slot:yH.e.document.editor.toolbar.slots.left.name})}),(0,tZ.jsx)(ax.s,{align:"center",gap:"extra-small",style:{height:"32px"},vertical:!1,children:(0,tZ.jsx)(S4.Y,{slot:yH.e.document.editor.toolbar.slots.right.name})}),(0,tZ.jsx)(S6.x,{})]})}),MZ=e=>{let{id:t}=e,{isLoading:i,isError:n,document:r,editorType:a}=(0,Mj.S)(t),l=(0,S0.P)(),{setContext:o,removeContext:s}=(0,Co.v)();return((0,tY.useEffect)(()=>()=>{s()},[]),(0,tY.useEffect)(()=>(l&&o({id:t,...!(0,tP.isNil)(r)&&{contextIdentifiers:(0,S8.mt)(r)}}),()=>{l||s()}),[l,r]),i)?(0,tZ.jsx)(uG.U,{loading:!0}):n?(0,tZ.jsx)(uG.U,{padded:!0,children:(0,tZ.jsx)(TM.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(Mx.f,{id:t,children:(0,tZ.jsx)(S7.F,{dataTestId:`document-editor-${(0,py.Gc)(t)}`,renderTabbar:(0,tZ.jsx)(S2.a,{elementEditorType:a}),renderToolbar:(0,tZ.jsx)(MQ,{})})})},MY=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(Mx.T),{document:i}=(0,Mj.S)(t),{refreshElement:n}=(0,T1.d)("document");return(0,tZ.jsx)(SN.j,{hasDataChanged:()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tZ.jsx)(lw.K,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload")},MX=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t}=(0,tY.useContext)(Mx.T),{document:i}=(0,Mj.S)(t),[n,r]=(0,tY.useState)(void 0),a=(0,k8.W)(k9.r.documentEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),{shareViaNotificationContextMenuItem:l,shareViaNotificationModal:o}=SR((0,tP.isNil)(i)?void 0:{type:"document",id:i.id,fullPath:i.fullPath??void 0}),s=[...a,l],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),c=[];return c.push((0,tZ.jsx)(MY,{},"reload-button")),d.length>0&&c.push((0,tZ.jsx)(pI.m,{menu:{items:s,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tZ.jsx)(pD.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(Sl.e,{items:c,noSpacing:!0}),o]})};var M0=i(92203),M1=i(58042);let M2=()=>{var e;let t,i,{t:n}=(0,i1.useTranslation)(),{id:r}=(0,tY.useContext)(Mx.T),{document:a,removeTrackedChanges:l,publishDraft:o}=(0,Mj.S)(r),{save:s,isLoading:d,isSuccess:c,isError:f,error:u}=(0,Mk.W)(),{isAutoSaveLoading:m,runningTask:p}=(()=>{let{id:e}=(0,tY.useContext)(Mx.T),[t,i]=(0,tY.useState)();return(0,tY.useEffect)(()=>{let t=M1.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}=SQ("document",r,!1),{deleteDraft:x,isLoading:j,buttonText:w}=(0,D2.K)("document"),k=(0,uH.J)(),T=(null==a||null==(e=a.draftData)?void 0:e.isAutoSave)===!0,{validateRequiredFields:S,showValidationErrorModal:C}=(()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,M0.Z)();return{validateRequiredFields:(0,tY.useCallback)(e=>tp.kL.get(tm.K["Document/RequiredFieldsValidationService"]).validateRequiredFields(e),[]),showValidationErrorModal:i=>{let n=(0,tZ.jsxs)("div",{children:[(0,tZ.jsx)("p",{children:e("document.required-fields.validation-message")}),(0,tZ.jsx)("ul",{children:i.map(e=>(0,tZ.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===Mk.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,tY.useEffect)(()=>{(async()=>{c&&y&&(l(),await k.success(n("save-success")))})().catch(e=>{console.error(e)})},[c,y]),(0,tY.useEffect)(()=>{f&&!(0,tP.isNil)(u)?(0,i4.Ay)(new i4.hD(u)):v&&!(0,tP.isNil)(b)&&(0,i4.Ay)(new i4.hD(b))},[f,v,u,b]),(0,tY.useEffect)(()=>M1.Xs.getInstance(r).onErrorChange((e,t)=>{t===Mk.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===Mk.D.Version&&(d||h)||j;if((0,Si.o)(null==a?void 0:a.permissions,"save")){(null==a?void 0:a.published)===!0&&e.push((0,tZ.jsx)(ns.Button,{disabled:d||h||t,loading:p===Mk.D.Version&&(d||h),onClick:async()=>{await D(Mk.D.Version)},type:"default",children:n("toolbar.save-draft")},"save-draft"));let i=d||h||t;(null==a?void 0:a.published)===!1&&(0,Si.o)(null==a?void 0:a.permissions,"save")&&e.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Publish&&(d||h),onClick:async()=>{await D(Mk.D.Publish,()=>{o()})},type:"default",children:n("toolbar.save-and-publish")},"save-draft")),(0,tP.isNil)(null==a?void 0:a.draftData)||e.push((0,tZ.jsx)(pI.m,{menu:{items:[{disabled:d,label:w,key:"delete-draft",onClick:x}]},children:(0,tZ.jsx)(lw.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,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Save&&(d||h),onClick:async()=>{await D(Mk.D.Save)},type:"primary",children:n("toolbar.save")})):((null==a?void 0:a.published)===!0&&(0,Si.o)(null==a?void 0:a.permissions,"publish")&&t.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Publish&&(d||h),onClick:async()=>{await D(Mk.D.Publish)},type:"primary",children:n("toolbar.save-and-publish")})),(null==a?void 0:a.published)===!1&&(0,Si.o)(null==a?void 0:a.permissions,"save")&&t.push((0,tZ.jsx)(ns.Button,{disabled:i,loading:p===Mk.D.Save&&(d||h),onClick:async()=>{await D(Mk.D.Save)},type:"primary",children:n("toolbar.save-draft")}))),t);return(0,pp.Z)(async()=>{null!=a&&(0,Si.o)(a.permissions,"publish")&&await D(Mk.D.Publish,()=>{a.published||o()})},"publish"),(0,pp.Z)(async()=>{!(d||h||j)&&null!=a&&(0,Si.o)(a.permissions,"save")&&((null==a?void 0:a.type)==="folder"?await D(Mk.D.Save):(null==a?void 0:a.published)&&(0,Si.o)(null==a?void 0:a.permissions,"publish")?await D(Mk.D.Publish):(null==a?void 0:a.published)||await D(Mk.D.Save))},"save"),(0,tZ.jsxs)(tZ.Fragment,{children:[m&&(0,tZ.jsx)(iK.m,{title:n("auto-save.loading-tooltip"),children:(0,tZ.jsx)(sJ.t,{type:"classic"})}),!m&&T&&(0,tZ.jsx)(iK.m,{title:n("auto-save.tooltip"),children:(0,tZ.jsx)(aa.I,{value:"auto-save"})}),I.length>0&&(0,tZ.jsx)(Sl.e,{items:I,noSpacing:!0}),M.length>0&&(0,tZ.jsx)(Sl.e,{items:M,noSpacing:!0})]})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.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=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:th.eb.document.editor.container.name,component:MZ}),t.registerToSlot(th.eb.document.editor.toolbar.slots.left.name,{name:"contextMenu",priority:100,component:MX}),t.registerToSlot(th.eb.document.editor.toolbar.slots.right.name,{name:"workflowMenu",priority:100,component:SU}),t.registerToSlot(th.eb.document.editor.toolbar.slots.right.name,{name:"saveButtons",priority:200,component:M2}),tp.kL.get(tm.K.widgetManager).registerWidget(MJ.T)}});let M3=e=>{let t=e.node??C9.G,i=(0,k8.W)(k9.r.documentTree.name,{target:t,onComplete:()=>{}});return(0,tZ.jsx)(DR.W,{dataTestId:(0,py.b0)("document",t.id),items:i})};var M6=i(44395),M4=i(75023),M5=i(73488);let M7={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 M8=i(80794);let M9=()=>{let{t:e}=(0,i1.useTranslation)(),[t,{error:i}]=(0,oy.ix)(),[n,{error:r}]=(0,oy.eq)(),[a,{error:l}]=(0,oy.wS)(),{modal:o}=ij.App.useApp(),s=(0,iT.useAppDispatch)(),{isTreeActionAllowed:d}=(0,D$.H)(),{treeId:c}=(0,Ds.z)(),{openModal:f,currentDocumentId:u}=(()=>{let e=(0,tY.useContext)(M8.A);if(void 0===e)throw Error("useSiteModal must be used within a SiteModalProvider");return e})(),m=e=>{s((0,Do.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!1}))},p=e=>(0,tP.toNumber)(e.id);(0,tY.useEffect)(()=>{(0,tP.isUndefined)(i)||(0,i4.Ay)(new i4.hD(i))},[i]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(r)||(0,i4.Ay)(new i4.hD(r))},[r]),(0,tY.useEffect)(()=>{(0,tP.isUndefined)(l)||(0,i4.Ay)(new i4.hD(l))},[l]);let g=async e=>{let i=await t({id:e});(0,tP.isUndefined)(i.error)&&s((0,Do.setDocumentNodeSiteStatus)({nodeId:String(e),isSite:!1}))},h=async(e,t)=>{let i=(0,le.uI)(t.domains)?t.domains.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[],r={};(0,tP.isUndefined)(t.errorDocuments)||null===t.errorDocuments||Object.entries(t.errorDocuments).forEach(e=>{let[t,i]=e;(0,tP.isObject)(i)&&(0,tP.has)(i,"fullPath")&&(0,le.uI)(i.fullPath)&&(r[t]=i.fullPath)});let a={mainDomain:t.mainDomain??"",domains:i,errorDocument:(0,tP.isObject)(t.errorDocument)&&(0,tP.has)(t.errorDocument,"fullPath")&&(0,le.uI)(t.errorDocument.fullPath)?t.errorDocument.fullPath:"",localizedErrorDocuments:r,redirectToMainDomain:!!t.redirectToMainDomain},l=await n({id:e,updateSite:a});(0,tP.isUndefined)(l.error)&&s((0,Do.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,tP.isUndefined)(r))return void m(t);if(!(0,tP.isUndefined)(n)&&null!==n){let r={mainDomain:n.mainDomain??"",domains:(0,tP.isUndefined)(n.domains)||null===n.domains?"":n.domains.join("\n"),errorDocument:n.errorDocument??null,errorDocuments:n.localizedErrorDocuments??{},redirectToMainDomain:!!n.redirectToMainDomain};f({title:(0,tP.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,tZ.jsx)(aa.I,{value:"trash"}),hidden:"page"!==t.type||!i||!(0,yG.J)("sites")||!d(DH.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,tZ.jsx)(aa.I,{value:"home-root-folder"}),hidden:"page"!==t.type||i||!(0,yG.J)("sites")||!d(DH.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,tZ.jsx)(aa.I,{value:"edit"}),hidden:"page"!==t.type||!i||!(0,yG.J)("sites")||!d(DH.o.EditSite),onClick:()=>{var e;e=p(t),s((0,Do.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!0})),v(p(t),t.fullPath)}}}}};var Le=i(83295);class Lt extends Le.f{static getTitle(){return(0,ne.t)("jobs.document-clone-job.title")}async executeCloneRequest(){var e;let t={id:this.sourceId,parentId:this.targetId,documentCloneParameters:this.parameters??{}},i=await uz.M_.dispatch(M4.FH.endpoints.documentClone.initiate(t));return(0,tP.isUndefined)(i.error)?(null==(e=i.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(i.error)),null)}static rehydrate(e){return this.buildHandler((0,CX.f)(e))}constructor(e){super({...e,elementType:sq.W.document}),this.parameters=e.parameters}}Lt.jobNames=["studio_ee_job_clone_documents"];let Li=()=>{let{t:e}=(0,i1.useTranslation)(),t=(0,iT.useAppDispatch)(),{treeId:i}=(0,Ds.z)(!0),{getStoredNode:n}=(0,Ml.x)("document"),{isPasteHidden:r}=(0,Mo.n)("document"),a=(0,gf.t)(),l=(0,CJ.O)(),{getDisplayName:o}=(0,gw.W)(),{modal:s}=ij.App.useApp(),[d]=t1.lV.useForm(),c=(a.validLanguages??[]).map(e=>({value:e,label:`${o(e)} [${e}]`})),f=async(e,t,n)=>{if((0,tP.isNil)(e))throw Error("Source node is null");let r="string"==typeof e.id?parseInt(e.id):e.id,a="string"==typeof t.id?parseInt(t.id):t.id,o=new Lt({sourceId:r,targetId:a,parameters:n,treeId:i,nodeId:String(a)});await l.runJob(o)},u=async(e,n)=>{if((0,tP.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,Do.setNodeFetching)({treeId:i,nodeId:String(a),isFetching:!0}));try{await t(M4.FH.endpoints.documentReplaceContent.initiate({sourceId:r,targetId:a})).unwrap()}catch(e){(0,i4.Ay)(new i4.$g(e.message))}finally{t((0,Do.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,tZ.jsx)(t1.lV,{form:d,children:(0,tZ.jsx)(t1.lV.Item,{label:e("language"),name:"language",rules:[{required:!0,message:e("form.validation.required")}],children:(0,tZ.jsx)(ir.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(t,"copy"),children:[(a=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(c,"copy"),onClick:()=>{m(c,"recursive-update-references")}}),{label:e("element.tree.paste-only-contents"),key:"pasteOnlyContents",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(t,"copy"),children:[(i=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive-inheritance",icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"paste"}),hidden:r(d,"copy"),onClick:()=>{p(d,"recursive-update-references")}})]}}}};var Ln=i(40271);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=k9.r.documentTree;e.registerToSlot(t.name,{name:"addFolder",priority:t.priority.addFolder,useMenuItem:e=>{let{addFolderTreeContextMenuItem:t}=(0,DO.N)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"addPage",priority:t.priority.addPage,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"page",iconValue:"document",contextMenuKey:"addPage",formType:M6.F.FULL,modalTitle:t("document.tree.context-menu.add-page"),perspectiveTreePermission:Ln.TreePermission.AddPage});return i(e.target)}}),e.registerToSlot(t.name,{name:"addSnippet",priority:t.priority.addSnippet,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"snippet",iconValue:"snippet",contextMenuKey:"addSnippet",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-snippet"),perspectiveTreePermission:Ln.TreePermission.AddSnippet});return i(e.target)}}),e.registerToSlot(t.name,{name:"addLink",priority:t.priority.addLink,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"link",iconValue:"document-link",contextMenuKey:"addLink",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-link"),hasNoChildren:!0,perspectiveTreePermission:Ln.TreePermission.AddLink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addHardlink",priority:t.priority.addHardlink,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"hardlink",iconValue:"hardlink",contextMenuKey:"addHardlink",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-hardlink"),hasNoChildren:!0,perspectiveTreePermission:Ln.TreePermission.AddHardlink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addEmail",priority:t.priority.addEmail,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,M6.a)({type:"email",iconValue:"mail-02",contextMenuKey:"addEmail",formType:M6.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-email"),perspectiveTreePermission:Ln.TreePermission.AddEmail});return i(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,T0.M)("document",(0,T2.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,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Da.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"publish",priority:t.priority.publish,useMenuItem:e=>{let{publishTreeContextMenuItem:t}=(0,Ms.Z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishTreeContextMenuItem:t}=(0,Iz.M)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,TX.z)("document",(0,T2.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,M_.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"refreshTree",priority:t.priority.refreshTree,useMenuItem:e=>{let{refreshTreeContextMenuItem:t}=(0,Db.h)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteMenuTreeContextMenuItem:t}=Li();return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteInheritance",priority:t.priority.pasteInheritance,useMenuItem:e=>{let{pasteInheritanceTreeContextMenuItem:t}=Li();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,i1.useTranslation)(),i=k9.r.documentTreeAdvanced,n=(0,k8.W)(i.name,e);return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tZ.jsx)(aa.I,{value:"more"}),children:n}}});let i=k9.r.documentTreeAdvanced;e.registerToSlot(i.name,{name:"convertTo",priority:i.priority.convertTo,useMenuItem:e=>{let{convertMenuTreeContextMenuItem:t}=(()=>{let{t:e}=(0,i1.useTranslation)(),[t,{isError:i,error:n}]=(0,M4.LS)(),{closeWidget:r}=(0,ps.J)(),a=(0,aq.Vl)(),l=(0,iT.useAppDispatch)(),{isTreeActionAllowed:o}=(0,D$.H)();(0,tY.useEffect)(()=>{i&&(0,i4.Ay)(new i4.hD(n))},[i,n]);let s=async(e,i)=>{let n;if(void 0!==(await t({id:e,type:i})).error)return;r((0,M5.g)("document",e));let a={type:"name",value:(null==(n=M7[i])?void 0:n.icon)??M7.page.icon};l((0,Do.updateNodeType)({nodeId:String(e),elementType:"document",newType:i,newIcon:a}))},d=(t,i)=>{let n=parseInt(t.id),r=t.type,l=M7[i];return r===i||(0,tP.isNil)(l)?{key:`convert-to-${i}`,label:"",hidden:!0}:{key:`convert-to-${i}`,label:e(l.labelKey),icon:(0,tZ.jsx)(aa.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,tZ.jsx)(aa.I,{value:"flip-forward"}),hidden:!(o(DH.o.Convert)&&!(0,tP.isNil)(t.type)&&1!==parseInt(t.id)&&(0,tP.isNil)(t.locked)&&!(0,tP.isNil)(t.permissions)&&(0,Si.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,DK.V)("document");return t(e.target)}}),e.registerToSlot(i.name,{name:"useAsSite",priority:i.priority.useAsSite,useMenuItem:e=>{let{useAsSiteTreeContextMenuItem:t}=M9();return t(e.target)}}),e.registerToSlot(i.name,{name:"editSite",priority:i.priority.editSite,useMenuItem:e=>{let{editSiteTreeContextMenuItem:t}=M9();return t(e.target)}}),e.registerToSlot(i.name,{name:"removeSite",priority:i.priority.removeSite,useMenuItem:e=>{let{removeSiteTreeContextMenuItem:t}=M9();return t(e.target)}})}}),tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yH.e.document.tree.contextMenu.name,component:M3})}}),i(51344);let Lr=e=>{let{t}=(0,i1.useTranslation)();return(0,tZ.jsx)(Dt.s,{...e,label:t("document.document-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})},La=(p=C9.n,g=(0,tY.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tZ.jsx)(p,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(DA.y9,{renderMenu:()=>(0,tZ.jsx)(M3,{node:n}),children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),h=(0,tY.forwardRef)((e,t)=>{var i;let n=e.metaData.document,{t:r}=(0,i1.useTranslation)();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tZ.jsx)(g,{...e});let a=(0,tP.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tZ.jsx)(Dn.s,{info:{icon:e.icon,title:a,type:"document",data:{...n}},children:(0,tZ.jsx)(g,{...e,ref:t})})}),y=(0,tY.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,Dc.mG)({fixedCacheKey:`DOCUMENT_ACTION_DELETE_ID_${e.id}`}),{isFetching:r,isLoading:a,isDeleting:l}=(0,Df.W)(e.id);return(0,tZ.jsx)(h,{...e,danger:i||n||l,isLoading:i||!0!==a&&r||n||l||a,ref:t})}),(0,tY.forwardRef)((e,t)=>{var i;let{move:n}=(0,Da.e)("document"),{move:r}=Mu("document"),{isSourceAllowed:a,isTargetAllowed:l}=Dd();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tZ.jsx)(y,{...e});let o=e.metaData.document;if(!l(o))return(0,tZ.jsx)(y,{...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,i4.Ay)(new i4.$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,i4.Ay)(new i4.$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,tZ.jsx)(y,{...e,ref:t,wrapNode:t=>(0,tZ.jsx)(Mp.T,{disableDndActiveIndicator:!0,hotspots:u,children:(0,tP.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})})),Ll=e=>{let{id:t=1,showRoot:i=!0}=e,{openDocument:n}=(0,M$.$)(),{rootNode:r,isLoading:a}=(0,Dm.m)(t,i),l=(0,Dp.e)().get(yH.e.document.tree.contextMenu.name);if(i&&a)return(0,tZ.jsx)(pj.a,{padding:"small",children:(0,tZ.jsx)(Dr.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tZ.jsx)(C8.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Lr,renderNode:La,renderNodeContent:C8.Yb.renderNodeContent,renderPager:De.l,rootNode:r,showRoot:i,tooltipSlotName:yH.e.document.tree.tooltip.name})},Lo=e=>{var t,i;let{node:n}=e;return n.elementType!==sq.W.document||(null==(i=n.metaData)||null==(t=i.document)?void 0:t.navigationExclude)!==!0?null:(0,tZ.jsx)(aa.I,{"data-testid":`tree-node-navigation-exclude-icon-${n.id}`,options:{width:14,height:14},value:"not-visible-element"})},Ls=e=>{var t,i;let{node:n}=e;return n.elementType!==sq.W.document||(null==n||null==(i=n.metaData)||null==(t=i.document)?void 0:t.staticGeneratorEnabled)!==!0?null:(0,tZ.jsx)(aa.I,{"data-testid":`tree-node-static-generator-icon-${n.id}`,options:{width:14,height:14},value:"page-static"})};tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager),t=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"document-tree",component:Ll}),t.register({name:yH.e.document.tree.tooltip.name,component:DG}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"staticGeneratorIcon",component:Ls,priority:100}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"navigationExcludeIcon",component:Lo,priority:200}),t.registerToSlot(yH.e.document.tree.node.meta.name,{name:"lockIcon",component:DJ,priority:300})}});let Ld=(0,i_.createStyles)(e=>{let{token:t}=e;return{container:{color:t.colorTextDescription,maxWidth:"300px",textAlign:"center"}}});function Lc(e){let{description:t}=e,{t:i}=(0,i1.useTranslation)(),{styles:n}=Ld();return(0,tZ.jsx)(uG.U,{centered:!0,children:(0,tZ.jsxs)(ax.s,{align:"center",className:n.container,gap:"small",vertical:!0,children:[(0,tZ.jsxs)(ax.s,{align:"center",gap:"mini",children:[(0,tZ.jsx)(aa.I,{value:"info-circle"}),(0,tZ.jsx)("span",{children:i("widget.missing-context.title")})]}),(0,tZ.jsx)("div",{children:t})]})})}var Lf=i(3395);function Lu(e){let{dataObject:t}=(0,a0.A)(e.id),{t:i}=(0,i1.useTranslation)();return(null==t?void 0:t.modified)!==!0?(0,tZ.jsx)(tZ.Fragment,{}):(0,tZ.jsx)(iK.m,{placement:"bottomLeft",title:(0,tZ.jsxs)(tZ.Fragment,{children:[i("detached-tab.draft-tooltip"),(0,tZ.jsx)(pj.a,{padding:{top:"normal"},children:i("detached-tab.draft-tooltip-addon")})]}),children:(0,tZ.jsx)(pj.a,{padding:{x:"extra-small"},children:(0,tZ.jsxs)(ax.s,{align:"flex-start",gap:"mini",children:[(0,tZ.jsx)(aa.I,{value:"draft"}),(0,tZ.jsx)(ri.E,{children:"Draft"})]})})})}function Lm(e){let{context:t,tabKey:i}=e,{getOpenedMainWidget:n}=(0,ps.J)(),{editorType:r,isLoading:a}=(0,SJ.D)(t.config.id,t.type),{t:l}=(0,i1.useTranslation)();if(a)return(0,tZ.jsx)(uG.U,{loading:!0});if(void 0===r)return(0,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")});let o=n(),s=tp.kL.get(r.tabManagerServiceId).getTab(i),d=tp.kL.get(tm.K.widgetManager);if(void 0===s||void 0===o)return(0,tZ.jsx)(Lc,{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,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")});let f=c.getContextProvider(t,s.children);return void 0===f?(0,tZ.jsx)(Lc,{description:l("widget.missing-tab-context.description")}):(0,tZ.jsx)(pw.s,{renderTopBar:(0,tZ.jsxs)(pC.M,{align:"center",position:"top",size:"small",theme:"secondary",children:[(0,tZ.jsx)(Lf.W,{elementType:t.type,id:t.config.id}),"data-object"===t.type&&(0,tZ.jsx)(Lu,{id:t.config.id})]}),children:f})}var Lp=i(55490);let Lg=e=>{let{tabKey:t}=e,{context:i}=(0,Lp.Q)(),{t:n}=(0,i1.useTranslation)();return(null==i?void 0:i.type)===void 0?(0,tZ.jsx)(Lc,{description:n("widget.missing-context.description")}):(0,tZ.jsx)(Lm,{context:i,tabKey:t},i.type)},Lh=(0,i_.createStyles)(e=>{let{css:t,token:i}=e;return{table:t`
.ant-table-content {
.schedule-table--actions-column {
@@ -1095,11 +1095,11 @@
.ant-card-body {
overflow: auto;
}
- `}},{hashPriority:"low"}),LI=e=>{let{workflow:t}=e,[i,n]=(0,tY.useState)([]),{t:r}=(0,i1.useTranslation)(),a=SK(t),{triggerAction:l,submissionLoading:o}=SW();return(0,tY.useEffect)(()=>{let e;e=[],a.forEach(t=>{e.push({key:t.actionType+"-"+t.transitionId,label:r(t.label),onClick:()=>{l(t)}})}),n(e)},[]),(0,tZ.jsx)(pI.m,{menu:{items:i},placement:"bottom",children:o?(0,tZ.jsx)(aW.$,{loading:!0,type:"link"}):(0,tZ.jsx)(aW.$,{children:r("component.workflow-card.action-btn")})})},LM=e=>{var t;let{workflow:i}=e,{styles:n}=LD();return(0,tZ.jsx)(f2.Z,{className:n.workflowCard,extra:(0,tZ.jsx)(LI,{workflow:i}),title:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)("p",{children:i.workflowName}),void 0!==i.workflowStatus&&(null==(t=i.workflowStatus)?void 0:t.length)>0&&i.workflowStatus.map((e,t)=>(0,tZ.jsx)(ij.Tag,{className:e.colorInverted?"color-inverted":"",icon:(0,tZ.jsx)(ij.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,tZ.jsx)("img",{alt:"workflow",src:`data:image/svg+xml;utf8,${encodeURIComponent(i.graph)}`})})},LL=()=>{let{t:e}=(0,i1.useTranslation)(),{workflowDetailsData:t,isFetchingWorkflowDetails:i}=(0,S$.j)();return(0,tZ.jsxs)(uG.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,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:e("workflow.headline")}),(0,tZ.jsx)(ij.Space,{direction:"vertical",children:(0,tZ.jsxs)(S3.F,{children:[(null==t?void 0:t.items)!==void 0&&(null==t?void 0:t.items.length)>0&&t.items.map((e,t)=>(0,tZ.jsx)(LM,{workflow:e},t)),(0,tZ.jsx)(S6.x,{})]})})]})},LF=e=>{var t;let{elementType:i,...n}=e,{t:r}=(0,i1.useTranslation)(),{isLoading:a,data:l}=gt({elementType:i});if(a)return(0,tZ.jsx)(uG.U,{loading:!0});let o=null==l||null==(t=l.items)?void 0:t.map(e=>({value:e.id,label:e.id}));return(0,tZ.jsxs)(t1.lV,{layout:"vertical",...n,children:[(0,tZ.jsx)(t1.lV.Item,{label:r("type"),name:"type",children:(0,tZ.jsx)(ir.l,{options:o,placeholder:r("select")})}),(0,tZ.jsx)(t1.lV.Item,{label:r("title"),name:"title",rules:[{required:!0,message:r("form.validation.required")}],children:(0,tZ.jsx)(ij.Input,{})}),(0,tZ.jsx)(t1.lV.Item,{label:r("description"),name:"description",children:(0,tZ.jsx)(rt.f,{autoSize:{minRows:3}})})]})},LE=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)(),[n]=ns.Form.useForm(),[r,{isLoading:a}]=p9();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,tZ.jsx)(ij.Modal,{okButtonProps:{loading:a},okText:i("save"),onCancel:()=>{t.setOpen(!1),n.resetFields()},onOk:()=>{n.submit()},open:t.open,title:(0,tZ.jsx)(gh.w,{iconName:"new",children:i("notes-and-events.new-note")}),children:(0,tZ.jsx)(LF,{elementType:t.elementType,form:n,onFinish:o})})};var LP=i(40926);let LN=e=>{let{notes:t,pagination:i,onClickTrash:n,elementId:r,elementType:a,deleteLoading:l,refetchNotes:o}=e,{t:s}=(0,i1.useTranslation)(),[d,c]=(0,tY.useState)(!1),f=t.map(e=>{let t;return{key:e.id.toString(),label:(0,tZ.jsxs)(oR.B,{dividerSize:"small",size:"extra-small",theme:"secondary",children:[""!==e.title&&(0,tZ.jsx)(tZ.Fragment,{children:(0,tZ.jsx)(ri.E,{strong:!0,children:e.title})}),(0,tZ.jsx)(ri.E,{type:"secondary",children:e.userName})]}),extra:(t=e.type??void 0,(0,tZ.jsxs)(aZ.$,{align:"center",size:"extra-small",children:[void 0!==t&&(0,tZ.jsx)(ij.Tag,{children:t}),(0,tZ.jsx)("span",{children:(0,pZ.r6)({timestamp:e.date,dateStyle:"short",timeStyle:"medium"})}),!e.locked&&(0,tZ.jsx)(lw.K,{"aria-label":nt().t("aria.notes-and-events.delete"),icon:{value:"trash"},loading:l,onClick:t=>{t.stopPropagation(),n(e.id)},theme:"primary"})]})),children:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(LP.f,{children:(0,pW.SN)(e.description)}),e.data.length>0&&(0,tZ.jsx)(pQ,{note:e})]}),...0===e.description.length&&{disabled:!0}}});return(0,tZ.jsx)(pw.s,{renderToolbar:0!==t.length?(0,tZ.jsx)(pC.M,{justify:"flex-end",theme:"secondary",children:(0,tZ.jsx)(tZ.Fragment,{children:i})}):void 0,children:(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsxs)(Tm.Y,{className:"p-l-mini",title:s("notes-and-events.notes-and-events"),children:[(0,tZ.jsx)(pc.J,{icon:{value:"new"},onClick:()=>{c(!0)},children:s("new")}),(0,tZ.jsx)(LE,{elementId:r,elementType:a,open:d,refetchNotes:o,setOpen:c})]}),(0,tZ.jsx)(uG.U,{none:0===t.length,noneOptions:{text:s("notes-and-events.no-notes-and-events-to-show")},children:(0,tZ.jsx)(ah.SD,{accordion:!1,items:f})})]})})},LA=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t,elementType:i}=(0,i3.J)(),[n,r]=(0,tY.useState)(1),[a,l]=(0,tY.useState)(20),[o,{error:s,isLoading:d}]=p8(),{isLoading:c,data:f,error:u,refetch:m}=ge({id:t,elementType:i,page:n,pageSize:a});async function p(e){await o({id:e}),await m()}return((0,tP.isUndefined)(u)||(0,i4.Ay)(new i4.hD(u)),(0,tP.isUndefined)(s)||(0,i4.Ay)(new i4.hD(s)),c)?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tZ.jsx)(LN,{deleteLoading:d,elementId:t,elementType:i,notes:f.items,onClickTrash:p,pagination:(0,tZ.jsx)(pk.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 LR=i(6387);let LV=()=>{let e=(0,iT.useAppDispatch)();return{updateTagsForElementByTypeAndId:t=>e(LR.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(LR.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}))}},Lz=e=>{let{tags:t,isLoading:i}=e,{t:n}=(0,i1.useTranslation)(),{id:r,elementType:a}=(0,i3.J)(),{removeTagFromElement:l}=LV(),[o]=(0,hT.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,i4.Ay)(new i4.$g("Failed to unassign tag from element"))}},d=(0,c6.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,tZ.jsx)(ij.Flex,{align:"center",className:"w-full h-full",justify:"center",children:(0,tZ.jsx)(lw.K,{"aria-label":n("tags.actions.delete"),icon:{value:"trash"},onClick:async()=>{await s(e.row.original.id)},type:"link"})}),size:60})];return(0,tZ.jsx)(uj.x,{columns:c,data:Object.values(t),enableSorting:!0,isLoading:i,sorting:[{id:"path",desc:!1}]})},LB=e=>{let t,i,{elementId:n,elementType:r,tags:a,filter:l,setFilter:o,isLoading:s,defaultCheckedTags:d,setDefaultCheckedTags:c}=e,{t:f}=(0,i1.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]=tX().useState([0,...d]),{handleCheck:g,loadingNodes:h}=(e=>{let{elementId:t,elementType:i,flatTags:n,setDefaultCheckedTags:r}=e,a=(0,uH.J)(),{updateTagsForElementByTypeAndId:l}=LV(),[o]=(0,hT.zC)(),[s]=(0,hT.vX)(),[d,c]=(0,tY.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,ne.t)("failed-to-assign-tag-to-element"):(0,ne.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,hk.M)({tags:a,loadingNodes:h});return(0,tY.useEffect)(()=>{let e,t;!(0,tP.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,tP.isNull)(n.children)||t(n.children)})(y),e)])},[l]),(0,tZ.jsxs)(ax.s,{gap:"small",vertical:!0,children:[(0,tZ.jsx)(pT.D,{loading:s,onSearch:o,placeholder:f("search")}),(0,tZ.jsx)(hw.l,{checkStrictly:!0,checkedKeys:{checked:d,halfChecked:[]},defaultExpandedKeys:m,onCheck:g,treeData:y,withCustomSwitcherIcon:!0})]})},LO=e=>{let[t,i]=(0,tY.useState)(""),[n,r]=(0,tY.useState)(e.tags.map(e=>e.id.toString())),{id:a,elementType:l}=(0,i3.J)();(0,tY.useEffect)(()=>{r(e.tags.map(e=>e.id.toString()))},[e.tags]);let{data:o,isLoading:s}=(0,LR.uQ)({page:1,pageSize:9999,filter:t});return s||e.isLoading?(0,tZ.jsx)(uG.U,{loading:!0}):(null==o?void 0:o.items)===void 0?(0,tZ.jsx)("div",{children:"Failed to load tags"}):(0,tZ.jsx)(LB,{defaultCheckedTags:n,elementId:a,elementType:l,filter:t,isLoading:s,setDefaultCheckedTags:r,setFilter:i,tags:o.items})},LK={assign:"tags.apply-tags-to-children",replace:"tags.remove-and-apply-tags-to-children"},L_={studio_ee_job_batch_tag_assign:"assign",studio_ee_job_batch_tag_replace:"replace"};class LH{async run(e){let{messageBus:t}=e;try{let e=await this.executeRequest();if((0,tP.isNil)(e))return;let i=LH.buildHandler({jobRunId:e,operation:this.operation});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,i4.Ay)(new i4.$g(e.message))}}async executeRequest(){var e;let t=await uz.M_.dispatch(hT.FH.endpoints.tagBatchOperationToElementsByTypeAndId.initiate({elementType:this.elementType,id:this.elementId,operation:this.operation}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}async handleJobFailure(e){console.error("Tag assign job failed:",e)}static rehydrate(e){let[t]=e,i=L_[t.jobName]??"assign";return this.buildHandler({jobRunId:t.id,operation:i})}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)(LK[e.operation])})}constructor(e){this.elementType=e.elementType,this.elementId=e.elementId,this.operation=e.operation}}LH.jobNames=["studio_ee_job_batch_tag_assign","studio_ee_job_batch_tag_replace"];let L$=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t,elementType:i}=(0,i3.J)(),{element:n}=(0,SJ.D)(t,i),{applyTagsToChildren:r,removeAndApplyTagsToChildren:a}=(()=>{let{id:e,elementType:t}=(0,i3.J)(),i=tp.kL.get(tm.K.executionEngine);return{removeAndApplyTagsToChildren:async()=>{let n=new LH({elementType:t,elementId:e,operation:"replace"});await i.runJob(n)},applyTagsToChildren:async()=>{let n=new LH({elementType:t,elementId:e,operation:"assign"});await i.runJob(n)}}})(),{data:l,isLoading:o}=(0,hT.ET)({elementType:i,id:t});return(0,tZ.jsx)(hz.n,{leftItem:{minSize:315,size:25,children:(0,tZ.jsx)(uG.U,{loading:o,padded:!0,children:(0,tZ.jsx)(LO,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})},resizeAble:!0,rightItem:{minSize:300,size:75,children:(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:e("tags.assigned-tags-text"),children:(null==l?void 0:l.totalItems)===0?(0,tZ.jsx)(aW.$,{onClick:a,children:e("tags.remove-and-apply-tags-to-children")}):(0,tZ.jsx)(ij.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,tZ.jsx)("div",{className:"pimcore-tags-content",children:(0,tZ.jsx)(Lz,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})]})},withDivider:!0})};tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K.widgetManager).registerWidget({name:"detachable-tab",component:Lg});let e=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:th.eb.element.editor.tab.properties.name,component:MR}),e.register({name:th.eb.element.editor.tab.schedule.name,component:Lv}),e.register({name:th.eb.element.editor.tab.dependencies.name,component:LC}),e.register({name:th.eb.element.editor.tab.workflow.name,component:LL}),e.register({name:th.eb.element.editor.tab.notesAndEvents.name,component:LA}),e.register({name:th.eb.element.editor.tab.tags.name,component:L$})}});var LW=i(98053);let Lq=p0.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:LG,useElementUsageReplaceMutation:LU}=Lq,LJ=Lq.enhanceEndpoints({endpoints:{elementUsageReplace:{invalidatesTags:[]}}}),{useLazyElementGetUsageQuery:LQ,useElementUsageReplaceMutation:LZ}=LJ;class LY{async run(e){let{messageBus:t}=e;try{var i;let e=await this.executeReplaceRequest();if((0,tP.isNil)(e))return void await this.handleCompletion();let n=LY.buildHandler({jobRunId:e,elementCount:(null==(i=this.elements)?void 0:i.length)??0,onJobCompletion:async()=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(n)}catch(e){await this.handleJobFailure(e),(0,i4.Ay)(new i4.$g(e.message))}}async executeReplaceRequest(){var e;let t=await uz.M_.dispatch(LJ.endpoints.elementUsageReplace.initiate({elementType:this.sourceElementType,id:this.sourceElementId,body:{targetType:this.targetElementType,targetId:this.targetElementId,elements:this.elements??[]}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.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)}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id,elementCount:t.totalElements})}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:null!=e.elementCount&&e.elementCount>0?(0,ne.t)("search-replace-assignments.job.title-selection",{count:e.elementCount}):(0,ne.t)("search-replace-assignments.job.title-all"),onJobCompletion:e.onJobCompletion})}constructor(e){this.sourceElementType=e.sourceElementType,this.sourceElementId=e.sourceElementId,this.targetElementType=e.targetElementType,this.targetElementId=e.targetElementId,this.elements=e.elements,this.onFinish=e.onFinish}}LY.jobNames=["studio_ee_job_element_usage_replace"];let LX=(0,tY.createContext)(void 0),L0=e=>{let{children:t}=e,{t:i}=(0,i1.useTranslation)(),[n,r]=(0,tY.useState)(null),[a,l]=(0,tY.useState)(null),[o,s]=(0,tY.useState)(1),[d,c]=(0,tY.useState)(50),[f,u]=(0,tY.useState)({}),m=tp.kL.get(tm.K.executionEngine),[p,{data:g,isFetching:h,isLoading:y}]=LJ.useLazyElementGetUsageQuery();(0,tY.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 LY({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,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 LY({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,elements:e,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,tY.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,tZ.jsx)(LX.Provider,{value:E,children:t})},L1=()=>{let e=(0,tY.useContext)(LX);if(void 0===e)throw Error("useSearchReplaceAssignments must be used within a SearchReplaceAssignmentsProvider");return e},L2=()=>{let{searchFor:e,replaceWith:t,handleSearchForChange:i,handleReplaceWithChange:n,handleSearch:r,handleApplyToAll:a,isFormValid:l,hasHidden:o}=L1(),[s]=ij.Form.useForm();return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pC.M,{justify:"space-between",padding:{left:"small",right:"extra-small"},theme:"secondary",children:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("widget.search-replace-assignments")})}),(0,tZ.jsx)(uG.U,{children:(0,tZ.jsxs)(ns.Box,{margin:{x:"small",bottom:"small"},children:[(0,tZ.jsxs)(ij.Form,{colon:!1,form:s,labelAlign:"left",labelCol:{style:{width:"150px"}},layout:"horizontal",style:{marginBottom:0},children:[(0,tZ.jsx)(ij.Form.Item,{label:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("search-replace-assignments.search-for")}),name:"searchFor",children:(0,tZ.jsxs)(ax.s,{gap:"extra-small",children:[(0,tZ.jsx)("div",{style:{width:"600px"},children:(0,tZ.jsx)(LW.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:i,value:e})}),(0,tZ.jsx)(aW.$,{disabled:null===e,onClick:r,type:"default",children:(0,ne.t)("search-replace-assignments.search")})]})}),(0,tZ.jsx)(ij.Form.Item,{label:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("search-replace-assignments.replace-with")}),name:"replaceWith",style:{marginBottom:0},children:(0,tZ.jsxs)(ax.s,{gap:"extra-small",children:[(0,tZ.jsx)("div",{style:{width:"600px"},children:(0,tZ.jsx)(LW.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:n,value:t})}),(0,tZ.jsx)(ij.Popconfirm,{cancelText:(0,ne.t)("cancel"),description:(0,ne.t)("search-replace-assignments.confirm.description"),okText:(0,ne.t)("button.confirm"),onConfirm:a,overlayStyle:{maxWidth:"350px"},title:(0,ne.t)("search-replace-assignments.confirm.title"),children:(0,tZ.jsx)(aW.$,{disabled:!l,type:"primary",children:(0,ne.t)("search-replace-assignments.apply-to-all")})})]})})]}),o&&(0,tZ.jsx)(ns.Box,{margin:{top:"small"},children:(0,tZ.jsx)(TM.F,{banner:!0,message:(0,ne.t)("hidden-dependencies-warning"),type:"warning"})})]})})]})},L3=()=>{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}=L1();return(0,tZ.jsxs)(pC.M,{justify:"space-between",theme:"secondary",children:[e&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",children:[(0,tZ.jsx)(t0.S,{checked:!0,onClick:e=>{e.stopPropagation(),i()},children:(0,ne.t)("listing.selection.total",{total:t})}),(0,tZ.jsx)(ij.Popconfirm,{cancelText:(0,ne.t)("cancel"),description:(0,ne.t)("search-replace-assignments.confirm.description"),okText:(0,ne.t)("button.confirm"),onConfirm:n,overlayStyle:{maxWidth:"350px"},title:(0,ne.t)("search-replace-assignments.confirm.title"),children:(0,tZ.jsx)(aW.$,{disabled:!d,type:"primary",children:(0,ne.t)("search-replace-assignments.apply-to-selection")})})]}),!e&&(0,tZ.jsx)("div",{}),(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(lw.K,{disabled:c||f,icon:{value:"refresh"},onClick:r}),(0,tZ.jsx)(pk.d,{current:a,defaultPageSize:s,onChange:l,showSizeChanger:!0,showTotal:e=>(0,ne.t)("pagination.show-total",{total:e}),total:o})]})]})},L6=()=>{let{t:e}=(0,i1.useTranslation)(),{usageItems:t,isFetching:i,selectedRows:n,setSelectedRows:r}=L1(),a=(0,c6.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,tZ.jsx)(ns.Flex,{align:"center",justify:"center",children:(0,tZ.jsx)(ns.Tooltip,{title:e(n),children:(0,tZ.jsx)(aa.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,tZ.jsx)(ns.Box,{margin:{x:"small",bottom:"small"},children:(0,tZ.jsx)(uj.x,{autoWidth:!0,columns:l,data:t,enableMultipleRowSelection:!0,enableRowSelection:!0,isLoading:i,onSelectedRowsChange:r,resizable:!0,selectedRows:n})})},L4=()=>((0,tY.useEffect)(()=>()=>{console.log("SearchReplaceAssignmentsContainer unmounting")},[]),(0,tZ.jsx)(pw.s,{renderToolbar:(0,tZ.jsx)(L3,{}),renderTopBar:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(L2,{}),(0,tZ.jsx)(ns.Box,{margin:{bottom:"small"},children:(0,tZ.jsx)(ns.Divider,{size:"none",theme:"secondary"})})]}),children:(0,tZ.jsx)(uG.U,{children:(0,tZ.jsx)(L6,{})})})),L5=()=>(0,tZ.jsx)(L0,{children:(0,tZ.jsx)(L4,{})});var L7=i(69676);let L8={name:"Search & Replace Assignments",id:"search-replace-assignments",component:"search-replace-assignments",config:{translationKey:"widget.search-replace-assignments",icon:{type:"name",value:"search"}}};tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Search & Replace Assignments",label:"navigation.search-replace-assignments",className:"item-style-modifier",order:700,hidden:()=>!(0,L7.isAllowed)(pz.F.Assets)&&!(0,L7.isAllowed)(pz.F.Documents)&&!(0,L7.isAllowed)(pz.F.Objects),perspectivePermission:pB.d.SearchReplaceAssignments,widgetConfig:L8}),tp.kL.get(tm.K.widgetManager).registerWidget({name:"search-replace-assignments",component:L5})}});var L9=i(10716),Fe=i(86218),Ft=i(81194),Fi=i(20607),Fn=i(78254);let Fr=()=>{let{t:e}=(0,iT.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}}}},Fa=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(D7.FH.endpoints.dataObjectGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fi.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,tP.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 Fl=i(79563);let Fo=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(kZ.api.endpoints.assetGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fl.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,tP.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 Fs=i(92472);let Fd=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(oy.FH.endpoints.documentGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fs.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,tP.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 Fc=i(54604);let Ff=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{treeWidget:i`
+ `}},{hashPriority:"low"}),LI=e=>{let{workflow:t}=e,[i,n]=(0,tY.useState)([]),{t:r}=(0,i1.useTranslation)(),a=SK(t),{triggerAction:l,submissionLoading:o}=SW();return(0,tY.useEffect)(()=>{let e;e=[],a.forEach(t=>{e.push({key:t.actionType+"-"+t.transitionId,label:r(t.label),onClick:()=>{l(t)}})}),n(e)},[]),(0,tZ.jsx)(pI.m,{menu:{items:i},placement:"bottom",children:o?(0,tZ.jsx)(aW.$,{loading:!0,type:"link"}):(0,tZ.jsx)(aW.$,{children:r("component.workflow-card.action-btn")})})},LM=e=>{var t;let{workflow:i}=e,{styles:n}=LD();return(0,tZ.jsx)(f2.Z,{className:n.workflowCard,extra:(0,tZ.jsx)(LI,{workflow:i}),title:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)("p",{children:i.workflowName}),void 0!==i.workflowStatus&&(null==(t=i.workflowStatus)?void 0:t.length)>0&&i.workflowStatus.map((e,t)=>(0,tZ.jsx)(ij.Tag,{className:e.colorInverted?"color-inverted":"",icon:(0,tZ.jsx)(ij.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,tZ.jsx)("img",{alt:"workflow",src:`data:image/svg+xml;utf8,${encodeURIComponent(i.graph)}`})})},LL=()=>{let{t:e}=(0,i1.useTranslation)(),{workflowDetailsData:t,isFetchingWorkflowDetails:i}=(0,S$.j)();return(0,tZ.jsxs)(uG.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,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:e("workflow.headline")}),(0,tZ.jsx)(ij.Space,{direction:"vertical",children:(0,tZ.jsxs)(S3.F,{children:[(null==t?void 0:t.items)!==void 0&&(null==t?void 0:t.items.length)>0&&t.items.map((e,t)=>(0,tZ.jsx)(LM,{workflow:e},t)),(0,tZ.jsx)(S6.x,{})]})})]})},LF=e=>{var t;let{elementType:i,...n}=e,{t:r}=(0,i1.useTranslation)(),{isLoading:a,data:l}=gt({elementType:i});if(a)return(0,tZ.jsx)(uG.U,{loading:!0});let o=null==l||null==(t=l.items)?void 0:t.map(e=>({value:e.id,label:e.id}));return(0,tZ.jsxs)(t1.lV,{layout:"vertical",...n,children:[(0,tZ.jsx)(t1.lV.Item,{label:r("type"),name:"type",children:(0,tZ.jsx)(ir.l,{options:o,placeholder:r("select")})}),(0,tZ.jsx)(t1.lV.Item,{label:r("title"),name:"title",rules:[{required:!0,message:r("form.validation.required")}],children:(0,tZ.jsx)(ij.Input,{})}),(0,tZ.jsx)(t1.lV.Item,{label:r("description"),name:"description",children:(0,tZ.jsx)(rt.f,{autoSize:{minRows:3}})})]})},LE=e=>{let{...t}=e,{t:i}=(0,i1.useTranslation)(),[n]=ns.Form.useForm(),[r,{isLoading:a}]=p9();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,tZ.jsx)(ij.Modal,{okButtonProps:{loading:a},okText:i("save"),onCancel:()=>{t.setOpen(!1),n.resetFields()},onOk:()=>{n.submit()},open:t.open,title:(0,tZ.jsx)(gh.w,{iconName:"new",children:i("notes-and-events.new-note")}),children:(0,tZ.jsx)(LF,{elementType:t.elementType,form:n,onFinish:o})})};var LP=i(40926);let LN=e=>{let{notes:t,pagination:i,onClickTrash:n,elementId:r,elementType:a,deleteLoading:l,refetchNotes:o}=e,{t:s}=(0,i1.useTranslation)(),[d,c]=(0,tY.useState)(!1),f=t.map(e=>{let t;return{key:e.id.toString(),label:(0,tZ.jsxs)(oR.B,{dividerSize:"small",size:"extra-small",theme:"secondary",children:[""!==e.title&&(0,tZ.jsx)(tZ.Fragment,{children:(0,tZ.jsx)(ri.E,{strong:!0,children:e.title})}),(0,tZ.jsx)(ri.E,{type:"secondary",children:e.userName})]}),extra:(t=e.type??void 0,(0,tZ.jsxs)(aZ.$,{align:"center",size:"extra-small",children:[void 0!==t&&(0,tZ.jsx)(ij.Tag,{children:t}),(0,tZ.jsx)("span",{children:(0,pZ.r6)({timestamp:e.date,dateStyle:"short",timeStyle:"medium"})}),!e.locked&&(0,tZ.jsx)(lw.K,{"aria-label":nt().t("aria.notes-and-events.delete"),icon:{value:"trash"},loading:l,onClick:t=>{t.stopPropagation(),n(e.id)},theme:"primary"})]})),children:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(LP.f,{children:(0,pW.SN)(e.description)}),e.data.length>0&&(0,tZ.jsx)(pQ,{note:e})]}),...0===e.description.length&&{disabled:!0}}});return(0,tZ.jsx)(pw.s,{renderToolbar:0!==t.length?(0,tZ.jsx)(pC.M,{justify:"flex-end",theme:"secondary",children:(0,tZ.jsx)(tZ.Fragment,{children:i})}):void 0,children:(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsxs)(Tm.Y,{className:"p-l-mini",title:s("notes-and-events.notes-and-events"),children:[(0,tZ.jsx)(pc.J,{icon:{value:"new"},onClick:()=>{c(!0)},children:s("new")}),(0,tZ.jsx)(LE,{elementId:r,elementType:a,open:d,refetchNotes:o,setOpen:c})]}),(0,tZ.jsx)(uG.U,{none:0===t.length,noneOptions:{text:s("notes-and-events.no-notes-and-events-to-show")},children:(0,tZ.jsx)(ah.SD,{accordion:!1,items:f})})]})})},LA=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t,elementType:i}=(0,i3.J)(),[n,r]=(0,tY.useState)(1),[a,l]=(0,tY.useState)(20),[o,{error:s,isLoading:d}]=p8(),{isLoading:c,data:f,error:u,refetch:m}=ge({id:t,elementType:i,page:n,pageSize:a});async function p(e){await o({id:e}),await m()}return((0,tP.isUndefined)(u)||(0,i4.Ay)(new i4.hD(u)),(0,tP.isUndefined)(s)||(0,i4.Ay)(new i4.hD(s)),c)?(0,tZ.jsx)(uG.U,{loading:!0}):(0,tZ.jsx)(LN,{deleteLoading:d,elementId:t,elementType:i,notes:f.items,onClickTrash:p,pagination:(0,tZ.jsx)(pk.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 LR=i(6387);let LV=()=>{let e=(0,iT.useAppDispatch)();return{updateTagsForElementByTypeAndId:t=>e(LR.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(LR.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}))}},Lz=e=>{let{tags:t,isLoading:i}=e,{t:n}=(0,i1.useTranslation)(),{id:r,elementType:a}=(0,i3.J)(),{removeTagFromElement:l}=LV(),[o]=(0,hT.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,i4.Ay)(new i4.$g("Failed to unassign tag from element"))}},d=(0,c6.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,tZ.jsx)(ij.Flex,{align:"center",className:"w-full h-full",justify:"center",children:(0,tZ.jsx)(lw.K,{"aria-label":n("tags.actions.delete"),icon:{value:"trash"},onClick:async()=>{await s(e.row.original.id)},type:"link"})}),size:60})];return(0,tZ.jsx)(uj.x,{columns:c,data:Object.values(t),enableSorting:!0,isLoading:i,sorting:[{id:"path",desc:!1}]})},LB=e=>{let t,i,{elementId:n,elementType:r,tags:a,filter:l,setFilter:o,isLoading:s,defaultCheckedTags:d,setDefaultCheckedTags:c}=e,{t:f}=(0,i1.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]=tX().useState([0,...d]),{handleCheck:g,loadingNodes:h}=(e=>{let{elementId:t,elementType:i,flatTags:n,setDefaultCheckedTags:r}=e,a=(0,uH.J)(),{updateTagsForElementByTypeAndId:l}=LV(),[o]=(0,hT.zC)(),[s]=(0,hT.vX)(),[d,c]=(0,tY.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,ne.t)("failed-to-assign-tag-to-element"):(0,ne.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,hk.M)({tags:a,loadingNodes:h});return(0,tY.useEffect)(()=>{let e,t;!(0,tP.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,tP.isNull)(n.children)||t(n.children)})(y),e)])},[l]),(0,tZ.jsxs)(ax.s,{gap:"small",vertical:!0,children:[(0,tZ.jsx)(pT.D,{loading:s,onSearch:o,placeholder:f("search")}),(0,tZ.jsx)(hw.l,{checkStrictly:!0,checkedKeys:{checked:d,halfChecked:[]},defaultExpandedKeys:m,onCheck:g,treeData:y,withCustomSwitcherIcon:!0})]})},LO=e=>{let[t,i]=(0,tY.useState)(""),[n,r]=(0,tY.useState)(e.tags.map(e=>e.id.toString())),{id:a,elementType:l}=(0,i3.J)();(0,tY.useEffect)(()=>{r(e.tags.map(e=>e.id.toString()))},[e.tags]);let{data:o,isLoading:s}=(0,LR.uQ)({page:1,pageSize:9999,filter:t});return s||e.isLoading?(0,tZ.jsx)(uG.U,{loading:!0}):(null==o?void 0:o.items)===void 0?(0,tZ.jsx)("div",{children:"Failed to load tags"}):(0,tZ.jsx)(LB,{defaultCheckedTags:n,elementId:a,elementType:l,filter:t,isLoading:s,setDefaultCheckedTags:r,setFilter:i,tags:o.items})},LK={assign:"tags.apply-tags-to-children",replace:"tags.remove-and-apply-tags-to-children"},L_={studio_ee_job_batch_tag_assign:"assign",studio_ee_job_batch_tag_replace:"replace"};class LH{async run(e){let{messageBus:t}=e;try{let e=await this.executeRequest();if((0,tP.isNil)(e))return;let i=LH.buildHandler({jobRunId:e,operation:this.operation});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,i4.Ay)(new i4.$g(e.message))}}async executeRequest(){var e;let t=await uz.M_.dispatch(hT.FH.endpoints.tagBatchOperationToElementsByTypeAndId.initiate({elementType:this.elementType,id:this.elementId,operation:this.operation}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.hD(t.error)),null)}async handleJobFailure(e){console.error("Tag assign job failed:",e)}static rehydrate(e){let[t]=e,i=L_[t.jobName]??"assign";return this.buildHandler({jobRunId:t.id,operation:i})}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:(0,ne.t)(LK[e.operation]),progressCalculator:new CM.j})}constructor(e){this.elementType=e.elementType,this.elementId=e.elementId,this.operation=e.operation}}LH.jobNames=["studio_ee_job_batch_tag_assign","studio_ee_job_batch_tag_replace"];let L$=()=>{let{t:e}=(0,i1.useTranslation)(),{id:t,elementType:i}=(0,i3.J)(),{element:n}=(0,SJ.D)(t,i),{applyTagsToChildren:r,removeAndApplyTagsToChildren:a}=(()=>{let{id:e,elementType:t}=(0,i3.J)(),i=tp.kL.get(tm.K.executionEngine);return{removeAndApplyTagsToChildren:async()=>{let n=new LH({elementType:t,elementId:e,operation:"replace"});await i.runJob(n)},applyTagsToChildren:async()=>{let n=new LH({elementType:t,elementId:e,operation:"assign"});await i.runJob(n)}}})(),{data:l,isLoading:o}=(0,hT.ET)({elementType:i,id:t});return(0,tZ.jsx)(hz.n,{leftItem:{minSize:315,size:25,children:(0,tZ.jsx)(uG.U,{loading:o,padded:!0,children:(0,tZ.jsx)(LO,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})},resizeAble:!0,rightItem:{minSize:300,size:75,children:(0,tZ.jsxs)(uG.U,{padded:!0,children:[(0,tZ.jsx)(Tm.Y,{className:"p-l-mini",title:e("tags.assigned-tags-text"),children:(null==l?void 0:l.totalItems)===0?(0,tZ.jsx)(aW.$,{onClick:a,children:e("tags.remove-and-apply-tags-to-children")}):(0,tZ.jsx)(ij.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,tZ.jsx)("div",{className:"pimcore-tags-content",children:(0,tZ.jsx)(Lz,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})]})},withDivider:!0})};tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K.widgetManager).registerWidget({name:"detachable-tab",component:Lg});let e=tp.kL.get(tm.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:th.eb.element.editor.tab.properties.name,component:MR}),e.register({name:th.eb.element.editor.tab.schedule.name,component:Lv}),e.register({name:th.eb.element.editor.tab.dependencies.name,component:LC}),e.register({name:th.eb.element.editor.tab.workflow.name,component:LL}),e.register({name:th.eb.element.editor.tab.notesAndEvents.name,component:LA}),e.register({name:th.eb.element.editor.tab.tags.name,component:L$})}});var LW=i(98053);let Lq=p0.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:LG,useElementUsageReplaceMutation:LU}=Lq,LJ=Lq.enhanceEndpoints({endpoints:{elementUsageReplace:{invalidatesTags:[]}}}),{useLazyElementGetUsageQuery:LQ,useElementUsageReplaceMutation:LZ}=LJ;class LY{async run(e){let{messageBus:t}=e;try{var i;let e=await this.executeReplaceRequest();if((0,tP.isNil)(e))return void await this.handleCompletion();let n=LY.buildHandler({jobRunId:e,elementCount:(null==(i=this.elements)?void 0:i.length)??0,onJobCompletion:async()=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(n)}catch(e){await this.handleJobFailure(e),(0,i4.Ay)(new i4.$g(e.message))}}async executeReplaceRequest(){var e;let t=await uz.M_.dispatch(LJ.endpoints.elementUsageReplace.initiate({elementType:this.sourceElementType,id:this.sourceElementId,body:{targetType:this.targetElementType,targetId:this.targetElementId,elements:this.elements??[]}}));return(0,tP.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,i4.Ay)(new i4.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)}static rehydrate(e){let[t]=e;return this.buildHandler({jobRunId:t.id,elementCount:t.totalElements})}static buildHandler(e){return new CI.j({jobRunId:e.jobRunId,title:null!=e.elementCount&&e.elementCount>0?(0,ne.t)("search-replace-assignments.job.title-selection",{count:e.elementCount}):(0,ne.t)("search-replace-assignments.job.title-all"),onJobCompletion:e.onJobCompletion})}constructor(e){this.sourceElementType=e.sourceElementType,this.sourceElementId=e.sourceElementId,this.targetElementType=e.targetElementType,this.targetElementId=e.targetElementId,this.elements=e.elements,this.onFinish=e.onFinish}}LY.jobNames=["studio_ee_job_element_usage_replace"];let LX=(0,tY.createContext)(void 0),L0=e=>{let{children:t}=e,{t:i}=(0,i1.useTranslation)(),[n,r]=(0,tY.useState)(null),[a,l]=(0,tY.useState)(null),[o,s]=(0,tY.useState)(1),[d,c]=(0,tY.useState)(50),[f,u]=(0,tY.useState)({}),m=tp.kL.get(tm.K.executionEngine),[p,{data:g,isFetching:h,isLoading:y}]=LJ.useLazyElementGetUsageQuery();(0,tY.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 LY({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,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 LY({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,elements:e,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,tY.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,tZ.jsx)(LX.Provider,{value:E,children:t})},L1=()=>{let e=(0,tY.useContext)(LX);if(void 0===e)throw Error("useSearchReplaceAssignments must be used within a SearchReplaceAssignmentsProvider");return e},L2=()=>{let{searchFor:e,replaceWith:t,handleSearchForChange:i,handleReplaceWithChange:n,handleSearch:r,handleApplyToAll:a,isFormValid:l,hasHidden:o}=L1(),[s]=ij.Form.useForm();return(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(pC.M,{justify:"space-between",padding:{left:"small",right:"extra-small"},theme:"secondary",children:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("widget.search-replace-assignments")})}),(0,tZ.jsx)(uG.U,{children:(0,tZ.jsxs)(ns.Box,{margin:{x:"small",bottom:"small"},children:[(0,tZ.jsxs)(ij.Form,{colon:!1,form:s,labelAlign:"left",labelCol:{style:{width:"150px"}},layout:"horizontal",style:{marginBottom:0},children:[(0,tZ.jsx)(ij.Form.Item,{label:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("search-replace-assignments.search-for")}),name:"searchFor",children:(0,tZ.jsxs)(ax.s,{gap:"extra-small",children:[(0,tZ.jsx)("div",{style:{width:"600px"},children:(0,tZ.jsx)(LW.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:i,value:e})}),(0,tZ.jsx)(aW.$,{disabled:null===e,onClick:r,type:"default",children:(0,ne.t)("search-replace-assignments.search")})]})}),(0,tZ.jsx)(ij.Form.Item,{label:(0,tZ.jsx)(pS.h,{children:(0,ne.t)("search-replace-assignments.replace-with")}),name:"replaceWith",style:{marginBottom:0},children:(0,tZ.jsxs)(ax.s,{gap:"extra-small",children:[(0,tZ.jsx)("div",{style:{width:"600px"},children:(0,tZ.jsx)(LW.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:n,value:t})}),(0,tZ.jsx)(ij.Popconfirm,{cancelText:(0,ne.t)("cancel"),description:(0,ne.t)("search-replace-assignments.confirm.description"),okText:(0,ne.t)("button.confirm"),onConfirm:a,overlayStyle:{maxWidth:"350px"},title:(0,ne.t)("search-replace-assignments.confirm.title"),children:(0,tZ.jsx)(aW.$,{disabled:!l,type:"primary",children:(0,ne.t)("search-replace-assignments.apply-to-all")})})]})})]}),o&&(0,tZ.jsx)(ns.Box,{margin:{top:"small"},children:(0,tZ.jsx)(TM.F,{banner:!0,message:(0,ne.t)("hidden-dependencies-warning"),type:"warning"})})]})})]})},L3=()=>{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}=L1();return(0,tZ.jsxs)(pC.M,{justify:"space-between",theme:"secondary",children:[e&&(0,tZ.jsxs)(ax.s,{align:"center",gap:"small",children:[(0,tZ.jsx)(t0.S,{checked:!0,onClick:e=>{e.stopPropagation(),i()},children:(0,ne.t)("listing.selection.total",{total:t})}),(0,tZ.jsx)(ij.Popconfirm,{cancelText:(0,ne.t)("cancel"),description:(0,ne.t)("search-replace-assignments.confirm.description"),okText:(0,ne.t)("button.confirm"),onConfirm:n,overlayStyle:{maxWidth:"350px"},title:(0,ne.t)("search-replace-assignments.confirm.title"),children:(0,tZ.jsx)(aW.$,{disabled:!d,type:"primary",children:(0,ne.t)("search-replace-assignments.apply-to-selection")})})]}),!e&&(0,tZ.jsx)("div",{}),(0,tZ.jsxs)(oR.B,{size:"extra-small",children:[(0,tZ.jsx)(lw.K,{disabled:c||f,icon:{value:"refresh"},onClick:r}),(0,tZ.jsx)(pk.d,{current:a,defaultPageSize:s,onChange:l,showSizeChanger:!0,showTotal:e=>(0,ne.t)("pagination.show-total",{total:e}),total:o})]})]})},L6=()=>{let{t:e}=(0,i1.useTranslation)(),{usageItems:t,isFetching:i,selectedRows:n,setSelectedRows:r}=L1(),a=(0,c6.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,tZ.jsx)(ns.Flex,{align:"center",justify:"center",children:(0,tZ.jsx)(ns.Tooltip,{title:e(n),children:(0,tZ.jsx)(aa.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,tZ.jsx)(ns.Box,{margin:{x:"small",bottom:"small"},children:(0,tZ.jsx)(uj.x,{autoWidth:!0,columns:l,data:t,enableMultipleRowSelection:!0,enableRowSelection:!0,isLoading:i,onSelectedRowsChange:r,resizable:!0,selectedRows:n})})},L4=()=>((0,tY.useEffect)(()=>()=>{console.log("SearchReplaceAssignmentsContainer unmounting")},[]),(0,tZ.jsx)(pw.s,{renderToolbar:(0,tZ.jsx)(L3,{}),renderTopBar:(0,tZ.jsxs)(tZ.Fragment,{children:[(0,tZ.jsx)(L2,{}),(0,tZ.jsx)(ns.Box,{margin:{bottom:"small"},children:(0,tZ.jsx)(ns.Divider,{size:"none",theme:"secondary"})})]}),children:(0,tZ.jsx)(uG.U,{children:(0,tZ.jsx)(L6,{})})})),L5=()=>(0,tZ.jsx)(L0,{children:(0,tZ.jsx)(L4,{})});var L7=i(69676);let L8={name:"Search & Replace Assignments",id:"search-replace-assignments",component:"search-replace-assignments",config:{translationKey:"widget.search-replace-assignments",icon:{type:"name",value:"search"}}};tu.s.registerModule({onInit:()=>{tp.kL.get(tm.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Search & Replace Assignments",label:"navigation.search-replace-assignments",className:"item-style-modifier",order:700,hidden:()=>!(0,L7.isAllowed)(pz.F.Assets)&&!(0,L7.isAllowed)(pz.F.Documents)&&!(0,L7.isAllowed)(pz.F.Objects),perspectivePermission:pB.d.SearchReplaceAssignments,widgetConfig:L8}),tp.kL.get(tm.K.widgetManager).registerWidget({name:"search-replace-assignments",component:L5})}});var L9=i(10716),Fe=i(86218),Ft=i(81194),Fi=i(20607),Fn=i(78254);let Fr=()=>{let{t:e}=(0,iT.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}}}},Fa=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(D7.FH.endpoints.dataObjectGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fi.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,tP.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 Fl=i(79563);let Fo=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(kZ.api.endpoints.assetGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fl.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,tP.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 Fs=i(92472);let Fd=()=>{let{pageSize:e,treeFilterArgs:t}=(0,Fn._)(),i=(0,iT.useAppDispatch)(),{createFallbackRootNode:n}=Fr();async function r(t,n){let r=i(oy.FH.endpoints.documentGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,i4.Ay)(new i4.hD(a)):r||(0,tP.isUndefined)(n)?void 0:(0,Fs.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,tP.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 Fc=i(54604);let Ff=(0,i_.createStyles)(e=>{let{token:t,css:i}=e;return{treeWidget:i`
.tree {
padding-left: ${t.paddingSM}px;
}
- `}},{hashPriority:"low"}),Fu=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,gf.t)(),{styles:f}=Ff(),u=l??(i===sq.W.asset?d:c);return(0,tZ.jsx)(Ft.b,{treeId:t,children:(0,tZ.jsx)(Fe.P,{permissions:{...o},children:(0,tZ.jsx)(L9.S,{classIds:r,pageSize:u,pqlQuery:(0,le.uI)(a)?a:void 0,children:(0,tZ.jsxs)("div",{className:f.treeWidget,children:[i===sq.W.asset&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fo,children:(0,tZ.jsx)(DB,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sq.W.dataObject&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fa,children:(0,tZ.jsx)(Mh,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sq.W.document&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fd,children:(0,tZ.jsx)(Ll,{id:(null==n?void 0:n.id)??1,showRoot:s})})]})})})})};var Fm=i(41045),Fp=i(18453),Fg=i(31325);let Fh=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,tP.isNil)(i)){let n=await this.getWidgetConfig(e.component,Number(i));if(!(0,tP.isNil)(n))return t((0,yq.WK)(n)),!0}return!1}async getWidgetConfig(e,t){return"asset-editor"===e?await Fm.c.getWidgetConfig(t,!0):"document-editor"===e?await Fp.J.getWidgetConfig(t,!0):"data-object-editor"===e?await Fg.j.getWidgetConfig(t,!0):void 0}};var Fy=i(67151),Fv=i(317),Fb=i(55009);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager);tp.kL.get(tm.K.widgetRestorerRegistry).register(Fh),e.registerWidget({name:"element_tree",component:Fu,transformConfig:e=>({...e,translationKey:e.name}),isVisible:e=>{if((0,tP.has)(e,"elementType"))switch(e.elementType){case"document":return(0,yG.J)(pz.F.Documents);case"asset":return(0,yG.J)(pz.F.Assets);case"data-object":return(0,yG.J)(pz.F.Objects)}return!0}});let t=tp.kL.get(tm.K["ExecutionEngine/JobRehydrationRegistry"]);t.register(Fy.r),t.register(Fv.L),t.register(Fb.O),t.register(Lt),t.register(CM),t.register(CP),t.register(CV.c),t.register(C0),t.register(LH),t.register(LY)}});var Fx=i(29247),Fj=i(11940);let Fw={name:"rehydrate-running-jobs",async onLoad(){let{data:e}=await uz.M_.dispatch(Fj.FH.endpoints.executionEngineListJobs.initiate({body:{filters:{page:1,pageSize:200,sortFilter:{key:"id",direction:"desc"}}}},{forceRefetch:!0})),t=(null==e?void 0:e.items)??[];tp.kL.get(tm.K.executionEngine).rehydrateRunningJobs(t)}};tu.s.registerModule({onInit(){tp.kL.get(tm.K["ExecutionEngine/JobComponentRegistry"]).registerComponent("default-message-bus",Fx.y),tp.kL.get(tm.K["AppLoader/Registry"]).registerLoader(Fw)}}),tu.s.registerModule({onInit(){let e=tp.kL.get(tm.K["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/DataObjectAdapter"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/DataObjectObjectBrick"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/String"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/None"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Id"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Multiselect"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Date"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Boolean"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/BooleanSelect"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Consent"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/ClassificationStore"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/InputQuantityValue"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/QuantityValue"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Color"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Datetime"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Time"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Relation"]));let t=tp.kL.get(tm.K["DynamicTypes/BatchEditRegistry"]);t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Text"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/TextArea"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Datetime"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Select"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Checkbox"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/ElementDropzone"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/ClassificationStore"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/DataObjectAdapter"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/DataObjectObjectBrick"])),tp.kL.get(tm.K["DynamicTypes/ListingRegistry"]).registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Listing/AssetLink"]));let i=tp.kL.get(tm.K["DynamicTypes/GridCellRegistry"]);i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Text"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/String"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Textarea"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Number"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Select"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/MultiSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Boolean"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Checkbox"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Date"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Time"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DateTime"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ObjectLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DocumentLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/OpenElement"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetPreview"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetActions"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectActions"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DependencyTypeIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ElementSubtypeIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetCustomMetadataValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/PropertyIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/PropertyValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/WebsiteSettingsValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ScheduleActionsSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/VersionsIdSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Asset"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Object"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Document"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Element"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/LanguageSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Translate"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectAdapter"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ClassificationStore"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectAdvanced"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectObjectBrick"]));let n=tp.kL.get(tm.K["DynamicTypes/AdvancedGridCellRegistry"]);n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/String"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Integer"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Error"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Array"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemId"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemString"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemBoolean"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemDatetime"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemInteger"]));let r=tp.kL.get(tm.K["DynamicTypes/MetadataRegistry"]);r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Asset"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Checkbox"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Date"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Document"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Input"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Object"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Select"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Textarea"]));let a=tp.kL.get(tm.K["DynamicTypes/ObjectLayoutRegistry"]);a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Panel"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Tabpanel"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Accordion"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Region"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Text"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Fieldset"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/FieldContainer"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Iframe"]));let l=tp.kL.get(tm.K["DynamicTypes/ObjectDataRegistry"]);l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Input"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Textarea"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Wysiwyg"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Password"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/InputQuantityValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Select"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/MultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Language"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/LanguageMultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Country"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/CountryMultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/User"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/BooleanSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Numeric"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/NumericRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Slider"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/QuantityValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/QuantityValueRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Consent"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Firstname"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Lastname"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Email"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Gender"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/RgbaColor"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/EncryptedField"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/CalculatedValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Checkbox"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Link"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/UrlSlug"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Date"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Datetime"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/DateRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Time"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ExternalImage"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Image"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Video"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/HotspotImage"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ImageGallery"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPoint"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoBounds"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPolygon"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPolyLine"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToOneRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToManyRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToManyObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/AdvancedManyToManyRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ReverseObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Table"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/StructuredTable"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Block"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/LocalizedFields"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/FieldCollection"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ObjectBrick"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ClassificationStore"]));let o=tp.kL.get(tm.K["DynamicTypes/DocumentEditableRegistry"]);o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Block"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/ScheduledBlock"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Checkbox"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Date"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Embed"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Input"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Link"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Numeric"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Relation"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Relations"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Renderlet"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Select"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Snippet"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Table"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Textarea"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Wysiwyg"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/MultiSelect"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Image"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Pdf"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Video"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Area"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Areablock"]));let s=tp.kL.get(tm.K["DynamicTypes/EditableDialogLayoutRegistry"]);s.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/EditableDialogLayout/Tabpanel"])),s.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/EditableDialogLayout/Panel"]));let d=tp.kL.get(tm.K["DynamicTypes/AssetRegistry"]);d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Archive"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Audio"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Document"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Folder"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Image"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Text"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Unknown"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Video"]));let c=tp.kL.get(tm.K["DynamicTypes/DocumentRegistry"]);c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Email"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Folder"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Hardlink"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Link"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Newsletter"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Snippet"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Page"]));let f=tp.kL.get(tm.K["DynamicTypes/ObjectRegistry"]);f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Folder"])),f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Object"])),f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Variant"]));let u=tp.kL.get(tm.K["DynamicTypes/Grid/SourceFieldsRegistry"]);u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/Text"])),u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/SimpleField"])),u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/RelationField"]));let m=tp.kL.get(tm.K["DynamicTypes/Grid/TransformersRegistry"]);m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/BooleanFormatter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/DateFormatter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/ElementCounter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/TwigOperator"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Anonymizer"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Blur"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/ChangeCase"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Combine"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Explode"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/StringReplace"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Substring"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Trim"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Translate"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/PHPCode"]))}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DynamicTypes/ThemeRegistry"]);e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Theme/StudioDefaultLight"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Theme/StudioDefaultDark"]))}});let Fk=(0,i_.createStyles)(e=>{let{css:t,token:i}=e,n=t`
+ `}},{hashPriority:"low"}),Fu=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,gf.t)(),{styles:f}=Ff(),u=l??(i===sq.W.asset?d:c);return(0,tZ.jsx)(Ft.b,{treeId:t,children:(0,tZ.jsx)(Fe.P,{permissions:{...o},children:(0,tZ.jsx)(L9.S,{classIds:r,pageSize:u,pqlQuery:(0,le.uI)(a)?a:void 0,children:(0,tZ.jsxs)("div",{className:f.treeWidget,children:[i===sq.W.asset&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fo,children:(0,tZ.jsx)(DB,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sq.W.dataObject&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fa,children:(0,tZ.jsx)(Mh,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sq.W.document&&(0,tZ.jsx)(Fc.X,{nodeApiHook:Fd,children:(0,tZ.jsx)(Ll,{id:(null==n?void 0:n.id)??1,showRoot:s})})]})})})})};var Fm=i(41045),Fp=i(18453),Fg=i(31325);let Fh=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,tP.isNil)(i)){let n=await this.getWidgetConfig(e.component,Number(i));if(!(0,tP.isNil)(n))return t((0,yq.WK)(n)),!0}return!1}async getWidgetConfig(e,t){return"asset-editor"===e?await Fm.c.getWidgetConfig(t,!0):"document-editor"===e?await Fp.J.getWidgetConfig(t,!0):"data-object-editor"===e?await Fg.j.getWidgetConfig(t,!0):void 0}};var Fy=i(67151),Fv=i(317),Fb=i(55009);tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K.widgetManager);tp.kL.get(tm.K.widgetRestorerRegistry).register(Fh),e.registerWidget({name:"element_tree",component:Fu,transformConfig:e=>({...e,translationKey:e.name}),isVisible:e=>{if((0,tP.has)(e,"elementType"))switch(e.elementType){case"document":return(0,yG.J)(pz.F.Documents);case"asset":return(0,yG.J)(pz.F.Assets);case"data-object":return(0,yG.J)(pz.F.Objects)}return!0}});let t=tp.kL.get(tm.K["ExecutionEngine/JobRehydrationRegistry"]);t.register(Fy.r),t.register(Fv.L),t.register(Fb.O),t.register(Lt),t.register(CL),t.register(CN),t.register(Cz.c),t.register(C1),t.register(LH),t.register(LY)}});var Fx=i(29247),Fj=i(11940);let Fw={name:"rehydrate-running-jobs",async onLoad(){let{data:e}=await uz.M_.dispatch(Fj.FH.endpoints.executionEngineListJobs.initiate({body:{filters:{page:1,pageSize:200,sortFilter:{key:"id",direction:"desc"}}}},{forceRefetch:!0})),t=(null==e?void 0:e.items)??[];tp.kL.get(tm.K.executionEngine).rehydrateRunningJobs(t)}};tu.s.registerModule({onInit(){tp.kL.get(tm.K["ExecutionEngine/JobComponentRegistry"]).registerComponent("default-message-bus",Fx.y),tp.kL.get(tm.K["AppLoader/Registry"]).registerLoader(Fw)}}),tu.s.registerModule({onInit(){let e=tp.kL.get(tm.K["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/DataObjectAdapter"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/DataObjectObjectBrick"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/String"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/None"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Id"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Multiselect"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Date"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Boolean"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/BooleanSelect"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Consent"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/ClassificationStore"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/InputQuantityValue"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/QuantityValue"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Color"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Datetime"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Time"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/FieldFilter/Relation"]));let t=tp.kL.get(tm.K["DynamicTypes/BatchEditRegistry"]);t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Text"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/TextArea"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Datetime"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Select"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/Checkbox"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/ElementDropzone"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/ClassificationStore"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/DataObjectAdapter"])),t.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/BatchEdit/DataObjectObjectBrick"])),tp.kL.get(tm.K["DynamicTypes/ListingRegistry"]).registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Listing/AssetLink"]));let i=tp.kL.get(tm.K["DynamicTypes/GridCellRegistry"]);i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Text"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/String"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Textarea"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Number"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Select"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/MultiSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Boolean"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Checkbox"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Date"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Time"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DateTime"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ObjectLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DocumentLink"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/OpenElement"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetPreview"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetActions"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectActions"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DependencyTypeIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ElementSubtypeIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetCustomMetadataValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/PropertyIcon"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/PropertyValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/WebsiteSettingsValue"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ScheduleActionsSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/VersionsIdSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Asset"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Object"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Document"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Element"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/LanguageSelect"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Translate"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectAdapter"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/ClassificationStore"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectAdvanced"])),i.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/DataObjectObjectBrick"]));let n=tp.kL.get(tm.K["DynamicTypes/AdvancedGridCellRegistry"]);n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/String"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Integer"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Error"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/Array"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemId"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemString"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemBoolean"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemDatetime"])),n.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/GridCell/SystemInteger"]));let r=tp.kL.get(tm.K["DynamicTypes/MetadataRegistry"]);r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Asset"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Checkbox"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Date"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Document"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Input"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Object"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Select"])),r.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Metadata/Textarea"]));let a=tp.kL.get(tm.K["DynamicTypes/ObjectLayoutRegistry"]);a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Panel"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Tabpanel"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Accordion"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Region"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Text"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Fieldset"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/FieldContainer"])),a.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectLayout/Iframe"]));let l=tp.kL.get(tm.K["DynamicTypes/ObjectDataRegistry"]);l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Input"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Textarea"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Wysiwyg"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Password"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/InputQuantityValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Select"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/MultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Language"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/LanguageMultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Country"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/CountryMultiSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/User"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/BooleanSelect"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Numeric"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/NumericRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Slider"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/QuantityValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/QuantityValueRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Consent"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Firstname"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Lastname"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Email"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Gender"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/RgbaColor"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/EncryptedField"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/CalculatedValue"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Checkbox"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Link"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/UrlSlug"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Date"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Datetime"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/DateRange"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Time"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ExternalImage"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Image"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Video"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/HotspotImage"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ImageGallery"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPoint"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoBounds"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPolygon"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/GeoPolyLine"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToOneRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToManyRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ManyToManyObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/AdvancedManyToManyRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ReverseObjectRelation"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Table"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/StructuredTable"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/Block"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/LocalizedFields"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/FieldCollection"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ObjectBrick"])),l.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/ObjectData/ClassificationStore"]));let o=tp.kL.get(tm.K["DynamicTypes/DocumentEditableRegistry"]);o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Block"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/ScheduledBlock"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Checkbox"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Date"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Embed"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Input"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Link"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Numeric"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Relation"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Relations"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Renderlet"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Select"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Snippet"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Table"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Textarea"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Wysiwyg"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/MultiSelect"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Image"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Pdf"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Video"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Area"])),o.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/DocumentEditable/Areablock"]));let s=tp.kL.get(tm.K["DynamicTypes/EditableDialogLayoutRegistry"]);s.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/EditableDialogLayout/Tabpanel"])),s.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/EditableDialogLayout/Panel"]));let d=tp.kL.get(tm.K["DynamicTypes/AssetRegistry"]);d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Archive"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Audio"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Document"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Folder"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Image"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Text"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Unknown"])),d.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Asset/Video"]));let c=tp.kL.get(tm.K["DynamicTypes/DocumentRegistry"]);c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Email"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Folder"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Hardlink"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Link"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Newsletter"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Snippet"])),c.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Document/Page"]));let f=tp.kL.get(tm.K["DynamicTypes/ObjectRegistry"]);f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Folder"])),f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Object"])),f.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Object/Variant"]));let u=tp.kL.get(tm.K["DynamicTypes/Grid/SourceFieldsRegistry"]);u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/Text"])),u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/SimpleField"])),u.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/SourceFields/RelationField"]));let m=tp.kL.get(tm.K["DynamicTypes/Grid/TransformersRegistry"]);m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/BooleanFormatter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/DateFormatter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/ElementCounter"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/TwigOperator"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Anonymizer"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Blur"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/ChangeCase"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Combine"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Explode"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/StringReplace"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Substring"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Trim"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/Translate"])),m.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Grid/Transformers/PHPCode"]))}}),tu.s.registerModule({onInit:()=>{let e=tp.kL.get(tm.K["DynamicTypes/ThemeRegistry"]);e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Theme/StudioDefaultLight"])),e.registerDynamicType(tp.kL.get(tm.K["DynamicTypes/Theme/StudioDefaultDark"]))}});let Fk=(0,i_.createStyles)(e=>{let{css:t,token:i}=e,n=t`
min-height: 100px;
cursor: text;
`,r=t`
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6359.8c0be3b6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6359.26d45383.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6424.ca220edd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6424.ca220edd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6458.b5282ed0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6458.b5282ed0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6464.b6d25cb6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6464.b6d25cb6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6472.df513d2d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6472.df513d2d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6484.2519155d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6484.2519155d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6550.09a63ebf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6550.09a63ebf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6572.510ff641.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6572.510ff641.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6579.cda7f334.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6579.cda7f334.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/658.dc677028.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/658.dc677028.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/660.5242d83f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/660.5242d83f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6619.93b9f2c4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6619.93b9f2c4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6649.2b614ce3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6649.2b614ce3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6695.087ae8ff.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6695.087ae8ff.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6743.851be9cb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6743.851be9cb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6759.cf6c0abd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6759.cf6c0abd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6766.c76f91a5.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6766.c76f91a5.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6815.80ba0d22.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6815.80ba0d22.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6819.424ecfc4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6819.424ecfc4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6823.dc627341.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6823.dc627341.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/687.ae382b4d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/687.ae382b4d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6911.d02db343.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6911.d02db343.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/692.ac93e4e2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/692.ac93e4e2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6967.4d971194.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6967.4d971194.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/6984.af4507e3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/6984.af4507e3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7006.928d8671.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7006.928d8671.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7041.230cf6a4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7041.230cf6a4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7045.8629530a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7045.8629530a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/705.fad963d9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/705.fad963d9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7053.63c4c0a6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7053.63c4c0a6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/706.01d44a78.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/706.01d44a78.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7073.fb6439a4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7073.fb6439a4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7161.f24a612f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7161.f24a612f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7171.8731ac06.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7171.8731ac06.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7210.9113a386.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7210.9113a386.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7250.364fbcad.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7250.364fbcad.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7264.fc5a523f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7264.fc5a523f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7334.be0321bf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7334.be0321bf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7396.da4c50f4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7396.da4c50f4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/741.734ea878.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/741.734ea878.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7419.b1cfaeac.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7419.b1cfaeac.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7440.04b86278.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7440.04b86278.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7463.e177b088.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7463.e177b088.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/749.7c748f48.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/749.7c748f48.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7524.73ba348d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7524.73ba348d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7527.e64ccbd1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7527.e64ccbd1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7597.42dde6f3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7597.42dde6f3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7679.a6829c17.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7679.a6829c17.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7680.2cb113f6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7680.2cb113f6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7789.50873df9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7789.50873df9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7793.d6bce01b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7793.d6bce01b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7799.a37e9eaf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7799.a37e9eaf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7821.b1a2dc53.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7821.b1a2dc53.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7828.812c672f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7828.812c672f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7935.ba8eb0b4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7935.ba8eb0b4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7939.af086f08.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7939.af086f08.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7960.9d4a54c0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7960.9d4a54c0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/7994.c600e1ce.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/7994.c600e1ce.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/803.52d29752.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/803.52d29752.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8031.b368b0bf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8031.b368b0bf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8050.502aa521.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8050.502aa521.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8051.9c74ecaf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8051.9c74ecaf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8146.e69de8bc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8146.e69de8bc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8195.c8bb6771.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8195.c8bb6771.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8222.acb59083.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8222.acb59083.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8231.0a773046.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8231.0a773046.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8272.64fe9f7a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8272.64fe9f7a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/830.dda8066f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/830.dda8066f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8372.d6f25582.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8372.d6f25582.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8403.58bbddc4.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8403.58bbddc4.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8437.864e7b29.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8437.864e7b29.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8467.f7bd216d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8467.f7bd216d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8473.25a53f08.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8473.25a53f08.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8477.0c91210d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8477.0c91210d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8479.55f72fe0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8479.55f72fe0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/85.3d7bb7a3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/85.3d7bb7a3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8520.3f467428.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8520.3f467428.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8536.df877041.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8536.df877041.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/854.95bad760.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/854.95bad760.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8547.3355910d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8547.3355910d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8557.e526282d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8557.e526282d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8567.2e09cb4e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8567.2e09cb4e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8574.8c240d77.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8574.8c240d77.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8609.b6039081.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8609.b6039081.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8635.29404620.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8635.29404620.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8645.7a1aa6c0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8645.7a1aa6c0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8658.55f9d53e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8658.55f9d53e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8707.80dfb17f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8707.80dfb17f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8779.bdcddd0a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8779.bdcddd0a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8800.1154e54c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8800.1154e54c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8832.e1a7ddbf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8832.e1a7ddbf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8835.d50a0005.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8835.d50a0005.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8850.1ef4da0e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8850.1ef4da0e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8910.7686ba2c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8910.7686ba2c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8932.e8090749.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8932.e8090749.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/8971.cb9861fc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/8971.cb9861fc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9007.f28d0779.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9007.f28d0779.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9030.03e4d789.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9030.03e4d789.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9052.67bd17cd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9052.67bd17cd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9076.7a2b7e9a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9076.7a2b7e9a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9114.7d0c9ca9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9114.7d0c9ca9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9204.8f0c9c3a.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9204.8f0c9c3a.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9322.81e49a3d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9322.81e49a3d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9336.9a425d8d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9336.9a425d8d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/935.4dfccbd9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/935.4dfccbd9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9357.709b2aae.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9357.709b2aae.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9403.9f36612d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9403.9f36612d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9454.ea8accfd.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9454.ea8accfd.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9471.3511726f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9471.3511726f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9536.9b33a533.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9536.9b33a533.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9603.dcad1930.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9603.dcad1930.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9607.214ebd42.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9607.214ebd42.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9633.8b5bc7fa.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9633.8b5bc7fa.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9691.a7a34297.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9691.a7a34297.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9765.07ec2c12.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9765.07ec2c12.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9767.926906cb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9767.926906cb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9801.09cd7cd0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9801.09cd7cd0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/9880.64c12943.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/9880.64c12943.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap.b66e2130.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.1851e19e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api.b2803204.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api.b2803204.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__class_definition.98c97f6e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__class_definition.98c97f6e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__data_object.2523eeb0.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__data_object.2523eeb0.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__documents.47c44d59.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__documents.47c44d59.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__elements.6770f2ea.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__elements.6770f2ea.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__reports.e7c4ed9b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__reports.e7c4ed9b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_app.1b83f087.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_app.1b83f087.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_default_export.4009a5ba.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_default_export.4009a5ba.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__application_logger.d39efdd2.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__asset.a973168f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__asset.a973168f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__class_definitions.30d21fac.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__data_object.5ac1dd32.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__document.e7a0612f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__document.e7a0612f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__field_definitions.eaeb13b7.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__gdpr_data_extractor.5e7ea4bc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__global_message_bus.ab05e67d.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__icon_library.78a7b9c8.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__perspectives.d879ce19.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__perspectives.d879ce19.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__reports.1b5c941c.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__reports.1b5c941c.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__rule_builder.7af48ccc.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__translations.8eb18b1e.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__translations.8eb18b1e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_modules__widget_editor.eda1a039.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/__federation_expose_utils.6a7e265f.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/__federation_expose_utils.6a7e265f.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/async/lib-axios.f458d745.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/async/lib-axios.f458d745.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js
similarity index 99%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js
index 7818a5aaea..7f17147bac 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js
@@ -1,7 +1,7 @@
-/*! For license information please see index.9df2fed8.js.LICENSE.txt */
+/*! For license information please see index.4154f64e.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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/"})(),(()=>{__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/4188a550-3aa8-47ff-9d90-42489b220dd9/"})(),(()=>{__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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/index.9df2fed8.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/index.4154f64e.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js
similarity index 99%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js
index d9affc15de..6c84982f6e 100644
--- a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js
+++ b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/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:"d879ce19",1225:"5e7ea4bc",1265:"d95e4129",1270:"4a7146b0",129:"24017dc3",1303:"f89c138e",1327:"1b5c941c",1367:"e7c4ed9b",141:"a305e3e9",1428:"b3183de2",1438:"67cdf5fd",145:"7d13ff5f",1472:"e37f95af",1525:"4009a5ba",1553:"630acce1",1567:"debd0837",157:"8615578d",1579:"9dee10b3",1590:"a167200d",1600:"eda1a039",1612:"54f63d68",1635:"18d9dd0b",1643:"b41a359d",1668:"120c2fdd",1688:"4626095c",1693:"f94a5c52",1708:"de5f09b0",172:"cb77a99e",1742:"9207983d",175:"780b640e",1750:"19b70383",1762:"e6454223",1797:"bc29fd89",1814:"16619920",1834:"3ea07c1f",1851:"1528a0c7",1875:"048f7c1f",1933:"7a8790cb",198:"96c8f5d3",1996:"6a7e265f",2015:"28b3f667",2016:"2efa4d68",2020:"79eb6b1c",2049:"47c44d59",206:"0227085b",2073:"0f14210c",2098:"4b97bea3",2103:"0449b778",2108:"b66e2130",2117:"da809f8e",2121:"8117f390",2162:"e42c8ad6",2168:"3b00277e",2179:"7408679f",2188:"4f425ede",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:"2523eeb0",2492:"cc8cd85c",25:"36d6a68b",2503:"1efd0e77",254:"7abe0c11",2545:"5fc75b47",2597:"969d51fc",261:"0e13114e",2619:"543b4f03",2638:"d949ec28",2709:"809fe258",2739:"84cc2ba2",2775:"0d98465a",2793:"a25ad8de",281:"d912a74e",2841:"e1a4734b",2843:"971b7a56",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",339:"19de338d",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:"c12cb4c1",3935:"0990f5be",3939:"7220c1e1",3941:"9ceed713",3971:"e7a0612f",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:"8eb18b1e",45:"e217286d",4530:"72904f19",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:"ab05e67d",6052:"a270b069",6135:"d371dcf8",6185:"b2803204",6186:"9fa7f507",619:"59f8e380",6193:"eaeb13b7",6229:"ec077e40",6255:"2e48b884",6270:"f9ff3abd",6272:"f2f56a80",6313:"e76747fb",6335:"0ad9b174",6359:"8c0be3b6",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:"78a7b9c8",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",7045:"8629530a",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",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:"98c97f6e",7960:"9d4a54c0",7994:"c600e1ce",803:"52d29752",8031:"b368b0bf",8050:"502aa521",8051:"9c74ecaf",8146:"e69de8bc",8195:"c8bb6771",8222:"acb59083",8231:"0a773046",8234:"1b83f087",8272:"64fe9f7a",830:"dda8066f",8311:"7af48ccc",8372:"d6f25582",8403:"58bbddc4",8430:"5ac1dd32",8437:"864e7b29",8438:"6770f2ea",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:"ea8accfd",9471:"3511726f",9536:"9b33a533",9603:"dcad1930",9607:"214ebd42",9615:"1851e19e",9633:"8b5bc7fa",9691:"a7a34297",9749:"d39efdd2",9765:"07ec2c12",9767:"926906cb",9800:"a973168f",9801:"09cd7cd0",9880:"64c12943",9969:"30d21fac"})[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:"3ecb63e4",9615:"3ecb63e4",9633:"d4e96fc8"})[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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/"})(),(()=>{__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("339"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("7045"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("6359"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("7045"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("6359"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(7251)),"./app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("2625"),__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("2625"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("2625"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2489")]).then(()=>()=>__webpack_require__(58077)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2625"),__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("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2049")]).then(()=>()=>__webpack_require__(25435)),"./api/elements":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("7045"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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:"d879ce19",1225:"5e7ea4bc",1265:"d95e4129",1270:"4a7146b0",129:"24017dc3",1303:"f89c138e",1327:"1b5c941c",1367:"e7c4ed9b",141:"a305e3e9",1428:"b3183de2",1438:"67cdf5fd",145:"7d13ff5f",1472:"e37f95af",1525:"4009a5ba",1553:"630acce1",1567:"debd0837",157:"8615578d",1579:"9dee10b3",1590:"a167200d",1600:"eda1a039",1612:"54f63d68",1635:"18d9dd0b",1643:"b41a359d",1668:"120c2fdd",1688:"4626095c",1693:"f94a5c52",1708:"de5f09b0",172:"cb77a99e",1742:"9207983d",175:"780b640e",1750:"19b70383",1762:"e6454223",1797:"bc29fd89",1814:"16619920",1834:"3ea07c1f",1851:"1528a0c7",1875:"048f7c1f",1933:"7a8790cb",198:"96c8f5d3",1996:"6a7e265f",2015:"28b3f667",2016:"2efa4d68",2020:"79eb6b1c",2049:"47c44d59",206:"0227085b",2073:"0f14210c",2098:"4b97bea3",2103:"0449b778",2108:"b66e2130",2117:"da809f8e",2121:"8117f390",2162:"e42c8ad6",2168:"3b00277e",2179:"7408679f",2188:"4f425ede",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:"2523eeb0",2492:"cc8cd85c",25:"36d6a68b",2503:"1efd0e77",254:"7abe0c11",2545:"5fc75b47",2597:"969d51fc",261:"0e13114e",2619:"543b4f03",2638:"d949ec28",2709:"809fe258",2739:"84cc2ba2",2775:"0d98465a",2793:"a25ad8de",281:"d912a74e",2841:"e1a4734b",2843:"971b7a56",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",339:"19de338d",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:"c12cb4c1",3935:"0990f5be",3939:"7220c1e1",3941:"9ceed713",3971:"e7a0612f",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:"8eb18b1e",45:"e217286d",4530:"72904f19",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:"ab05e67d",6052:"a270b069",6135:"d371dcf8",6185:"b2803204",6186:"9fa7f507",619:"59f8e380",6193:"eaeb13b7",6229:"ec077e40",6255:"2e48b884",6270:"f9ff3abd",6272:"f2f56a80",6313:"e76747fb",6335:"0ad9b174",6359:"26d45383",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:"78a7b9c8",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",7045:"8629530a",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",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:"98c97f6e",7960:"9d4a54c0",7994:"c600e1ce",803:"52d29752",8031:"b368b0bf",8050:"502aa521",8051:"9c74ecaf",8146:"e69de8bc",8195:"c8bb6771",8222:"acb59083",8231:"0a773046",8234:"1b83f087",8272:"64fe9f7a",830:"dda8066f",8311:"7af48ccc",8372:"d6f25582",8403:"58bbddc4",8430:"5ac1dd32",8437:"864e7b29",8438:"6770f2ea",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:"ea8accfd",9471:"3511726f",9536:"9b33a533",9603:"dcad1930",9607:"214ebd42",9615:"1851e19e",9633:"8b5bc7fa",9691:"a7a34297",9749:"d39efdd2",9765:"07ec2c12",9767:"926906cb",9800:"a973168f",9801:"09cd7cd0",9880:"64c12943",9969:"30d21fac"})[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:"b347e6d7",9615:"b347e6d7",9633:"1ef0a110"})[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/4188a550-3aa8-47ff-9d90-42489b220dd9/"})(),(()=>{__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:["60142","81427","13815","21429","44241"],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:["46680","62446"]},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("339"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("7045"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("6359"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("7045"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("6359"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(7251)),"./app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("2625"),__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("2625"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("2625"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2489")]).then(()=>()=>__webpack_require__(58077)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2625"),__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("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2049")]).then(()=>()=>__webpack_require__(25435)),"./api/elements":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("2625"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2202"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("7045"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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("339"),__webpack_require__.e("45"),__webpack_require__.e("9633"),__webpack_require__.e("2625"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__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("339"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2020"),__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/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js.LICENSE.txt b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js.LICENSE.txt
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/js/remoteEntry.js.LICENSE.txt
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/js/remoteEntry.js.LICENSE.txt
diff --git a/public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/svg/spritesheet.ac8b36fa.svg b/public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/svg/spritesheet.ac8b36fa.svg
similarity index 100%
rename from public/build/2a4f4ced-d90d-4799-9be6-c8928a8c6208/static/svg/spritesheet.ac8b36fa.svg
rename to public/build/4188a550-3aa8-47ff-9d90-42489b220dd9/static/svg/spritesheet.ac8b36fa.svg
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/documentEditorIframe.html b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/documentEditorIframe.html
similarity index 61%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/documentEditorIframe.html
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/documentEditorIframe.html
index 0369107479..721026f19e 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/documentEditorIframe.html
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/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/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/entrypoints.json b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/entrypoints.json
new file mode 100644
index 0000000000..8092d96915
--- /dev/null
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/entrypoints.json
@@ -0,0 +1,22 @@
+{
+ "entrypoints": {
+ "main": {
+ "js": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js"
+ ],
+ "css": []
+ },
+ "documentEditorIframe": {
+ "js": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js"
+ ],
+ "css": []
+ },
+ "exposeRemote": {
+ "js": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/exposeRemote.js"
+ ],
+ "css": []
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/exposeRemote.js b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/exposeRemote.js
similarity index 100%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/exposeRemote.js
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/exposeRemote.js
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/main.html b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/main.html
similarity index 79%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/main.html
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/main.html
index d2bf928c1f..e34a7de49c 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/main.html
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/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/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/manifest.json b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/manifest.json
new file mode 100644
index 0000000000..9c9e7299a7
--- /dev/null
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/manifest.json
@@ -0,0 +1,33 @@
+{
+ "allFiles": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js",
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js",
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-stats.json",
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-manifest.json",
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/documentEditorIframe.html",
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/main.html"
+ ],
+ "entries": {
+ "main": {
+ "html": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/main.html"
+ ],
+ "initial": {
+ "js": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js"
+ ]
+ }
+ },
+ "documentEditorIframe": {
+ "html": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/documentEditorIframe.html"
+ ],
+ "initial": {
+ "js": [
+ "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js"
+ ]
+ }
+ }
+ },
+ "integrity": {}
+}
\ No newline at end of file
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-manifest.json b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-manifest.json
similarity index 96%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-manifest.json
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-manifest.json
index c3577b645b..c0129a368b 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-manifest.json
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-manifest.json
@@ -22,7 +22,7 @@
"globalName": "pimcore_studio_ui_bundle_core",
"pluginVersion": "2.2.3",
"prefetchInterface": false,
- "publicPath": "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/"
+ "publicPath": "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/"
},
"shared": [],
"remotes": [
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-stats.json b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-stats.json
similarity index 96%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-stats.json
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-stats.json
index 4258993699..c012384769 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-stats.json
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/mf-stats.json
@@ -22,7 +22,7 @@
"globalName": "pimcore_studio_ui_bundle_core",
"pluginVersion": "2.2.3",
"prefetchInterface": false,
- "publicPath": "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/"
+ "publicPath": "/bundles/pimcorestudioui/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/"
},
"shared": [],
"remotes": [
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js
similarity index 99%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js
index 5fa456ad16..4dd928a5fb 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js
@@ -1,7 +1,7 @@
-/*! For license information please see documentEditorIframe.443321a0.js.LICENSE.txt */
+/*! For license information please see documentEditorIframe.af77c95c.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/d48266f2-ffe1-47b5-be99-65f705f9a0a3/"})(),(()=>{__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/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/"})(),(()=>{__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/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js.LICENSE.txt b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js.LICENSE.txt
similarity index 100%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js.LICENSE.txt
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/documentEditorIframe.af77c95c.js.LICENSE.txt
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js
similarity index 99%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js
index 34dd7ca3ca..3be8e909c2 100644
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js
+++ b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js
@@ -1,7 +1,7 @@
-/*! For license information please see main.d7701518.js.LICENSE.txt */
+/*! For license information please see main.d58a5d47.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/d48266f2-ffe1-47b5-be99-65f705f9a0a3/"})(),(()=>{__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/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/"})(),(()=>{__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/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js.LICENSE.txt b/public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js.LICENSE.txt
similarity index 100%
rename from public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js.LICENSE.txt
rename to public/build/8c5066a7-fb4c-44b3-a2d7-24e4d54722a4/static/js/main.d58a5d47.js.LICENSE.txt
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/entrypoints.json b/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/entrypoints.json
deleted file mode 100644
index 1bdf3422e4..0000000000
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/entrypoints.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "entrypoints": {
- "main": {
- "js": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js"
- ],
- "css": []
- },
- "documentEditorIframe": {
- "js": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js"
- ],
- "css": []
- },
- "exposeRemote": {
- "js": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/exposeRemote.js"
- ],
- "css": []
- }
- }
-}
\ No newline at end of file
diff --git a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/manifest.json b/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/manifest.json
deleted file mode 100644
index 137ea45275..0000000000
--- a/public/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/manifest.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "allFiles": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js",
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js",
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-stats.json",
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/mf-manifest.json",
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/documentEditorIframe.html",
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/main.html"
- ],
- "entries": {
- "main": {
- "html": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/main.html"
- ],
- "initial": {
- "js": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/main.d7701518.js"
- ]
- }
- },
- "documentEditorIframe": {
- "html": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/documentEditorIframe.html"
- ],
- "initial": {
- "js": [
- "/bundles/pimcorestudioui/build/d48266f2-ffe1-47b5-be99-65f705f9a0a3/static/js/documentEditorIframe.443321a0.js"
- ]
- }
- }
- },
- "integrity": {}
-}
\ No newline at end of file