From 96b34c0f85f6ed52707fe43456d20b81822c7d1d Mon Sep 17 00:00:00 2001 From: damian0815 Date: Wed, 2 Nov 2022 09:08:11 +0100 Subject: [PATCH] Final WebUI build for Release 2.1 - squashed commit of 52 commits from PR #1327 don't log base64 progress images Fresh Build For WebUI [WebUI] Loopback Default False Fixes bugs/styling - Fixes missing web app state on new version: Adds stateReconciler to redux-persist. When we add more values to the state and then release the update app, they will be automatically merged in. Reseting web UI will be needed far less. 7159ec - Fixes console z-index - Moves reset web UI button to visible area Decreases gallery width on inpainting Increases workarea split padding to 1rem Adds missing tooltips to site header Changes inpainting controls settings to hover Fixes hotkeys and settings buttons not working Improves bounding box interactions - Bounding box can now be moved by dragging any of its edges - Bounding box does not affect drawing if already drawing a stroke - Can lock bounding box to draw directly on the bounding box edges - Removes spacebar-hold behaviour due to technical issues Fixes silent crash when init image too large To send the mask to the server, the UI rendered the mask onto the init image and sent the whole image. The mask was then cropped by the server. If the image was too large, the app silently failed. Maybe it exceeds the websocket size limit. Fixed by cropping the mask in the UI layer, sending only bounding-box-sized mask image data. Disabled bounding box settings when locked Styles image uploader Builds fresh bundle Improves bounding box interaction Added spacebar-hold-to-transform back. Address bounding box feedback - Adds back toggle to hide bounding box - Box quick toggle = q, normal toggle = shift + q - Styles canvas alert icons Adds hints when unable to invoke - Popover on Invoke button indicates why exactly it is disabled, e.g. prompt is empty, something else is processing, etc. - There may be more than one reason; all are displayed. Fix Inpainting Alerts Styling Preventing unnecessary re-renders across the app Code Split Inpaint Options Isolate features to their own components so they dont re-render the other stuff each time. [TESTING] Remove global isReady checking I dont believe this is need at all because the isready state is constantly updated when needed and tracked real time in the Redux store. This causes massive re-renders. @psychedelicious If this is absolutely essential for a reason that I do not see, please hit me up on Discord. Fresh Bundle Fix Bounding Box Settings re-rendering on brush stroke [Code Splitting] Bounding Box Options Isolated all bounding box components to trigger unnecessary re-renders. Still need to fix bounding box triggering re-renders on the control panel inside the canvas itself. But the options panel should be a good to go with this change. Inpainting Controls Code Spitting and Performance Codesplit the entirety of the inpainting controls. Created new selectors for each and every component to ensure there are no unnecessary re-renders. App feels a lot smoother. Fixes rerenders on ClearBrushHistory Fixes crash when requesting post-generation upscale/face restoration - Moves the inpainting paste to before the postprocessing. Removes unused isReady state Changes Report Bug icon to a bug Restores shift+q bounding box shortcut Adds alert for bounding box size to status icons Adds asCheckbox to IAIIconButton Rough draft of this. Not happy with the styling but it's clearer than having them look just like buttons. Fixes crash related to old value of progress_latents in state Styling changes and settings modal minor refactor Fixes: uploaded JPG images not loading Reworks CurrentImageButtons.tsx - Change all icons to FA iconset for consistency - Refactors IAIIconButton, IAIButton, IAIPopover to handle ref forwarding - Redesigns buttons into group Only generate 1 iteration when seed fixed & variations disabled Fixes progress images select Fixes edge case: upload over gets stuck while alt tabbing - Press esc to close it now Fixes display progress images select typing Fixes current image button rerenders Adds min width to ImageUploader Makes fast-latents in progress default Update Icon Button Checkbox Style Styling Fixes next/prev image buttons Refactor canvas buttons + more Add Save Intermediates Step Count For accurate mode only. Co-Authored-By: Richard Macarthy Restores "initial image" text Address feedback - moves mask clear button - fixes intermediates - shrinks inpainting icons by 10% Fix Loopback Styling Adds escape hotkey to close floating panels Readd Hotkey for Dual Display Updated Current Image Button Styling --- backend/invoke_ai_web_server.py | 63 +- frontend/dist/assets/index.52c8231e.css | 1 - frontend/dist/assets/index.8eb7dfe4.js | 501 ++++ frontend/dist/assets/index.bf9dd1fc.js | 517 ++++ frontend/dist/assets/index.cc049b93.js | 517 ---- frontend/dist/assets/index.f9f4c989.css | 1 + frontend/dist/index.html | 4 +- frontend/src/app/App.tsx | 10 +- frontend/src/app/constants.ts | 13 +- .../src/app/selectors/readinessSelector.ts | 39 +- frontend/src/app/socketio/listeners.ts | 14 +- frontend/src/app/store.ts | 32 +- frontend/src/common/components/IAIButton.scss | 3 + frontend/src/common/components/IAIButton.tsx | 31 +- .../src/common/components/IAIIconButton.scss | 59 +- .../src/common/components/IAIIconButton.tsx | 36 +- .../src/common/components/IAINumberInput.scss | 2 +- .../src/common/components/IAINumberInput.tsx | 41 +- frontend/src/common/components/IAIPopover.tsx | 8 +- frontend/src/common/components/IAISelect.scss | 3 +- frontend/src/common/components/IAISelect.tsx | 16 +- frontend/src/common/components/IAISwitch.tsx | 10 +- .../common/components/ImageUploadOverlay.tsx | 39 + .../src/common/components/ImageUploader.scss | 4 +- .../src/common/components/ImageUploader.tsx | 35 +- .../components/ImageUploaderIconButton.tsx | 19 + .../src/common/util/parameterTranslation.ts | 9 +- .../features/gallery/CurrentImageButtons.scss | 25 + .../features/gallery/CurrentImageButtons.tsx | 373 +-- .../features/gallery/CurrentImageDisplay.scss | 13 +- .../features/gallery/CurrentImageDisplay.tsx | 13 +- .../features/gallery/CurrentImagePreview.tsx | 51 +- .../src/features/gallery/DeleteImageModal.tsx | 12 +- .../src/features/gallery/ImageGallery.scss | 2 - .../src/features/gallery/ImageGallery.tsx | 16 +- .../ImageMetadataViewer.tsx | 7 +- .../src/features/gallery/InvokePopover.scss | 35 - .../src/features/gallery/InvokePopover.tsx | 45 - .../features/gallery/gallerySliceSelectors.ts | 11 + .../Inpainting/BoundingBoxSettings.tsx | 205 -- .../BoundingBoxDarkenOutside.tsx | 28 + .../BoundingBoxDimensionSlider.tsx | 128 + .../BoundingBoxSettings/BoundingBoxLock.tsx | 27 + .../BoundingBoxSettings.scss | 0 .../BoundingBoxSettings.tsx | 26 + .../BoundingBoxVisibility.tsx | 28 + .../Inpainting/ClearBrushHistory.tsx | 56 + .../Inpainting/InpaintReplace.tsx | 70 + .../Inpainting/InpaintingSettings.tsx | 93 +- .../options/MainOptions/MainHeight.tsx | 2 +- .../options/MainOptions/MainIterations.tsx | 27 +- .../options/MainOptions/MainOptions.scss | 1 + .../options/MainOptions/MainWidth.tsx | 10 +- .../options/ProcessButtons/CancelButton.tsx | 9 +- .../options/ProcessButtons/InvokeButton.tsx | 90 +- .../options/ProcessButtons/Loopback.tsx | 8 +- .../ProcessButtons/ProcessButtons.scss | 32 + .../options/PromptInput/PromptInput.tsx | 2 +- .../src/features/options/optionsSelectors.ts | 14 + frontend/src/features/system/Console.scss | 11 +- frontend/src/features/system/Console.tsx | 6 +- .../system/HotkeysModal/HotkeysModal.tsx | 16 +- .../system/SettingsModal/ModelList.scss | 46 +- .../system/SettingsModal/ModelList.tsx | 50 +- .../system/SettingsModal/SettingsModal.tsx | 90 +- .../SettingsModal/SettingsModalItem.tsx | 50 - frontend/src/features/system/SiteHeader.tsx | 138 +- frontend/src/features/system/systemSlice.ts | 28 +- .../features/tabs/FloatingGalleryButton.tsx | 2 +- .../tabs/FloatingOptionsPanelButtons.tsx | 2 +- .../tabs/ImageToImage/InitImagePreview.tsx | 24 +- .../features/tabs/Inpainting/Inpainting.scss | 40 +- .../tabs/Inpainting/InpaintingCanvas.tsx | 161 +- .../InpaintingCanvasStatusIcons.scss | 29 + .../InpaintingCanvasStatusIcons.tsx | 126 + .../tabs/Inpainting/InpaintingControls.tsx | 464 +--- .../InpaintingBrushControl.tsx | 150 ++ .../InpaintingClearImageControl.tsx | 22 + .../InpaintingEraserControl.tsx | 67 + .../InpaintingLockBoundingBoxControl.tsx | 29 + .../InpaintingMaskControl.tsx | 38 + .../InpaintingMaskClear.tsx | 70 + .../InpaintingMaskColorPicker.tsx | 91 + .../InpaintingMaskInvertControl.tsx | 68 + .../InpaintingMaskVisibilityControl.tsx | 61 + .../InpaintingRedoControl.tsx | 66 + .../InpaintingShowHideBoundingBoxControl.tsx | 29 + .../InpaintingSplitLayoutControl.tsx | 43 + .../InpaintingUndoControl.tsx | 66 + .../{components => }/KeyboardEventManager.tsx | 54 +- .../tabs/Inpainting/components/Cacher.tsx | 6 + .../InpaintingBoundingBoxPreview.tsx | 102 +- .../InpaintingCanvasBrushPreview.tsx | 17 +- .../InpaintingCanvasBrushPreviewOutline.tsx | 30 +- .../tabs/Inpainting/inpaintingSlice.ts | 28 +- .../Inpainting/inpaintingSliceSelectors.ts | 20 + .../tabs/Inpainting/util/generateMask.ts | 2 +- .../src/features/tabs/InvokeOptionsPanel.tsx | 17 +- frontend/src/features/tabs/InvokeTabs.tsx | 19 +- .../src/features/tabs/InvokeWorkarea.scss | 30 +- frontend/src/features/tabs/InvokeWorkarea.tsx | 49 +- frontend/src/styles/_Colors_Dark.scss | 19 +- frontend/src/styles/_Colors_Light.scss | 17 + frontend/src/styles/index.scss | 8 +- frontend/yarn.lock | 2198 +++++++++-------- 105 files changed, 5022 insertions(+), 3163 deletions(-) delete mode 100644 frontend/dist/assets/index.52c8231e.css create mode 100644 frontend/dist/assets/index.8eb7dfe4.js create mode 100644 frontend/dist/assets/index.bf9dd1fc.js delete mode 100644 frontend/dist/assets/index.cc049b93.js create mode 100644 frontend/dist/assets/index.f9f4c989.css create mode 100644 frontend/src/common/components/IAIButton.scss create mode 100644 frontend/src/common/components/ImageUploadOverlay.tsx create mode 100644 frontend/src/common/components/ImageUploaderIconButton.tsx create mode 100644 frontend/src/features/gallery/CurrentImageButtons.scss delete mode 100644 frontend/src/features/gallery/InvokePopover.scss delete mode 100644 frontend/src/features/gallery/InvokePopover.tsx delete mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDarkenOutside.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDimensionSlider.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxLock.tsx rename frontend/src/features/options/AdvancedOptions/Inpainting/{ => BoundingBoxSettings}/BoundingBoxSettings.scss (100%) create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxVisibility.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/ClearBrushHistory.tsx create mode 100644 frontend/src/features/options/AdvancedOptions/Inpainting/InpaintReplace.tsx delete mode 100644 frontend/src/features/system/SettingsModal/SettingsModalItem.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.scss create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingBrushControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingClearImageControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingEraserControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingLockBoundingBoxControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskClear.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskColorPicker.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskInvertControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskVisibilityControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingRedoControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingShowHideBoundingBoxControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingSplitLayoutControl.tsx create mode 100644 frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingUndoControl.tsx rename frontend/src/features/tabs/Inpainting/{components => }/KeyboardEventManager.tsx (68%) diff --git a/backend/invoke_ai_web_server.py b/backend/invoke_ai_web_server.py index b9fc147911..0ca94a6318 100644 --- a/backend/invoke_ai_web_server.py +++ b/backend/invoke_ai_web_server.py @@ -187,7 +187,10 @@ class InvokeAIWebServer: base_path = ( self.result_path if category == "result" else self.init_image_path ) - paths = glob.glob(os.path.join(base_path, "*.png")) + + paths = [] + for ext in ("*.png", "*.jpg", "*.jpeg"): + paths.extend(glob.glob(os.path.join(base_path, ext))) image_paths = sorted( paths, key=lambda x: os.path.getmtime(x), reverse=True @@ -203,13 +206,19 @@ class InvokeAIWebServer: image_array = [] for path in image_paths: - metadata = retrieve_metadata(path) + if os.path.splitext(path)[1] == ".png": + metadata = retrieve_metadata(path) + sd_metadata = metadata["sd-metadata"] + else: + sd_metadata = {} + (width, height) = Image.open(path).size + image_array.append( { "url": self.get_url_from_image_path(path), "mtime": os.path.getmtime(path), - "metadata": metadata["sd-metadata"], + "metadata": sd_metadata, "width": width, "height": height, "category": category, @@ -236,7 +245,9 @@ class InvokeAIWebServer: self.result_path if category == "result" else self.init_image_path ) - paths = glob.glob(os.path.join(base_path, "*.png")) + paths = [] + for ext in ("*.png", "*.jpg", "*.jpeg"): + paths.extend(glob.glob(os.path.join(base_path, ext))) image_paths = sorted( paths, key=lambda x: os.path.getmtime(x), reverse=True @@ -254,9 +265,12 @@ class InvokeAIWebServer: image_paths = image_paths[slice(0, page_size)] image_array = [] - for path in image_paths: - metadata = retrieve_metadata(path) + if os.path.splitext(path)[1] == ".png": + metadata = retrieve_metadata(path) + sd_metadata = metadata["sd-metadata"] + else: + sd_metadata = {} (width, height) = Image.open(path).size @@ -264,7 +278,7 @@ class InvokeAIWebServer: { "url": self.get_url_from_image_path(path), "mtime": os.path.getmtime(path), - "metadata": metadata["sd-metadata"], + "metadata": sd_metadata, "width": width, "height": height, "category": category, @@ -573,11 +587,7 @@ class InvokeAIWebServer: ) ) ) - # crop the mask image - cropped_mask_image = copy_image_from_bounding_box( - mask_image, **generation_parameters["bounding_box"] - ) - generation_parameters["init_mask"] = cropped_mask_image + generation_parameters["init_mask"] = mask_image totalSteps = self.calculate_real_steps( steps=generation_parameters["steps"], @@ -605,8 +615,9 @@ class InvokeAIWebServer: progress.set_current_status_has_steps(True) if ( - generation_parameters['progress_images'] and step % 5 == 0 \ - and step < generation_parameters['steps'] - 1 + generation_parameters["progress_images"] + and step % generation_parameters['save_intermediates'] == 0 + and step < generation_parameters["steps"] - 1 ): image = self.generate.sample_to_image(sample) metadata = self.parameters_to_generated_image_metadata( @@ -637,14 +648,16 @@ class InvokeAIWebServer: }, ) - if generation_parameters['progress_latents']: + if generation_parameters["progress_latents"]: image = self.generate.sample_to_lowres_estimated_image(sample) (width, height) = image.size width *= 8 height *= 8 buffered = io.BytesIO() image.save(buffered, format="PNG") - img_base64 = "data:image/png;base64," + base64.b64encode(buffered.getvalue()).decode('UTF-8') + img_base64 = "data:image/png;base64," + base64.b64encode( + buffered.getvalue() + ).decode("UTF-8") self.socketio.emit( "intermediateResult", { @@ -654,7 +667,7 @@ class InvokeAIWebServer: "metadata": {}, "width": width, "height": height, - } + }, ) self.socketio.emit("progressUpdate", progress.to_formatted_dict()) @@ -672,6 +685,14 @@ class InvokeAIWebServer: step_index = 1 nonlocal prior_variations + # paste the inpainting image back onto the original + if "init_mask" in generation_parameters: + image = paste_image_into_bounding_box( + Image.open(init_img_path), + image, + **generation_parameters["bounding_box"], + ) + progress.set_current_status("Generation Complete") self.socketio.emit("progressUpdate", progress.to_formatted_dict()) @@ -760,14 +781,6 @@ class InvokeAIWebServer: self.socketio.emit("progressUpdate", progress.to_formatted_dict()) eventlet.sleep(0) - # paste the inpainting image back onto the original - if "init_mask" in generation_parameters: - image = paste_image_into_bounding_box( - Image.open(init_img_path), - image, - **generation_parameters["bounding_box"], - ) - # restore the stashed URLS and discard the paths, we are about to send the result to client if "init_img" in all_parameters: all_parameters["init_img"] = init_img_url diff --git a/frontend/dist/assets/index.52c8231e.css b/frontend/dist/assets/index.52c8231e.css deleted file mode 100644 index 5aa7a51195..0000000000 --- a/frontend/dist/assets/index.52c8231e.css +++ /dev/null @@ -1 +0,0 @@ -[data-theme=dark]{--white: rgb(255, 255, 255);--root-bg-color: rgb(10, 10, 10);--background-color: rgb(20, 20, 26);--background-color-secondary: rgb(16, 16, 22);--text-color: rgb(255, 255, 255);--text-color-secondary: rgb(160, 162, 188);--subtext-color: rgb(24, 24, 34);--subtext-color-bright: rgb(48, 48, 64);--border-color: rgb(30, 30, 46);--border-color-light: rgb(60, 60, 76);--invalid: rgb(255, 75, 75);--invalid-secondary: rgb(120, 5, 5);--accent-color: rgb(80, 40, 200);--accent-color-hover: rgb(104, 60, 230);--destructive-color: rgb(185, 55, 55);--destructive-color-hover: rgb(255, 75, 75);--border-color-invalid: rgb(255, 80, 50);--box-shadow-color-invalid: rgb(210, 30, 10);--svg-color: rgb(24, 24, 34);--progress-bar-color: rgb(100, 50, 245);--prompt-bg-color: rgb(10, 10, 10);--btn-svg-color: rgb(255, 255, 255);--btn-grey: rgb(30, 32, 42);--btn-grey-hover: rgb(46, 48, 68);--btn-load-more: rgb(30, 32, 42);--btn-load-more-hover: rgb(54, 56, 66);--switch-bg-color: rgb(100, 102, 110);--switch-bg-active-color: rgb(80, 40, 200);--resizeable-handle-border-color: rgb(80, 82, 112);--tab-color: rgb(30, 32, 42);--tab-hover-color: rgb(36, 38, 48);--tab-list-bg: var(--accent-color);--tab-list-text: rgb(202,204,216);--tab-list-text-inactive: rgb(92, 94, 114);--tab-panel-bg: rgb(20, 22, 28);--metadata-bg-color: rgba(0, 0, 0, .7);--metadata-json-bg-color: rgba(255, 255, 255, .1);--status-good-color: rgb(125, 255, 100);--status-good-glow: rgb(40, 215, 40);--status-working-color: rgb(255, 175, 55);--status-working-glow: rgb(255, 160, 55);--status-bad-color: rgb(255, 90, 90);--status-bad-glow: rgb(255, 40, 40);--settings-modal-bg: rgb(30, 32, 42);--input-checkbox-bg: rgb(90, 90, 120);--input-checkbox-checked-bg: rgb(80, 40, 200);--input-checkbox-checked-tick: rgb(0, 0, 0);--input-border-color: rgb(140, 110, 255);--input-box-shadow-color: rgb(80, 30, 210);--error-level-info: rgb(200, 202, 224);--error-level-warning: rgb(255, 225, 105);--error-level-error: rgb(255, 81, 46);--console-bg-color: rgb(30, 30, 36);--console-icon-button-bg-color: rgb(50, 53, 64);--console-icon-button-bg-color-hover: rgb(70, 73, 84);--img2img-img-bg-color: rgb(30, 32, 42);--context-menu-bg-color: rgb(46, 48, 58);--context-menu-box-shadow: none;--context-menu-bg-color-hover: rgb(30, 32, 42);--floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(140, 101, 255, .5))}[data-theme=light]{--white: rgb(255, 255, 255);--root-bg-color: rgb(255, 255, 255);--background-color: rgb(220, 222, 224);--background-color-secondary: rgb(204, 206, 208);--text-color: rgb(0, 0, 0);--text-color-secondary: rgb(40, 40, 40);--subtext-color: rgb(24, 24, 34);--subtext-color-bright: rgb(142, 144, 146);--border-color: rgb(200, 200, 200);--border-color-light: rgb(147, 147, 147);--invalid: rgb(255, 75, 75);--invalid-secondary: rgb(120, 5, 5);--accent-color: rgb(235, 185, 5);--accent-color-hover: rgb(255, 200, 0);--destructive-color: rgb(237, 51, 51);--destructive-color-hover: rgb(255, 55, 55);--border-color-invalid: rgb(255, 80, 50);--box-shadow-color-invalid: none;--svg-color: rgb(186, 188, 190);--progress-bar-color: rgb(235, 185, 5);--prompt-bg-color: rgb(225, 227, 229);--btn-svg-color: rgb(0, 0, 0);--btn-grey: rgb(220, 222, 224);--btn-grey-hover: rgb(230, 232, 234);--btn-load-more: rgb(202, 204, 206);--btn-load-more-hover: rgb(178, 180, 182);--switch-bg-color: rgb(178, 180, 182);--switch-bg-active-color: rgb(235, 185, 5);--resizeable-handle-border-color: rgb(160, 162, 164);--tab-color: rgb(202, 204, 206);--tab-hover-color: rgb(206, 208, 210);--tab-list-bg: rgb(235, 185, 5);--tab-list-text: rgb(0, 0, 0);--tab-list-text-inactive: rgb(106, 108, 110);--tab-panel-bg: rgb(214, 216, 218);--metadata-bg-color: rgba(230, 230, 230, .9);--metadata-json-bg-color: rgba(0, 0, 0, .1);--status-good-color: rgb(21, 126, 0);--status-good-glow: var(--background-color);--status-working-color: rgb(235, 141, 0);--status-working-glow: var(--background-color);--status-bad-color: rgb(202, 0, 0);--status-bad-glow: var(--background-color);--settings-modal-bg: rgb(202, 204, 206);--input-checkbox-bg: rgb(90, 90, 120);--input-checkbox-checked-bg: rgb(235, 185, 5);--input-checkbox-checked-tick: rgb(0, 0, 0);--input-border-color: rgb(0, 0, 0);--input-box-shadow-color: none;--error-level-info: rgb(42, 42, 42);--error-level-warning: rgb(173, 121, 0);--error-level-error: rgb(145, 14, 0);--console-bg-color: rgb(220, 224, 230);--console-icon-button-bg-color: var(--switch-bg-color);--console-icon-button-bg-color-hover: var(--resizeable-handle-border-color);--img2img-img-bg-color: rgb(180, 182, 184);--context-menu-bg-color: var(--background-color);--context-menu-box-shadow: 0px 10px 38px -10px rgba(22, 23, 24, .35), 0px 10px 20px -15px rgba(22, 23, 24, .2);--context-menu-bg-color-hover: var(--background-color-secondary);--floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(0, 0, 0, .3))}@font-face{font-family:Inter;src:url(./Inter.b9a8e5e2.ttf);font-display:swap;font-weight:400;font-style:normal}@font-face{font-family:Inter;src:url(./Inter-Bold.790c108b.ttf);font-display:swap;font-weight:600;font-style:normal}@keyframes slideOut{0%{transform:translate(10rem)}to{transform:translate(0)}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.checkerboard{background-position:0px 0px,10px 10px;background-size:20px 20px;background-image:linear-gradient(45deg,#eee 25%,transparent 25%,transparent 75%,#eee 75%,#eee 100%),linear-gradient(45deg,#eee 25%,white 25%,white 75%,#eee 75%,#eee 100%)}.App{display:grid;width:100vw;height:100vh;background-color:var(--background-color)}.app-content{display:grid;row-gap:1rem;padding:1rem;grid-auto-rows:min-content auto;width:calc(100vw + -0px);height:calc(100vh - .3rem)}.site-header{display:grid;grid-template-columns:auto max-content}.site-header-left-side{display:flex;align-items:center;column-gap:.7rem;padding-left:.5rem}.site-header-left-side img{width:32px;height:32px}.site-header-left-side h1{font-size:1.4rem}.site-header-right-side{display:flex;align-items:center;column-gap:.5rem}.status{font-size:.8rem;font-weight:700}.status-good{color:var(--status-good-color);text-shadow:0 0 10px var(--status-good-glow)}.status-bad{color:var(--status-bad-color);text-shadow:0 0 10px var(--status-bad-glow)}.status-working{color:var(--status-working-color);text-shadow:0 0 10px var(--status-working-glow)}.settings-modal{background-color:var(--settings-modal-bg)!important;max-height:36rem;font-family:Inter}.settings-modal .settings-modal-content{display:grid;row-gap:2rem;overflow-y:scroll}.settings-modal .settings-modal-header{font-weight:700}.settings-modal .settings-modal-items{display:grid;row-gap:.5rem}.settings-modal .settings-modal-items .settings-modal-item{display:grid;grid-auto-flow:column;background-color:var(--background-color);padding:.4rem 1rem;border-radius:.5rem;align-items:center;width:100%}.settings-modal .settings-modal-reset{display:grid;row-gap:1rem}.settings-modal .settings-modal-reset button{min-width:100%;min-height:100%;background-color:var(--destructive-color)!important}.settings-modal .settings-modal-reset button:hover{background-color:var(--destructive-color-hover)!important}.settings-modal .settings-modal-reset button:disabled{background-color:#2d2d37!important}.settings-modal .settings-modal-reset button:disabled:hover{background-color:#2d2d37!important}.settings-modal .settings-modal-reset button svg{width:20px;height:20px;color:var(--btn-svg-color)}.model-list .chakra-accordion{display:grid;row-gap:.5rem}.model-list .chakra-accordion__item{border:none;border-radius:.3rem;background-color:var(--tab-hover-color)}.model-list button{border-radius:.3rem!important}.model-list button[aria-expanded=true]{background-color:var(--tab-hover-color);border-radius:.3rem}.model-list .model-list-button{display:flex;flex-direction:row;row-gap:.5rem;justify-content:space-between;align-items:center;width:100%}.model-list .model-list-header-hint{color:var(--text-color-secondary);font-weight:400}.model-list .model-list-list{display:flex;flex-direction:column;row-gap:.5rem}.model-list .model-list-list .model-list-item{display:flex;column-gap:.5rem;width:100%;justify-content:space-between;align-items:center}.model-list .model-list-list .model-list-item .model-list-item-description{font-size:.9rem}.model-list .model-list-list .model-list-item .model-list-item-status.active{color:var(--status-good-color)}.model-list .model-list-list .model-list-item .model-list-item-status.cached{color:var(--status-working-color)}.model-list .model-list-list .model-list-item .model-list-item-status.not-loaded{color:var(--text-color-secondary)}.hotkeys-modal{width:36rem!important;max-width:36rem!important;display:grid;padding:1rem;background-color:var(--settings-modal-bg)!important;row-gap:1rem;font-family:Inter}.hotkeys-modal h1{font-size:1.2rem;font-weight:700}.hotkeys-modal h2{font-weight:700}.hotkeys-modal-button{display:flex;align-items:center;justify-content:space-between}.hotkeys-modal-items{max-height:36rem;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.hotkeys-modal-items::-webkit-scrollbar{display:none}.hotkeys-modal-items .chakra-accordion{display:grid;row-gap:.5rem}.hotkeys-modal-items .chakra-accordion__item{border:none;border-radius:.3rem;background-color:var(--tab-hover-color)}.hotkeys-modal-items button{border-radius:.3rem!important}.hotkeys-modal-items button[aria-expanded=true]{background-color:var(--tab-hover-color);border-radius:.3rem}.hotkey-modal-category{display:grid;row-gap:.5rem}.hotkey-modal-item{display:grid;grid-template-columns:auto max-content;justify-content:space-between;align-items:center;background-color:var(--background-color);padding:.5rem 1rem;border-radius:.3rem}.hotkey-modal-item .hotkey-info{display:grid}.hotkey-modal-item .hotkey-info .hotkey-title{font-weight:700}.hotkey-modal-item .hotkey-info .hotkey-description{font-size:.9rem;color:var(--text-color-secondary)}.hotkey-modal-item .hotkey-key{font-size:.8rem;font-weight:700;border:2px solid var(--settings-modal-bg);padding:.2rem .5rem;border-radius:.3rem}.console-resizable{display:flex;position:fixed;left:0;bottom:0}.console{width:100vw;display:flex;flex-direction:column;background:var(--console-bg-color);overflow:auto;direction:column;font-family:monospace;padding:0 1rem 1rem 3rem;border-top-width:.3rem;border-color:var(--resizeable-handle-border-color)}.console .console-info-color{color:var(--error-level-info)}.console .console-warning-color{color:var(--error-level-warning)}.console .console-error-color{color:var(--status-bad-color)}.console .console-entry{display:flex;column-gap:.5rem}.console .console-entry .console-timestamp{font-weight:semibold}.console .console-entry .console-message{word-break:break-all}.console-toggle-icon-button{background:var(--console-icon-button-bg-color)!important;position:fixed!important;left:.5rem;bottom:.5rem;z-index:21}.console-toggle-icon-button:hover{background:var(--console-icon-button-bg-color-hover)!important}.console-toggle-icon-button[data-error-seen=true],.console-toggle-icon-button[data-error-seen=true]:hover{background:var(--status-bad-color)!important}.console-autoscroll-icon-button{background:var(--console-icon-button-bg-color)!important;position:fixed!important;left:.5rem;bottom:3rem;z-index:21}.console-autoscroll-icon-button:hover{background:var(--console-icon-button-bg-color-hover)!important}.console-autoscroll-icon-button[data-autoscroll-enabled=true]{background:var(--accent-color)!important}.console-autoscroll-icon-button[data-autoscroll-enabled=true]:hover{background:var(--accent-color-hover)!important}.prompt-bar{display:grid;row-gap:1rem}.prompt-bar input,.prompt-bar textarea{background-color:var(--prompt-bg-color);font-size:1rem;border:2px solid var(--border-color)}.prompt-bar input:hover,.prompt-bar textarea:hover{border:2px solid var(--border-color-light)}.prompt-bar input:focus-visible,.prompt-bar textarea:focus-visible{border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.prompt-bar input[aria-invalid=true],.prompt-bar textarea[aria-invalid=true]{border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.prompt-bar input:disabled,.prompt-bar textarea:disabled{border:2px solid var(--border-color);box-shadow:none}.prompt-bar textarea{min-height:10rem}.process-buttons{display:flex;column-gap:.5rem}.invoke-btn{flex-grow:1;min-width:100%;min-height:100%;background-color:var(--accent-color)!important}.invoke-btn svg{width:18px!important;height:18px!important}.invoke-btn:hover{background-color:var(--accent-color-hover)!important}.invoke-btn:disabled{background-color:#2d2d37!important}.invoke-btn:disabled:hover{background-color:#2d2d37!important}.invoke-btn svg{width:20px;height:20px;color:var(--btn-svg-color)}.cancel-btn{min-width:100%;min-height:100%;background-color:var(--destructive-color)!important}.cancel-btn:hover{background-color:var(--destructive-color-hover)!important}.cancel-btn:disabled{background-color:#2d2d37!important}.cancel-btn:disabled:hover{background-color:#2d2d37!important}.cancel-btn svg{width:20px;height:20px;color:var(--btn-svg-color)}.main-options,.main-options-list{display:grid;row-gap:1rem}.main-options-row{display:grid;grid-template-columns:repeat(3,auto);column-gap:1rem;max-width:22.5rem}.main-option-block{border-radius:.5rem;grid-template-columns:auto!important;row-gap:.4rem}.main-option-block .invokeai__number-input-form-label,.main-option-block .invokeai__select-label{width:100%;font-size:.9rem!important;font-weight:700}.main-option-block .number-input-entry{padding:0;height:2.4rem}.main-option-block .iai-select-picker{height:2.4rem;border-radius:.3rem}.advanced-options-checkbox{padding:1rem;font-weight:700}.advanced-settings{display:grid;row-gap:.5rem}.advanced-settings-item{display:grid;max-width:22.5rem;border:none;border-top:0px;border-radius:.4rem}.advanced-settings-item[aria-expanded=true]{background-color:var(--tab-hover-color);border-radius:0 0 .4rem .4rem}.advanced-settings-panel{background-color:var(--tab-panel-bg);border-radius:0 0 .4rem .4rem;border:2px solid var(--tab-hover-color)}.advanced-settings-header{border-radius:.4rem}.advanced-settings-header[aria-expanded=true]{background-color:var(--tab-color);border-radius:.4rem .4rem 0 0}.advanced-settings-header:hover{background-color:var(--tab-hover-color)!important}.upscale-options{display:grid;grid-template-columns:auto 1fr;column-gap:1rem}.inpainting-bounding-box-settings{display:flex;flex-direction:column;border-radius:.4rem;border:2px solid var(--tab-color)}.inpainting-bounding-box-header{background-color:var(--tab-color);display:flex;flex-direction:row;justify-content:space-between;padding:.5rem 1rem;border-radius:.4rem .4rem 0 0;align-items:center}.inpainting-bounding-box-header button{width:.5rem!important;height:1.2rem!important;background:none!important}.inpainting-bounding-box-header button:hover{background:none!important}.inpainting-bounding-box-header p{font-weight:700}.inpainting-bounding-box-settings-items{padding:1rem;display:flex;flex-direction:column;row-gap:1rem}.inpainting-bounding-box-settings-items .inpainting-bounding-box-reset-icon-btn{background-color:var(--btn-load-more)!important}.inpainting-bounding-box-settings-items .inpainting-bounding-box-reset-icon-btn:hover{background-color:var(--btn-load-more-hover)!important}.inpainting-bounding-box-dimensions-slider-numberinput{display:grid;grid-template-columns:repeat(3,auto);column-gap:1rem}.inpainting-bounding-box-darken{width:max-content}.progress-bar{background-color:var(--root-bg-color);height:.3rem!important;z-index:99}.progress-bar div{background-color:var(--progress-bar-color)}.progress-bar div[data-indeterminate]{background-color:unset;background-image:linear-gradient(to right,transparent 0%,var(--progress-bar-color) 50%,transparent 100%)}.current-image-area{display:flex;flex-direction:column;height:100%;row-gap:1rem;background-color:var(--background-color-secondary);border-radius:.5rem}.current-image-options{width:100%;display:flex;justify-content:center;align-items:center;column-gap:.5rem}.current-image-options .chakra-popover__popper{z-index:11}.current-image-preview{position:relative;justify-content:center;align-items:center;display:flex;width:100%;height:100%}.current-image-preview img{background-color:var(--img2img-img-bg-color);border-radius:.5rem;object-fit:contain;max-width:100%;max-height:100%;height:auto;position:absolute}.current-image-metadata{grid-area:current-image-preview}.current-image-next-prev-buttons{grid-area:current-image-content;display:flex;justify-content:space-between;z-index:1;height:100%;pointer-events:none}.next-prev-button-trigger-area{width:7rem;height:100%;width:15%;display:grid;align-items:center;pointer-events:auto}.next-prev-button-trigger-area.prev-button-trigger-area{justify-content:flex-start}.next-prev-button-trigger-area.next-button-trigger-area{justify-content:flex-end}.next-prev-button{font-size:4rem;fill:var(--white);filter:drop-shadow(0 0 1rem var(--text-color-secondary));opacity:70%}.current-image-display-placeholder{background-color:var(--background-color-secondary);display:grid;display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:.5rem}.current-image-display-placeholder svg{width:10rem;height:10rem;color:var(--svg-color)}.image-gallery-wrapper-enter{transform:translate(150%)}.image-gallery-wrapper-enter-active{transform:translate(0);transition:all .12s ease-out}.image-gallery-wrapper-exit{transform:translate(0)}.image-gallery-wrapper-exit-active{transform:translate(150%);transition:all .12s ease-out}.image-gallery-wrapper{z-index:100}.image-gallery-wrapper[data-pinned=false]{position:fixed;height:100vh;top:0;right:0}.image-gallery-wrapper[data-pinned=false] .image-gallery-popup{border-radius:0;box-shadow:0 0 1rem var(--text-color-a3)}.image-gallery-wrapper[data-pinned=false] .image-gallery-popup .image-gallery-container{max-height:calc(100vh + 4.7rem)}.image-gallery-wrapper .image-gallery-popup{background-color:var(--tab-color);padding:1rem;display:flex;flex-direction:column;row-gap:1rem;border-radius:.5rem;border-left-width:.3rem;border-color:var(--resizeable-handle-border-color)}.image-gallery-wrapper .image-gallery-popup[data-resize-alert=true]{border-color:var(--status-bad-color)}.image-gallery-wrapper .image-gallery-popup .image-gallery-header{display:flex;align-items:center;column-gap:.5rem;justify-content:space-between}.image-gallery-wrapper .image-gallery-popup .image-gallery-header div{display:flex;column-gap:.5rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-icon-btn{background-color:var(--btn-load-more)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-icon-btn:hover{background-color:var(--btn-load-more-hover)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-settings-popover{display:flex;flex-direction:column;row-gap:.5rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-settings-popover div{display:flex;column-gap:.5rem;align-items:center;justify-content:space-between}.image-gallery-wrapper .image-gallery-popup .image-gallery-header h1{font-weight:700}.image-gallery-wrapper .image-gallery-popup .image-gallery-container{display:flex;flex-direction:column;max-height:calc(100vh - (70px + 7rem));overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.image-gallery-wrapper .image-gallery-popup .image-gallery-container::-webkit-scrollbar{display:none}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder{display:flex;flex-direction:column;background-color:var(--background-color-secondary);border-radius:.5rem;place-items:center;padding:2rem;text-align:center}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder p{color:var(--subtext-color-bright);font-family:Inter}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder svg{width:5rem;height:5rem;color:var(--svg-color)}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn{background-color:var(--btn-load-more)!important;font-size:.85rem!important;padding:.5rem;margin-top:1rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn:disabled:hover{background-color:var(--btn-load-more)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn:hover{background-color:var(--btn-load-more-hover)!important}.image-gallery-category-btn-group{width:100%!important;column-gap:0!important;justify-content:stretch!important}.image-gallery-category-btn-group button{flex-grow:1}.image-gallery-category-btn-group button[data-selected=true]{background-color:var(--accent-color)}.image-gallery-category-btn-group button[data-selected=true]:hover{background-color:var(--accent-color-hover)}.image-gallery{display:grid;grid-gap:.5rem}.image-gallery .hoverable-image{padding:.5rem;position:relative}.image-gallery .hoverable-image:before{content:"";display:block;padding-bottom:100%}.image-gallery .hoverable-image .hoverable-image-image{position:absolute;max-width:100%;top:50%;left:50%;transform:translate(-50%,-50%)}.hoverable-image{display:flex;justify-content:center;transition:transform .2s ease-out}.hoverable-image:hover{cursor:pointer;border-radius:.5rem;z-index:2}.hoverable-image .hoverable-image-image{width:100%;height:100%;max-width:100%;max-height:100%}.hoverable-image .hoverable-image-delete-button{position:absolute;top:.25rem;right:.25rem}.hoverable-image .hoverable-image-content{display:flex;position:absolute;top:0;left:0;width:100%;height:100%;align-items:center;justify-content:center}.hoverable-image .hoverable-image-content .hoverable-image-check{fill:var(--status-good-color)}.hoverable-image .hoverable-image-icons{position:absolute;bottom:-2rem;display:grid;width:min-content;grid-template-columns:repeat(2,max-content);border-radius:.4rem;background-color:var(--background-color-secondary);padding:.2rem;gap:.2rem;grid-auto-rows:max-content}.hoverable-image .hoverable-image-icons button{width:12px;height:12px;border-radius:.2rem;padding:10px 0;flex-shrink:2}.hoverable-image .hoverable-image-icons button svg{width:12px;height:12px}.hoverable-image-context-menu{z-index:15;padding:.4rem;border-radius:.25rem;background-color:var(--context-menu-bg-color);box-shadow:var(--context-menu-box-shadow)}.hoverable-image-context-menu [role=menuitem]{font-size:.8rem;line-height:1rem;border-radius:3px;display:flex;align-items:center;height:1.75rem;padding:0 .5rem;position:relative;user-select:none;cursor:pointer;outline:none}.hoverable-image-context-menu [role=menuitem][data-disabled]{color:gray;pointer-events:none;cursor:not-allowed}.hoverable-image-context-menu [role=menuitem][data-warning]{color:var(--status-bad-color)}.hoverable-image-context-menu [role=menuitem][data-highlighted]{background-color:var(--context-menu-bg-color-hover)}.popover-content{background-color:var(--background-color-secondary)!important;border:none!important;border-top:0px;background-color:var(--tab-hover-color);border-radius:0 0 .4rem .4rem}.popover-arrow{background:var(--tab-hover-color)!important;box-shadow:none}.popover-options{background:var(--tab-panel-bg);border-radius:0 0 .4rem .4rem;border:2px solid var(--tab-hover-color);padding:.75rem 1rem;display:grid;grid-auto-rows:max-content;grid-row-gap:.5rem;justify-content:space-between}.popover-header{background:var(--tab-hover-color);border-radius:.4rem .4rem 0 0;font-weight:700;border:none;padding-left:1rem!important}.upscale-popover{width:23rem!important}.image-metadata-viewer{position:absolute;top:0;width:100%;border-radius:.5rem;padding:1rem;background-color:var(--metadata-bg-color);overflow:scroll;max-height:calc(100vh - (70px + 5.4rem));height:100%;z-index:10}.image-json-viewer{border-radius:.5rem;margin:0 .5rem 1rem;padding:1rem;overflow-x:scroll;word-break:break-all;background-color:var(--metadata-json-bg-color)}.app-tabs{display:grid!important;grid-template-columns:min-content auto;column-gap:1rem;height:calc(100vh - (70px + 1rem))}.app-tabs-list{display:grid;row-gap:.3rem;grid-auto-rows:min-content;color:var(--tab-list-text-inactive)}.app-tabs-list button{font-size:.85rem;padding:.5rem}.app-tabs-list button:hover{background-color:var(--tab-hover-color);border-radius:.3rem}.app-tabs-list button svg{width:26px;height:26px}.app-tabs-list button[aria-selected=true]{background-color:var(--tab-list-bg);color:var(--tab-list-text);font-weight:700;border-radius:.3rem;border:none}.app-tabs-panels .app-tabs-panel{padding:0;height:100%}.workarea-wrapper{position:relative;width:100%;height:100%}.workarea-wrapper .workarea-main{display:flex;column-gap:.5rem;height:100%}.workarea-wrapper .workarea-main .workarea-split-view{width:100%;display:grid;grid-template-columns:1fr 1fr;background-color:var(--background-color-secondary);border-radius:.5rem}.workarea-wrapper .workarea-main .workarea-single-view{width:100%;background-color:var(--background-color-secondary);border-radius:.5rem}.workarea-wrapper .workarea-main .workarea-split-view-left,.workarea-wrapper .workarea-main .workarea-split-view-right{display:flex;flex-direction:column;height:100%;width:100%;row-gap:1rem;background-color:var(--background-color-secondary);border-radius:.5rem;padding:1rem}.workarea-wrapper .workarea-main .workarea-split-view-left{padding-right:.5rem}.workarea-wrapper .workarea-main .workarea-split-view-right{padding-left:.5rem}.options-panel-wrapper-enter{transform:translate(-150%)}.options-panel-wrapper-enter-active{transform:translate(0);transition:all .12s ease-out}.options-panel-wrapper-exit{transform:translate(0)}.options-panel-wrapper-exit-active{transform:translate(-150%);transition:all .12s ease-out}.options-panel-wrapper{background-color:var(--background-color);height:calc(100vh - (70px + 1rem));width:22.5rem;max-width:22.5rem;flex-shrink:0;position:relative;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.options-panel-wrapper::-webkit-scrollbar{display:none}.options-panel-wrapper .options-panel{display:flex;flex-direction:column;row-gap:1rem;height:100%;-ms-overflow-style:none;scrollbar-width:none;background-color:var(--background-color)!important}.options-panel-wrapper .options-panel::-webkit-scrollbar{display:none}.options-panel-wrapper[data-pinned=false]{z-index:20;position:fixed;top:0;left:0;filter:var(--floating-panel-drop-shadow);width:24.5rem;max-width:24.5rem;height:100%}.options-panel-wrapper[data-pinned=false] .options-panel-margin{margin:1rem}.options-panel-wrapper .options-panel-pin-button{position:absolute;cursor:pointer;padding:.5rem;top:1rem;right:1rem;z-index:20}.options-panel-wrapper .options-panel-pin-button[data-selected=true]{top:0;right:0}.options-panel-wrapper .options-panel-pin-button svg{opacity:.5}.invoke-ai-logo-wrapper{display:flex;align-items:center;column-gap:.7rem;padding-left:.5rem;padding-top:.3rem}.invoke-ai-logo-wrapper img{width:32px;height:32px}.invoke-ai-logo-wrapper h1{font-size:1.4rem}.text-to-image-area{padding:1rem;height:100%}.image-to-image-area{display:flex;flex-direction:column;row-gap:1rem;width:100%;height:100%}.image-to-image-strength-main-option{display:grid;grid-template-columns:none!important}.image-to-image-strength-main-option .number-input-entry{padding:0 1rem}.init-image-preview-header{display:flex;align-items:center;justify-content:space-between;width:100%}.init-image-preview-header h2{font-weight:700;font-size:.9rem}.init-image-preview{position:relative;height:100%;width:100%;display:flex;align-items:center;justify-content:center}.init-image-preview img{border-radius:.5rem;object-fit:contain;position:absolute}.image-to-image-current-image-display{position:relative}.inpainting-main-area{display:flex;flex-direction:column;align-items:center;row-gap:1rem;width:100%;height:100%}.inpainting-main-area .inpainting-settings{display:flex;align-items:center;column-gap:1rem}.inpainting-main-area .inpainting-settings .inpainting-buttons-group{display:flex;align-items:center;column-gap:.5rem}.inpainting-main-area .inpainting-settings .inpainting-button-dropdown{display:flex;flex-direction:column;row-gap:.5rem}.inpainting-main-area .inpainting-settings .inpainting-color-picker{margin-left:1rem!important}.inpainting-main-area .inpainting-settings .inpainting-slider-numberinput{display:flex;column-gap:1rem;align-items:center}.inpainting-main-area .inpainting-canvas-area{display:flex;flex-direction:column;align-items:center;row-gap:1rem;width:100%;height:100%}.inpainting-main-area .inpainting-canvas-wrapper{display:flex;align-items:center;justify-content:center;position:relative;height:100%;width:100%;border-radius:.5rem}.inpainting-main-area .inpainting-canvas-wrapper .inpainting-alerts{position:absolute;top:0;left:0;display:flex;column-gap:.5rem;z-index:2;padding:.5rem;pointer-events:none;font-size:.9rem;font-weight:700}.inpainting-main-area .inpainting-canvas-wrapper .inpainting-alerts div{background-color:var(--accent-color);color:var(--text-color);padding:.2rem .6rem;border-radius:.25rem}.inpainting-main-area .inpainting-canvas-wrapper .inpainting-canvas-stage{border-radius:.5rem}.inpainting-main-area .inpainting-canvas-wrapper .inpainting-canvas-stage canvas{border-radius:.5rem}.inpainting-options-btn{min-height:2rem}.floating-show-hide-button{position:absolute!important;top:50%;transform:translateY(-50%);z-index:20;padding:0;min-width:1rem;min-height:12rem;background-color:var(--btn-grey)!important}.floating-show-hide-button.left{left:0;border-radius:0 .5rem .5rem 0!important}.floating-show-hide-button.right{right:0;border-radius:.5rem 0 0 .5rem!important}.floating-show-hide-button:hover{background-color:var(--btn-grey-hover)!important}.floating-show-hide-button:disabled{background-color:#2d2d37!important}.floating-show-hide-button:disabled:hover{background-color:#2d2d37!important}.floating-show-hide-button svg{width:20px;height:20px;color:var(--btn-svg-color)}.show-hide-button-options{position:absolute!important;transform:translateY(-50%);z-index:20;min-width:2rem!important;top:50%;left:calc(42px + 2rem);border-radius:0 .5rem .5rem 0!important;display:flex;flex-direction:column;row-gap:.5rem}.show-hide-button-options button{border-radius:0 .3rem .3rem 0;background-color:var(--btn-grey)}.show-hide-button-options button svg{width:18px}.invokeai__number-input-form-control{display:grid;grid-template-columns:max-content auto;column-gap:1rem;align-items:center}.invokeai__number-input-form-control .invokeai__number-input-form-label{color:var(--text-color-secondary);margin-right:0;font-size:1rem;margin-bottom:0;flex-grow:2;white-space:nowrap}.invokeai__number-input-form-control .invokeai__number-input-form-label[data-focus]+.invokeai__number-input-root{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.invokeai__number-input-form-control .invokeai__number-input-form-label[aria-invalid=true]+.invokeai__number-input-root{outline:none;border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.invokeai__number-input-form-control .invokeai__number-input-root{height:2rem;display:grid;grid-template-columns:auto max-content;column-gap:.5rem;align-items:center;background-color:var(--background-color-secondary);border:2px solid var(--border-color);border-radius:.2rem}.invokeai__number-input-form-control .invokeai__number-input-field{border:none;font-weight:700;width:100%;height:auto;padding:0;font-size:.9rem;padding-left:.5rem;padding-right:.5rem}.invokeai__number-input-form-control .invokeai__number-input-field:focus{outline:none;box-shadow:none}.invokeai__number-input-form-control .invokeai__number-input-field:disabled{opacity:.2}.invokeai__number-input-form-control .invokeai__number-input-stepper{display:grid;padding-right:.5rem}.invokeai__number-input-form-control .invokeai__number-input-stepper .invokeai__number-input-stepper-button{border:none;padding:0 .5rem;margin:0 -.5rem}.invokeai__number-input-form-control .invokeai__number-input-stepper .invokeai__number-input-stepper-button svg{width:10px;height:10px}.input{display:grid;grid-template-columns:max-content auto;column-gap:1rem;align-items:center}.input .input-label{color:var(--text-color-secondary);margin-right:0}.input .input-entry{background-color:var(--background-color-secondary);border:2px solid var(--border-color);border-radius:.2rem;font-weight:700}.input .input-entry:focus{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.input .input-entry:disabled{opacity:.2}.input .input-entry[aria-invalid=true]{outline:none;border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.icon-button{background-color:var(--btn-grey);cursor:pointer}.icon-button:hover{background-color:var(--btn-grey-hover)}.icon-button[data-selected=true]{background-color:var(--accent-color)}.icon-button[data-selected=true]:hover{background-color:var(--accent-color-hover)}.icon-button[disabled]{cursor:not-allowed}.invokeai__switch-form-control .invokeai__switch-form-label{display:flex;column-gap:1rem;justify-content:space-between;align-items:center;color:var(--text-color-secondary);font-size:1rem;margin-right:0;margin-bottom:.1rem;white-space:nowrap;width:auto}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root span{background-color:var(--switch-bg-color)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root span span{background-color:var(--white)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root[data-checked] span{background:var(--switch-bg-active-color)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root[data-checked] span span{background-color:var(--white)}.invokeai__select{display:grid;grid-template-columns:repeat(2,max-content);column-gap:1rem;align-items:center;width:max-content}.invokeai__select .invokeai__select-label{color:var(--text-color-secondary);margin-right:0}.invokeai__select .invokeai__select-picker{border:2px solid var(--border-color);background-color:var(--background-color-secondary);font-weight:700;height:2rem;border-radius:.2rem}.invokeai__select .invokeai__select-picker:focus{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.invokeai__select .invokeai__select-option{background-color:var(--background-color-secondary)}.invokeai__slider-form-control{display:flex;column-gap:1rem;justify-content:space-between;align-items:center;width:max-content;padding-right:.25rem}.invokeai__slider-form-control .invokeai__slider-inner-container{display:flex;column-gap:.5rem}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-form-label{color:var(--text-color-secondary);margin:0;margin-right:.5rem;margin-bottom:.1rem}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-root .invokeai__slider-filled-track{background-color:var(--accent-color-hover)}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-root .invokeai__slider-track{background-color:var(--text-color-secondary);height:5px;border-radius:9999px}.invokeai__checkbox .chakra-checkbox__label{margin-top:1px;color:var(--text-color-secondary);font-size:.9rem}.invokeai__checkbox .chakra-checkbox__control{width:1rem;height:1rem;border:none;border-radius:.2rem;background-color:var(--input-checkbox-bg)}.invokeai__checkbox .chakra-checkbox__control svg{width:.6rem;height:.6rem;stroke-width:3px!important}.invokeai__checkbox .chakra-checkbox__control[data-checked]{color:var(--text-color);background-color:var(--input-checkbox-checked-bg)}.invokeai__popover-content{min-width:unset;width:unset!important;padding:1rem;border-radius:.5rem!important;background-color:var(--background-color)!important;border:2px solid var(--border-color)!important}.invokeai__popover-content .invokeai__popover-arrow{background-color:var(--background-color)!important}.invokeai__color-picker .react-colorful__hue-pointer,.invokeai__color-picker .react-colorful__saturation-pointer{width:1.5rem;height:1.5rem;border-color:var(--white)}.dropzone-container{position:absolute;top:0;left:0;width:100vw;height:100vh;z-index:999;backdrop-filter:blur(20px)}.dropzone-container .dropzone-overlay{opacity:.5;width:100%;height:100%;display:flex;flex-direction:column;row-gap:1rem;align-items:center;justify-content:center}.dropzone-container .dropzone-overlay.is-drag-accept{box-shadow:inset 0 0 20rem 1rem var(--status-good-color)}.dropzone-container .dropzone-overlay.is-drag-reject{box-shadow:inset 0 0 20rem 1rem var(--status-bad-color)}.dropzone-container .dropzone-overlay.is-handling-upload{box-shadow:inset 0 0 20rem 1rem var(--status-working-color)}.image-uploader-button-outer{width:100%;height:100%;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:.5rem;color:var(--tab-list-text-inactive);background-color:var(--btn-grey)}.image-uploader-button-outer:hover{background-color:var(--btn-grey-hover)}.image-upload-button-inner{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.image-upload-button{display:flex;flex-direction:column;row-gap:2rem;align-items:center;justify-content:center;text-align:center}.image-upload-button svg{width:4rem!important;height:4rem!important}.image-upload-button h2{font-size:1.2rem!important}.work-in-progress{display:grid;width:100%;height:calc(100vh - (70px + 1rem));grid-auto-rows:max-content;background-color:var(--background-color-secondary);border-radius:.4rem;place-content:center;place-items:center;row-gap:1rem}.work-in-progress h1{font-size:2rem;font-weight:700}.work-in-progress p{text-align:center;max-width:50rem;color:var(--subtext-color-bright)}.guide-popover-arrow{background-color:var(--tab-panel-bg)!important;box-shadow:none!important}.guide-popover-content{background-color:var(--background-color-secondary)!important;border:none!important}.guide-popover-guide-content{background:var(--tab-panel-bg);border:2px solid var(--tab-hover-color);border-radius:.4rem;padding:.75rem 1rem;display:grid;grid-template-rows:repeat(auto-fill,1fr);grid-row-gap:.5rem;justify-content:space-between}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body{-ms-overflow-style:none;scrollbar-width:none;background-color:var(--root-bg-color);overflow:hidden}html::-webkit-scrollbar,body::-webkit-scrollbar{display:none}#root{background-color:var(--root-bg-color);color:var(--text-color);font-family:Inter,Arial,Helvetica,sans-serif} diff --git a/frontend/dist/assets/index.8eb7dfe4.js b/frontend/dist/assets/index.8eb7dfe4.js new file mode 100644 index 0000000000..028ad32993 --- /dev/null +++ b/frontend/dist/assets/index.8eb7dfe4.js @@ -0,0 +1,501 @@ +function Sj(e,t){for(var n=0;nr[i]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerpolicy&&(o.referrerPolicy=i.referrerpolicy),i.crossorigin==="use-credentials"?o.credentials="include":i.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=n(i);fetch(i.href,o)}})();var nu=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function GC(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Gt={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var iv=Symbol.for("react.element"),wj=Symbol.for("react.portal"),Cj=Symbol.for("react.fragment"),_j=Symbol.for("react.strict_mode"),kj=Symbol.for("react.profiler"),Ej=Symbol.for("react.provider"),Pj=Symbol.for("react.context"),Tj=Symbol.for("react.forward_ref"),Lj=Symbol.for("react.suspense"),Aj=Symbol.for("react.memo"),Ij=Symbol.for("react.lazy"),ak=Symbol.iterator;function Mj(e){return e===null||typeof e!="object"?null:(e=ak&&e[ak]||e["@@iterator"],typeof e=="function"?e:null)}var mI={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},vI=Object.assign,yI={};function w0(e,t,n){this.props=e,this.context=t,this.refs=yI,this.updater=n||mI}w0.prototype.isReactComponent={};w0.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};w0.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function xI(){}xI.prototype=w0.prototype;function jC(e,t,n){this.props=e,this.context=t,this.refs=yI,this.updater=n||mI}var qC=jC.prototype=new xI;qC.constructor=jC;vI(qC,w0.prototype);qC.isPureReactComponent=!0;var sk=Array.isArray,bI=Object.prototype.hasOwnProperty,KC={current:null},SI={key:!0,ref:!0,__self:!0,__source:!0};function wI(e,t,n){var r,i={},o=null,a=null;if(t!=null)for(r in t.ref!==void 0&&(a=t.ref),t.key!==void 0&&(o=""+t.key),t)bI.call(t,r)&&!SI.hasOwnProperty(r)&&(i[r]=t[r]);var s=arguments.length-2;if(s===1)i.children=n;else if(1>>1,me=V[X];if(0>>1;Xi(He,oe))jei(ut,He)?(V[X]=ut,V[je]=oe,X=je):(V[X]=He,V[Se]=oe,X=Se);else if(jei(ut,oe))V[X]=ut,V[je]=oe,X=je;else break e}}return ae}function i(V,ae){var oe=V.sortIndex-ae.sortIndex;return oe!==0?oe:V.id-ae.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var a=Date,s=a.now();e.unstable_now=function(){return a.now()-s}}var l=[],d=[],p=1,g=null,m=3,y=!1,b=!1,S=!1,E=typeof setTimeout=="function"?setTimeout:null,P=typeof clearTimeout=="function"?clearTimeout:null,k=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function L(V){for(var ae=n(d);ae!==null;){if(ae.callback===null)r(d);else if(ae.startTime<=V)r(d),ae.sortIndex=ae.expirationTime,t(l,ae);else break;ae=n(d)}}function I(V){if(S=!1,L(V),!b)if(n(l)!==null)b=!0,xe(O);else{var ae=n(d);ae!==null&&Y(I,ae.startTime-V)}}function O(V,ae){b=!1,S&&(S=!1,P(F),F=-1),y=!0;var oe=m;try{for(L(ae),g=n(l);g!==null&&(!(g.expirationTime>ae)||V&&!q());){var X=g.callback;if(typeof X=="function"){g.callback=null,m=g.priorityLevel;var me=X(g.expirationTime<=ae);ae=e.unstable_now(),typeof me=="function"?g.callback=me:g===n(l)&&r(l),L(ae)}else r(l);g=n(l)}if(g!==null)var ve=!0;else{var Se=n(d);Se!==null&&Y(I,Se.startTime-ae),ve=!1}return ve}finally{g=null,m=oe,y=!1}}var N=!1,D=null,F=-1,U=5,W=-1;function q(){return!(e.unstable_now()-WV||125X?(V.sortIndex=oe,t(d,V),n(l)===null&&V===n(d)&&(S?(P(F),F=-1):S=!0,Y(I,oe-X))):(V.sortIndex=me,t(l,V),b||y||(b=!0,xe(O))),V},e.unstable_shouldYield=q,e.unstable_wrapCallback=function(V){var ae=m;return function(){var oe=m;m=ae;try{return V.apply(this,arguments)}finally{m=oe}}}})(CI);(function(e){e.exports=CI})(Ip);/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var _I=C.exports,oa=Ip.exports;function Re(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),jS=Object.prototype.hasOwnProperty,zj=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,uk={},ck={};function Fj(e){return jS.call(ck,e)?!0:jS.call(uk,e)?!1:zj.test(e)?ck[e]=!0:(uk[e]=!0,!1)}function Bj(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function $j(e,t,n,r){if(t===null||typeof t>"u"||Bj(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function io(e,t,n,r,i,o,a){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=a}var Li={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Li[e]=new io(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Li[t]=new io(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){Li[e]=new io(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Li[e]=new io(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Li[e]=new io(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){Li[e]=new io(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){Li[e]=new io(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){Li[e]=new io(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){Li[e]=new io(e,5,!1,e.toLowerCase(),null,!1,!1)});var YC=/[\-:]([a-z])/g;function XC(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(YC,XC);Li[t]=new io(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(YC,XC);Li[t]=new io(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(YC,XC);Li[t]=new io(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){Li[e]=new io(e,1,!1,e.toLowerCase(),null,!1,!1)});Li.xlinkHref=new io("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){Li[e]=new io(e,1,!1,e.toLowerCase(),null,!0,!0)});function QC(e,t,n,r){var i=Li.hasOwnProperty(t)?Li[t]:null;(i!==null?i.type!==0:r||!(2s||i[a]!==o[s]){var l=` +`+i[a].replace(" at new "," at ");return e.displayName&&l.includes("")&&(l=l.replace("",e.displayName)),l}while(1<=a&&0<=s);break}}}finally{ib=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?vg(e):""}function Hj(e){switch(e.tag){case 5:return vg(e.type);case 16:return vg("Lazy");case 13:return vg("Suspense");case 19:return vg("SuspenseList");case 0:case 2:case 15:return e=ob(e.type,!1),e;case 11:return e=ob(e.type.render,!1),e;case 1:return e=ob(e.type,!0),e;default:return""}}function YS(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case mp:return"Fragment";case gp:return"Portal";case qS:return"Profiler";case JC:return"StrictMode";case KS:return"Suspense";case ZS:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case PI:return(e.displayName||"Context")+".Consumer";case EI:return(e._context.displayName||"Context")+".Provider";case e9:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case t9:return t=e.displayName||null,t!==null?t:YS(e.type)||"Memo";case bc:t=e._payload,e=e._init;try{return YS(e(t))}catch{}}return null}function Wj(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return YS(t);case 8:return t===JC?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function Vc(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function LI(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Vj(e){var t=LI(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var i=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(a){r=""+a,o.call(this,a)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(a){r=""+a},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function w2(e){e._valueTracker||(e._valueTracker=Vj(e))}function AI(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=LI(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function S3(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function XS(e,t){var n=t.checked;return dr({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function fk(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Vc(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function II(e,t){t=t.checked,t!=null&&QC(e,"checked",t,!1)}function QS(e,t){II(e,t);var n=Vc(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?JS(e,t.type,n):t.hasOwnProperty("defaultValue")&&JS(e,t.type,Vc(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function hk(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function JS(e,t,n){(t!=="number"||S3(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var yg=Array.isArray;function Mp(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i"+t.valueOf().toString()+"",t=C2.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function fm(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Dg={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Uj=["Webkit","ms","Moz","O"];Object.keys(Dg).forEach(function(e){Uj.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Dg[t]=Dg[e]})});function NI(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Dg.hasOwnProperty(e)&&Dg[e]?(""+t).trim():t+"px"}function DI(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,i=NI(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}var Gj=dr({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function nw(e,t){if(t){if(Gj[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(Re(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(Re(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(Re(61))}if(t.style!=null&&typeof t.style!="object")throw Error(Re(62))}}function rw(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var iw=null;function n9(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var ow=null,Rp=null,Op=null;function mk(e){if(e=sv(e)){if(typeof ow!="function")throw Error(Re(280));var t=e.stateNode;t&&(t=V5(t),ow(e.stateNode,e.type,t))}}function zI(e){Rp?Op?Op.push(e):Op=[e]:Rp=e}function FI(){if(Rp){var e=Rp,t=Op;if(Op=Rp=null,mk(e),t)for(e=0;e>>=0,e===0?32:31-(nq(e)/rq|0)|0}var _2=64,k2=4194304;function xg(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function k3(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,i=e.suspendedLanes,o=e.pingedLanes,a=n&268435455;if(a!==0){var s=a&~i;s!==0?r=xg(s):(o&=a,o!==0&&(r=xg(o)))}else a=n&~i,a!==0?r=xg(a):o!==0&&(r=xg(o));if(r===0)return 0;if(t!==0&&t!==r&&(t&i)===0&&(i=r&-r,o=t&-t,i>=o||i===16&&(o&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function ov(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-ys(t),e[t]=n}function sq(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Fg),kk=String.fromCharCode(32),Ek=!1;function iM(e,t){switch(e){case"keyup":return Nq.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function oM(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var vp=!1;function zq(e,t){switch(e){case"compositionend":return oM(t);case"keypress":return t.which!==32?null:(Ek=!0,kk);case"textInput":return e=t.data,e===kk&&Ek?null:e;default:return null}}function Fq(e,t){if(vp)return e==="compositionend"||!c9&&iM(e,t)?(e=nM(),Ry=s9=Pc=null,vp=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Ak(n)}}function uM(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?uM(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function cM(){for(var e=window,t=S3();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=S3(e.document)}return t}function d9(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function qq(e){var t=cM(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&uM(n.ownerDocument.documentElement,n)){if(r!==null&&d9(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var i=n.textContent.length,o=Math.min(r.start,i);r=r.end===void 0?o:Math.min(r.end,i),!e.extend&&o>r&&(i=r,r=o,o=i),i=Ik(n,o);var a=Ik(n,r);i&&a&&(e.rangeCount!==1||e.anchorNode!==i.node||e.anchorOffset!==i.offset||e.focusNode!==a.node||e.focusOffset!==a.offset)&&(t=t.createRange(),t.setStart(i.node,i.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(a.node,a.offset)):(t.setEnd(a.node,a.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,yp=null,dw=null,$g=null,fw=!1;function Mk(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;fw||yp==null||yp!==S3(r)||(r=yp,"selectionStart"in r&&d9(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),$g&&ym($g,r)||($g=r,r=T3(dw,"onSelect"),0Sp||(e.current=yw[Sp],yw[Sp]=null,Sp--)}function Un(e,t){Sp++,yw[Sp]=e.current,e.current=t}var Uc={},$i=Jc(Uc),_o=Jc(!1),Mf=Uc;function r0(e,t){var n=e.type.contextTypes;if(!n)return Uc;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i={},o;for(o in n)i[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function ko(e){return e=e.childContextTypes,e!=null}function A3(){Kn(_o),Kn($i)}function Bk(e,t,n){if($i.current!==Uc)throw Error(Re(168));Un($i,t),Un(_o,n)}function xM(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var i in r)if(!(i in t))throw Error(Re(108,Wj(e)||"Unknown",i));return dr({},n,r)}function I3(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Uc,Mf=$i.current,Un($i,e),Un(_o,_o.current),!0}function $k(e,t,n){var r=e.stateNode;if(!r)throw Error(Re(169));n?(e=xM(e,t,Mf),r.__reactInternalMemoizedMergedChildContext=e,Kn(_o),Kn($i),Un($i,e)):Kn(_o),Un(_o,n)}var tu=null,U5=!1,xb=!1;function bM(e){tu===null?tu=[e]:tu.push(e)}function oK(e){U5=!0,bM(e)}function ed(){if(!xb&&tu!==null){xb=!0;var e=0,t=kn;try{var n=tu;for(kn=1;e>=a,i-=a,iu=1<<32-ys(t)+i|n<F?(U=D,D=null):U=D.sibling;var W=m(P,D,L[F],I);if(W===null){D===null&&(D=U);break}e&&D&&W.alternate===null&&t(P,D),k=o(W,k,F),N===null?O=W:N.sibling=W,N=W,D=U}if(F===L.length)return n(P,D),tr&&tf(P,F),O;if(D===null){for(;FF?(U=D,D=null):U=D.sibling;var q=m(P,D,W.value,I);if(q===null){D===null&&(D=U);break}e&&D&&q.alternate===null&&t(P,D),k=o(q,k,F),N===null?O=q:N.sibling=q,N=q,D=U}if(W.done)return n(P,D),tr&&tf(P,F),O;if(D===null){for(;!W.done;F++,W=L.next())W=g(P,W.value,I),W!==null&&(k=o(W,k,F),N===null?O=W:N.sibling=W,N=W);return tr&&tf(P,F),O}for(D=r(P,D);!W.done;F++,W=L.next())W=y(D,P,F,W.value,I),W!==null&&(e&&W.alternate!==null&&D.delete(W.key===null?F:W.key),k=o(W,k,F),N===null?O=W:N.sibling=W,N=W);return e&&D.forEach(function(pe){return t(P,pe)}),tr&&tf(P,F),O}function E(P,k,L,I){if(typeof L=="object"&&L!==null&&L.type===mp&&L.key===null&&(L=L.props.children),typeof L=="object"&&L!==null){switch(L.$$typeof){case S2:e:{for(var O=L.key,N=k;N!==null;){if(N.key===O){if(O=L.type,O===mp){if(N.tag===7){n(P,N.sibling),k=i(N,L.props.children),k.return=P,P=k;break e}}else if(N.elementType===O||typeof O=="object"&&O!==null&&O.$$typeof===bc&&qk(O)===N.type){n(P,N.sibling),k=i(N,L.props),k.ref=eg(P,N,L),k.return=P,P=k;break e}n(P,N);break}else t(P,N);N=N.sibling}L.type===mp?(k=kf(L.props.children,P.mode,I,L.key),k.return=P,P=k):(I=Hy(L.type,L.key,L.props,null,P.mode,I),I.ref=eg(P,k,L),I.return=P,P=I)}return a(P);case gp:e:{for(N=L.key;k!==null;){if(k.key===N)if(k.tag===4&&k.stateNode.containerInfo===L.containerInfo&&k.stateNode.implementation===L.implementation){n(P,k.sibling),k=i(k,L.children||[]),k.return=P,P=k;break e}else{n(P,k);break}else t(P,k);k=k.sibling}k=Pb(L,P.mode,I),k.return=P,P=k}return a(P);case bc:return N=L._init,E(P,k,N(L._payload),I)}if(yg(L))return b(P,k,L,I);if(Z1(L))return S(P,k,L,I);M2(P,L)}return typeof L=="string"&&L!==""||typeof L=="number"?(L=""+L,k!==null&&k.tag===6?(n(P,k.sibling),k=i(k,L),k.return=P,P=k):(n(P,k),k=Eb(L,P.mode,I),k.return=P,P=k),a(P)):n(P,k)}return E}var o0=TM(!0),LM=TM(!1),lv={},pl=Jc(lv),wm=Jc(lv),Cm=Jc(lv);function pf(e){if(e===lv)throw Error(Re(174));return e}function b9(e,t){switch(Un(Cm,t),Un(wm,e),Un(pl,lv),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:tw(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=tw(t,e)}Kn(pl),Un(pl,t)}function a0(){Kn(pl),Kn(wm),Kn(Cm)}function AM(e){pf(Cm.current);var t=pf(pl.current),n=tw(t,e.type);t!==n&&(Un(wm,e),Un(pl,n))}function S9(e){wm.current===e&&(Kn(pl),Kn(wm))}var lr=Jc(0);function z3(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var bb=[];function w9(){for(var e=0;en?n:4,e(!0);var r=Sb.transition;Sb.transition={};try{e(!1),t()}finally{kn=n,Sb.transition=r}}function jM(){return Fa().memoizedState}function uK(e,t,n){var r=Bc(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},qM(e))KM(t,n);else if(n=_M(e,t,n,r),n!==null){var i=to();xs(n,e,r,i),ZM(n,t,r)}}function cK(e,t,n){var r=Bc(e),i={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(qM(e))KM(t,i);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var a=t.lastRenderedState,s=o(a,n);if(i.hasEagerState=!0,i.eagerState=s,_s(s,a)){var l=t.interleaved;l===null?(i.next=i,y9(t)):(i.next=l.next,l.next=i),t.interleaved=i;return}}catch{}finally{}n=_M(e,t,i,r),n!==null&&(i=to(),xs(n,e,r,i),ZM(n,t,r))}}function qM(e){var t=e.alternate;return e===cr||t!==null&&t===cr}function KM(e,t){Hg=F3=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function ZM(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,i9(e,n)}}var B3={readContext:za,useCallback:Oi,useContext:Oi,useEffect:Oi,useImperativeHandle:Oi,useInsertionEffect:Oi,useLayoutEffect:Oi,useMemo:Oi,useReducer:Oi,useRef:Oi,useState:Oi,useDebugValue:Oi,useDeferredValue:Oi,useTransition:Oi,useMutableSource:Oi,useSyncExternalStore:Oi,useId:Oi,unstable_isNewReconciler:!1},dK={readContext:za,useCallback:function(e,t){return rl().memoizedState=[e,t===void 0?null:t],e},useContext:za,useEffect:Zk,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,zy(4194308,4,HM.bind(null,t,e),n)},useLayoutEffect:function(e,t){return zy(4194308,4,e,t)},useInsertionEffect:function(e,t){return zy(4,2,e,t)},useMemo:function(e,t){var n=rl();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=rl();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=uK.bind(null,cr,e),[r.memoizedState,e]},useRef:function(e){var t=rl();return e={current:e},t.memoizedState=e},useState:Kk,useDebugValue:P9,useDeferredValue:function(e){return rl().memoizedState=e},useTransition:function(){var e=Kk(!1),t=e[0];return e=lK.bind(null,e[1]),rl().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=cr,i=rl();if(tr){if(n===void 0)throw Error(Re(407));n=n()}else{if(n=t(),si===null)throw Error(Re(349));(Of&30)!==0||RM(r,t,n)}i.memoizedState=n;var o={value:n,getSnapshot:t};return i.queue=o,Zk(NM.bind(null,r,o,e),[e]),r.flags|=2048,Em(9,OM.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=rl(),t=si.identifierPrefix;if(tr){var n=ou,r=iu;n=(r&~(1<<32-ys(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=_m++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=a.createElement(n,{is:r.is}):(e=a.createElement(n),n==="select"&&(a=e,r.multiple?a.multiple=!0:r.size&&(a.size=r.size))):e=a.createElementNS(e,n),e[ul]=t,e[Sm]=r,iR(e,t,!1,!1),t.stateNode=e;e:{switch(a=rw(n,r),n){case"dialog":jn("cancel",e),jn("close",e),i=r;break;case"iframe":case"object":case"embed":jn("load",e),i=r;break;case"video":case"audio":for(i=0;il0&&(t.flags|=128,r=!0,tg(o,!1),t.lanes=4194304)}else{if(!r)if(e=z3(a),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),tg(o,!0),o.tail===null&&o.tailMode==="hidden"&&!a.alternate&&!tr)return Ni(t),null}else 2*Mr()-o.renderingStartTime>l0&&n!==1073741824&&(t.flags|=128,r=!0,tg(o,!1),t.lanes=4194304);o.isBackwards?(a.sibling=t.child,t.child=a):(n=o.last,n!==null?n.sibling=a:t.child=a,o.last=a)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=Mr(),t.sibling=null,n=lr.current,Un(lr,r?n&1|2:n&1),t):(Ni(t),null);case 22:case 23:return R9(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Xo&1073741824)!==0&&(Ni(t),t.subtreeFlags&6&&(t.flags|=8192)):Ni(t),null;case 24:return null;case 25:return null}throw Error(Re(156,t.tag))}function xK(e,t){switch(h9(t),t.tag){case 1:return ko(t.type)&&A3(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return a0(),Kn(_o),Kn($i),w9(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return S9(t),null;case 13:if(Kn(lr),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(Re(340));i0()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Kn(lr),null;case 4:return a0(),null;case 10:return v9(t.type._context),null;case 22:case 23:return R9(),null;case 24:return null;default:return null}}var O2=!1,Fi=!1,bK=typeof WeakSet=="function"?WeakSet:Set,Qe=null;function kp(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){br(e,t,r)}else n.current=null}function Aw(e,t,n){try{n()}catch(r){br(e,t,r)}}var iE=!1;function SK(e,t){if(hw=E3,e=cM(),d9(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var i=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var a=0,s=-1,l=-1,d=0,p=0,g=e,m=null;t:for(;;){for(var y;g!==n||i!==0&&g.nodeType!==3||(s=a+i),g!==o||r!==0&&g.nodeType!==3||(l=a+r),g.nodeType===3&&(a+=g.nodeValue.length),(y=g.firstChild)!==null;)m=g,g=y;for(;;){if(g===e)break t;if(m===n&&++d===i&&(s=a),m===o&&++p===r&&(l=a),(y=g.nextSibling)!==null)break;g=m,m=g.parentNode}g=y}n=s===-1||l===-1?null:{start:s,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(pw={focusedElem:e,selectionRange:n},E3=!1,Qe=t;Qe!==null;)if(t=Qe,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Qe=e;else for(;Qe!==null;){t=Qe;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var S=b.memoizedProps,E=b.memoizedState,P=t.stateNode,k=P.getSnapshotBeforeUpdate(t.elementType===t.type?S:hs(t.type,S),E);P.__reactInternalSnapshotBeforeUpdate=k}break;case 3:var L=t.stateNode.containerInfo;L.nodeType===1?L.textContent="":L.nodeType===9&&L.documentElement&&L.removeChild(L.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(Re(163))}}catch(I){br(t,t.return,I)}if(e=t.sibling,e!==null){e.return=t.return,Qe=e;break}Qe=t.return}return b=iE,iE=!1,b}function Wg(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var i=r=r.next;do{if((i.tag&e)===e){var o=i.destroy;i.destroy=void 0,o!==void 0&&Aw(t,n,o)}i=i.next}while(i!==r)}}function q5(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Iw(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function sR(e){var t=e.alternate;t!==null&&(e.alternate=null,sR(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[ul],delete t[Sm],delete t[vw],delete t[rK],delete t[iK])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function lR(e){return e.tag===5||e.tag===3||e.tag===4}function oE(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||lR(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Mw(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=L3));else if(r!==4&&(e=e.child,e!==null))for(Mw(e,t,n),e=e.sibling;e!==null;)Mw(e,t,n),e=e.sibling}function Rw(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Rw(e,t,n),e=e.sibling;e!==null;)Rw(e,t,n),e=e.sibling}var Ci=null,ps=!1;function hc(e,t,n){for(n=n.child;n!==null;)uR(e,t,n),n=n.sibling}function uR(e,t,n){if(hl&&typeof hl.onCommitFiberUnmount=="function")try{hl.onCommitFiberUnmount(B5,n)}catch{}switch(n.tag){case 5:Fi||kp(n,t);case 6:var r=Ci,i=ps;Ci=null,hc(e,t,n),Ci=r,ps=i,Ci!==null&&(ps?(e=Ci,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):Ci.removeChild(n.stateNode));break;case 18:Ci!==null&&(ps?(e=Ci,n=n.stateNode,e.nodeType===8?yb(e.parentNode,n):e.nodeType===1&&yb(e,n),mm(e)):yb(Ci,n.stateNode));break;case 4:r=Ci,i=ps,Ci=n.stateNode.containerInfo,ps=!0,hc(e,t,n),Ci=r,ps=i;break;case 0:case 11:case 14:case 15:if(!Fi&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){i=r=r.next;do{var o=i,a=o.destroy;o=o.tag,a!==void 0&&((o&2)!==0||(o&4)!==0)&&Aw(n,t,a),i=i.next}while(i!==r)}hc(e,t,n);break;case 1:if(!Fi&&(kp(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(s){br(n,t,s)}hc(e,t,n);break;case 21:hc(e,t,n);break;case 22:n.mode&1?(Fi=(r=Fi)||n.memoizedState!==null,hc(e,t,n),Fi=r):hc(e,t,n);break;default:hc(e,t,n)}}function aE(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new bK),t.forEach(function(r){var i=AK.bind(null,e,r);n.has(r)||(n.add(r),r.then(i,i))})}}function ss(e,t){var n=t.deletions;if(n!==null)for(var r=0;ri&&(i=a),r&=~o}if(r=i,r=Mr()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*CK(r/1960))-r,10e?16:e,Tc===null)var r=!1;else{if(e=Tc,Tc=null,W3=0,(tn&6)!==0)throw Error(Re(331));var i=tn;for(tn|=4,Qe=e.current;Qe!==null;){var o=Qe,a=o.child;if((Qe.flags&16)!==0){var s=o.deletions;if(s!==null){for(var l=0;lMr()-I9?_f(e,0):A9|=n),Eo(e,t)}function vR(e,t){t===0&&((e.mode&1)===0?t=1:(t=k2,k2<<=1,(k2&130023424)===0&&(k2=4194304)));var n=to();e=cu(e,t),e!==null&&(ov(e,t,n),Eo(e,n))}function LK(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),vR(e,n)}function AK(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,i=e.memoizedState;i!==null&&(n=i.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(Re(314))}r!==null&&r.delete(t),vR(e,n)}var yR;yR=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||_o.current)Co=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return Co=!1,vK(e,t,n);Co=(e.flags&131072)!==0}else Co=!1,tr&&(t.flags&1048576)!==0&&SM(t,R3,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Fy(e,t),e=t.pendingProps;var i=r0(t,$i.current);Dp(t,n),i=_9(null,t,r,e,i,n);var o=k9();return t.flags|=1,typeof i=="object"&&i!==null&&typeof i.render=="function"&&i.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,ko(r)?(o=!0,I3(t)):o=!1,t.memoizedState=i.state!==null&&i.state!==void 0?i.state:null,x9(t),i.updater=G5,t.stateNode=i,i._reactInternals=t,Cw(t,r,e,n),t=Ew(null,t,r,!0,o,n)):(t.tag=0,tr&&o&&f9(t),Qi(null,t,i,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Fy(e,t),e=t.pendingProps,i=r._init,r=i(r._payload),t.type=r,i=t.tag=MK(r),e=hs(r,e),i){case 0:t=kw(null,t,r,e,n);break e;case 1:t=tE(null,t,r,e,n);break e;case 11:t=Jk(null,t,r,e,n);break e;case 14:t=eE(null,t,r,hs(r.type,e),n);break e}throw Error(Re(306,r,""))}return t;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:hs(r,i),kw(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:hs(r,i),tE(e,t,r,i,n);case 3:e:{if(tR(t),e===null)throw Error(Re(387));r=t.pendingProps,o=t.memoizedState,i=o.element,kM(e,t),D3(t,r,null,n);var a=t.memoizedState;if(r=a.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:a.cache,pendingSuspenseBoundaries:a.pendingSuspenseBoundaries,transitions:a.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){i=s0(Error(Re(423)),t),t=nE(e,t,r,n,i);break e}else if(r!==i){i=s0(Error(Re(424)),t),t=nE(e,t,r,n,i);break e}else for(Jo=Dc(t.stateNode.containerInfo.firstChild),ta=t,tr=!0,ms=null,n=LM(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(i0(),r===i){t=du(e,t,n);break e}Qi(e,t,r,n)}t=t.child}return t;case 5:return AM(t),e===null&&bw(t),r=t.type,i=t.pendingProps,o=e!==null?e.memoizedProps:null,a=i.children,gw(r,i)?a=null:o!==null&&gw(r,o)&&(t.flags|=32),eR(e,t),Qi(e,t,a,n),t.child;case 6:return e===null&&bw(t),null;case 13:return nR(e,t,n);case 4:return b9(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=o0(t,null,r,n):Qi(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:hs(r,i),Jk(e,t,r,i,n);case 7:return Qi(e,t,t.pendingProps,n),t.child;case 8:return Qi(e,t,t.pendingProps.children,n),t.child;case 12:return Qi(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,o=t.memoizedProps,a=i.value,Un(O3,r._currentValue),r._currentValue=a,o!==null)if(_s(o.value,a)){if(o.children===i.children&&!_o.current){t=du(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var s=o.dependencies;if(s!==null){a=o.child;for(var l=s.firstContext;l!==null;){if(l.context===r){if(o.tag===1){l=su(-1,n&-n),l.tag=2;var d=o.updateQueue;if(d!==null){d=d.shared;var p=d.pending;p===null?l.next=l:(l.next=p.next,p.next=l),d.pending=l}}o.lanes|=n,l=o.alternate,l!==null&&(l.lanes|=n),Sw(o.return,n,t),s.lanes|=n;break}l=l.next}}else if(o.tag===10)a=o.type===t.type?null:o.child;else if(o.tag===18){if(a=o.return,a===null)throw Error(Re(341));a.lanes|=n,s=a.alternate,s!==null&&(s.lanes|=n),Sw(a,n,t),a=o.sibling}else a=o.child;if(a!==null)a.return=o;else for(a=o;a!==null;){if(a===t){a=null;break}if(o=a.sibling,o!==null){o.return=a.return,a=o;break}a=a.return}o=a}Qi(e,t,i.children,n),t=t.child}return t;case 9:return i=t.type,r=t.pendingProps.children,Dp(t,n),i=za(i),r=r(i),t.flags|=1,Qi(e,t,r,n),t.child;case 14:return r=t.type,i=hs(r,t.pendingProps),i=hs(r.type,i),eE(e,t,r,i,n);case 15:return QM(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:hs(r,i),Fy(e,t),t.tag=1,ko(r)?(e=!0,I3(t)):e=!1,Dp(t,n),PM(t,r,i),Cw(t,r,i,n),Ew(null,t,r,!0,e,n);case 19:return rR(e,t,n);case 22:return JM(e,t,n)}throw Error(Re(156,t.tag))};function xR(e,t){return GI(e,t)}function IK(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Ma(e,t,n,r){return new IK(e,t,n,r)}function N9(e){return e=e.prototype,!(!e||!e.isReactComponent)}function MK(e){if(typeof e=="function")return N9(e)?1:0;if(e!=null){if(e=e.$$typeof,e===e9)return 11;if(e===t9)return 14}return 2}function $c(e,t){var n=e.alternate;return n===null?(n=Ma(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Hy(e,t,n,r,i,o){var a=2;if(r=e,typeof e=="function")N9(e)&&(a=1);else if(typeof e=="string")a=5;else e:switch(e){case mp:return kf(n.children,i,o,t);case JC:a=8,i|=8;break;case qS:return e=Ma(12,n,t,i|2),e.elementType=qS,e.lanes=o,e;case KS:return e=Ma(13,n,t,i),e.elementType=KS,e.lanes=o,e;case ZS:return e=Ma(19,n,t,i),e.elementType=ZS,e.lanes=o,e;case TI:return Z5(n,i,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case EI:a=10;break e;case PI:a=9;break e;case e9:a=11;break e;case t9:a=14;break e;case bc:a=16,r=null;break e}throw Error(Re(130,e==null?e:typeof e,""))}return t=Ma(a,n,t,i),t.elementType=e,t.type=r,t.lanes=o,t}function kf(e,t,n,r){return e=Ma(7,e,r,t),e.lanes=n,e}function Z5(e,t,n,r){return e=Ma(22,e,r,t),e.elementType=TI,e.lanes=n,e.stateNode={isHidden:!1},e}function Eb(e,t,n){return e=Ma(6,e,null,t),e.lanes=n,e}function Pb(e,t,n){return t=Ma(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function RK(e,t,n,r,i){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=sb(0),this.expirationTimes=sb(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=sb(0),this.identifierPrefix=r,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function D9(e,t,n,r,i,o,a,s,l){return e=new RK(e,t,n,s,l),t===1?(t=1,o===!0&&(t|=8)):t=0,o=Ma(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},x9(o),e}function OK(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=ua})(El);const z2=GC(El.exports);var pE=El.exports;GS.createRoot=pE.createRoot,GS.hydrateRoot=pE.hydrateRoot;var gl=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,e4={exports:{}},t4={};/** + * @license React + * react-jsx-runtime.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var BK=C.exports,$K=Symbol.for("react.element"),HK=Symbol.for("react.fragment"),WK=Object.prototype.hasOwnProperty,VK=BK.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,UK={key:!0,ref:!0,__self:!0,__source:!0};function CR(e,t,n){var r,i={},o=null,a=null;n!==void 0&&(o=""+n),t.key!==void 0&&(o=""+t.key),t.ref!==void 0&&(a=t.ref);for(r in t)WK.call(t,r)&&!UK.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)i[r]===void 0&&(i[r]=t[r]);return{$$typeof:$K,type:e,key:o,ref:a,props:i,_owner:VK.current}}t4.Fragment=HK;t4.jsx=CR;t4.jsxs=CR;(function(e){e.exports=t4})(e4);const Fn=e4.exports.Fragment,w=e4.exports.jsx,te=e4.exports.jsxs;var $9=C.exports.createContext({});$9.displayName="ColorModeContext";function n4(){const e=C.exports.useContext($9);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var F2={light:"chakra-ui-light",dark:"chakra-ui-dark"};function GK(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const i=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,i?.()},setClassName(r){document.body.classList.add(r?F2.dark:F2.light),document.body.classList.remove(r?F2.light:F2.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const i=n.query(),o=a=>{r(a.matches?"dark":"light")};return typeof i.addListener=="function"?i.addListener(o):i.addEventListener("change",o),()=>{typeof i.removeListener=="function"?i.removeListener(o):i.removeEventListener("change",o)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var jK="chakra-ui-color-mode";function qK(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var KK=qK(jK),gE=()=>{};function mE(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function _R(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:i,disableTransitionOnChange:o}={},colorModeManager:a=KK}=e,s=i==="dark"?"dark":"light",[l,d]=C.exports.useState(()=>mE(a,s)),[p,g]=C.exports.useState(()=>mE(a)),{getSystemTheme:m,setClassName:y,setDataset:b,addListener:S}=C.exports.useMemo(()=>GK({preventTransition:o}),[o]),E=i==="system"&&!l?p:l,P=C.exports.useCallback(I=>{const O=I==="system"?m():I;d(O),y(O==="dark"),b(O),a.set(O)},[a,m,y,b]);gl(()=>{i==="system"&&g(m())},[]),C.exports.useEffect(()=>{const I=a.get();if(I){P(I);return}if(i==="system"){P("system");return}P(s)},[a,s,i,P]);const k=C.exports.useCallback(()=>{P(E==="dark"?"light":"dark")},[E,P]);C.exports.useEffect(()=>{if(!!r)return S(P)},[r,S,P]);const L=C.exports.useMemo(()=>({colorMode:t??E,toggleColorMode:t?gE:k,setColorMode:t?gE:P,forced:t!==void 0}),[E,k,P,t]);return w($9.Provider,{value:L,children:n})}_R.displayName="ColorModeProvider";var ZK=new Set(["dark","light","system"]);function YK(e){let t=e;return ZK.has(t)||(t="light"),t}function XK(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,i=YK(t),o=n==="cookie",a=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${i}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); + `,s=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${i}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); + `;return`!${o?a:s}`.trim()}function QK(e={}){const{nonce:t}=e;return w("script",{id:"chakra-script",nonce:t,dangerouslySetInnerHTML:{__html:XK(e)}})}var Fw={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",l="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",g="[object Date]",m="[object Error]",y="[object Function]",b="[object GeneratorFunction]",S="[object Map]",E="[object Number]",P="[object Null]",k="[object Object]",L="[object Proxy]",I="[object RegExp]",O="[object Set]",N="[object String]",D="[object Undefined]",F="[object WeakMap]",U="[object ArrayBuffer]",W="[object DataView]",q="[object Float32Array]",pe="[object Float64Array]",fe="[object Int8Array]",ye="[object Int16Array]",Pe="[object Int32Array]",xe="[object Uint8Array]",Y="[object Uint8ClampedArray]",V="[object Uint16Array]",ae="[object Uint32Array]",oe=/[\\^$.*+?()[\]{}|]/g,X=/^\[object .+?Constructor\]$/,me=/^(?:0|[1-9]\d*)$/,ve={};ve[q]=ve[pe]=ve[fe]=ve[ye]=ve[Pe]=ve[xe]=ve[Y]=ve[V]=ve[ae]=!0,ve[s]=ve[l]=ve[U]=ve[p]=ve[W]=ve[g]=ve[m]=ve[y]=ve[S]=ve[E]=ve[k]=ve[I]=ve[O]=ve[N]=ve[F]=!1;var Se=typeof nu=="object"&&nu&&nu.Object===Object&&nu,He=typeof self=="object"&&self&&self.Object===Object&&self,je=Se||He||Function("return this")(),ut=t&&!t.nodeType&&t,qe=ut&&!0&&e&&!e.nodeType&&e,at=qe&&qe.exports===ut,et=at&&Se.process,it=function(){try{var H=qe&&qe.require&&qe.require("util").types;return H||et&&et.binding&&et.binding("util")}catch{}}(),At=it&&it.isTypedArray;function wt(H,Z,ue){switch(ue.length){case 0:return H.call(Z);case 1:return H.call(Z,ue[0]);case 2:return H.call(Z,ue[0],ue[1]);case 3:return H.call(Z,ue[0],ue[1],ue[2])}return H.apply(Z,ue)}function Le(H,Z){for(var ue=-1,Ge=Array(H);++ue-1}function G0(H,Z){var ue=this.__data__,Ge=qa(ue,H);return Ge<0?(++this.size,ue.push([H,Z])):ue[Ge][1]=Z,this}Io.prototype.clear=dd,Io.prototype.delete=U0,Io.prototype.get=Tu,Io.prototype.has=fd,Io.prototype.set=G0;function Ts(H){var Z=-1,ue=H==null?0:H.length;for(this.clear();++Z1?ue[Mt-1]:void 0,dt=Mt>2?ue[2]:void 0;for(ln=H.length>3&&typeof ln=="function"?(Mt--,ln):void 0,dt&&lh(ue[0],ue[1],dt)&&(ln=Mt<3?void 0:ln,Mt=1),Z=Object(Z);++Ge-1&&H%1==0&&H0){if(++Z>=i)return arguments[0]}else Z=0;return H.apply(void 0,arguments)}}function Ru(H){if(H!=null){try{return wn.call(H)}catch{}try{return H+""}catch{}}return""}function ga(H,Z){return H===Z||H!==H&&Z!==Z}var vd=Ml(function(){return arguments}())?Ml:function(H){return $n(H)&&pn.call(H,"callee")&&!Fe.call(H,"callee")},Nl=Array.isArray;function zt(H){return H!=null&&ch(H.length)&&!Nu(H)}function uh(H){return $n(H)&&zt(H)}var Ou=Zt||i1;function Nu(H){if(!No(H))return!1;var Z=As(H);return Z==y||Z==b||Z==d||Z==L}function ch(H){return typeof H=="number"&&H>-1&&H%1==0&&H<=a}function No(H){var Z=typeof H;return H!=null&&(Z=="object"||Z=="function")}function $n(H){return H!=null&&typeof H=="object"}function yd(H){if(!$n(H)||As(H)!=k)return!1;var Z=nn(H);if(Z===null)return!0;var ue=pn.call(Z,"constructor")&&Z.constructor;return typeof ue=="function"&&ue instanceof ue&&wn.call(ue)==Kt}var dh=At?ot(At):Au;function xd(H){return Ur(H,fh(H))}function fh(H){return zt(H)?t1(H,!0):Is(H)}var rn=Ka(function(H,Z,ue,Ge){Mo(H,Z,ue,Ge)});function Ft(H){return function(){return H}}function hh(H){return H}function i1(){return!1}e.exports=rn})(Fw,Fw.exports);const Ra=Fw.exports;function bs(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function gf(e,...t){return JK(e)?e(...t):e}var JK=e=>typeof e=="function",eZ=e=>/!(important)?$/.test(e),vE=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,Bw=(e,t)=>n=>{const r=String(t),i=eZ(r),o=vE(r),a=e?`${e}.${o}`:o;let s=bs(n.__cssMap)&&a in n.__cssMap?n.__cssMap[a].varRef:t;return s=vE(s),i?`${s} !important`:s};function Tm(e){const{scale:t,transform:n,compose:r}=e;return(o,a)=>{const s=Bw(t,o)(a);let l=n?.(s,a)??s;return r&&(l=r(l,a)),l}}var B2=(...e)=>t=>e.reduce((n,r)=>r(n),t);function ls(e,t){return n=>{const r={property:n,scale:e};return r.transform=Tm({scale:e,transform:t}),r}}var tZ=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function nZ(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:tZ(t),transform:n?Tm({scale:n,compose:r}):r}}var kR=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function rZ(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...kR].join(" ")}function iZ(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...kR].join(" ")}var oZ={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},aZ={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function sZ(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var lZ={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},ER="& > :not(style) ~ :not(style)",uZ={[ER]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},cZ={[ER]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},$w={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},dZ=new Set(Object.values($w)),PR=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),fZ=e=>e.trim();function hZ(e,t){var n;if(e==null||PR.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:i,values:o}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!i||!o)return e;const a=i.includes("-gradient")?i:`${i}-gradient`,[s,...l]=o.split(",").map(fZ).filter(Boolean);if(l?.length===0)return e;const d=s in $w?$w[s]:s;l.unshift(d);const p=l.map(g=>{if(dZ.has(g))return g;const m=g.indexOf(" "),[y,b]=m!==-1?[g.substr(0,m),g.substr(m+1)]:[g],S=TR(b)?b:b&&b.split(" "),E=`colors.${y}`,P=E in t.__cssMap?t.__cssMap[E].varRef:y;return S?[P,...Array.isArray(S)?S:[S]].join(" "):P});return`${a}(${p.join(", ")})`}var TR=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),pZ=(e,t)=>hZ(e,t??{});function gZ(e){return/^var\(--.+\)$/.test(e)}var mZ=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},Js=e=>t=>`${e}(${t})`,en={filter(e){return e!=="auto"?e:oZ},backdropFilter(e){return e!=="auto"?e:aZ},ring(e){return sZ(en.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?rZ():e==="auto-gpu"?iZ():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=mZ(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(gZ(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:pZ,blur:Js("blur"),opacity:Js("opacity"),brightness:Js("brightness"),contrast:Js("contrast"),dropShadow:Js("drop-shadow"),grayscale:Js("grayscale"),hueRotate:Js("hue-rotate"),invert:Js("invert"),saturate:Js("saturate"),sepia:Js("sepia"),bgImage(e){return e==null||TR(e)||PR.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=lZ[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},J={borderWidths:ls("borderWidths"),borderStyles:ls("borderStyles"),colors:ls("colors"),borders:ls("borders"),radii:ls("radii",en.px),space:ls("space",B2(en.vh,en.px)),spaceT:ls("space",B2(en.vh,en.px)),degreeT(e){return{property:e,transform:en.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Tm({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:ls("sizes",B2(en.vh,en.px)),sizesT:ls("sizes",B2(en.vh,en.fraction)),shadows:ls("shadows"),logical:nZ,blur:ls("blur",en.blur)},Wy={background:J.colors("background"),backgroundColor:J.colors("backgroundColor"),backgroundImage:J.propT("backgroundImage",en.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:en.bgClip},bgSize:J.prop("backgroundSize"),bgPosition:J.prop("backgroundPosition"),bg:J.colors("background"),bgColor:J.colors("backgroundColor"),bgPos:J.prop("backgroundPosition"),bgRepeat:J.prop("backgroundRepeat"),bgAttachment:J.prop("backgroundAttachment"),bgGradient:J.propT("backgroundImage",en.gradient),bgClip:{transform:en.bgClip}};Object.assign(Wy,{bgImage:Wy.backgroundImage,bgImg:Wy.backgroundImage});var cn={border:J.borders("border"),borderWidth:J.borderWidths("borderWidth"),borderStyle:J.borderStyles("borderStyle"),borderColor:J.colors("borderColor"),borderRadius:J.radii("borderRadius"),borderTop:J.borders("borderTop"),borderBlockStart:J.borders("borderBlockStart"),borderTopLeftRadius:J.radii("borderTopLeftRadius"),borderStartStartRadius:J.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:J.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:J.radii("borderTopRightRadius"),borderStartEndRadius:J.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:J.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:J.borders("borderRight"),borderInlineEnd:J.borders("borderInlineEnd"),borderBottom:J.borders("borderBottom"),borderBlockEnd:J.borders("borderBlockEnd"),borderBottomLeftRadius:J.radii("borderBottomLeftRadius"),borderBottomRightRadius:J.radii("borderBottomRightRadius"),borderLeft:J.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:J.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:J.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:J.borders(["borderLeft","borderRight"]),borderInline:J.borders("borderInline"),borderY:J.borders(["borderTop","borderBottom"]),borderBlock:J.borders("borderBlock"),borderTopWidth:J.borderWidths("borderTopWidth"),borderBlockStartWidth:J.borderWidths("borderBlockStartWidth"),borderTopColor:J.colors("borderTopColor"),borderBlockStartColor:J.colors("borderBlockStartColor"),borderTopStyle:J.borderStyles("borderTopStyle"),borderBlockStartStyle:J.borderStyles("borderBlockStartStyle"),borderBottomWidth:J.borderWidths("borderBottomWidth"),borderBlockEndWidth:J.borderWidths("borderBlockEndWidth"),borderBottomColor:J.colors("borderBottomColor"),borderBlockEndColor:J.colors("borderBlockEndColor"),borderBottomStyle:J.borderStyles("borderBottomStyle"),borderBlockEndStyle:J.borderStyles("borderBlockEndStyle"),borderLeftWidth:J.borderWidths("borderLeftWidth"),borderInlineStartWidth:J.borderWidths("borderInlineStartWidth"),borderLeftColor:J.colors("borderLeftColor"),borderInlineStartColor:J.colors("borderInlineStartColor"),borderLeftStyle:J.borderStyles("borderLeftStyle"),borderInlineStartStyle:J.borderStyles("borderInlineStartStyle"),borderRightWidth:J.borderWidths("borderRightWidth"),borderInlineEndWidth:J.borderWidths("borderInlineEndWidth"),borderRightColor:J.colors("borderRightColor"),borderInlineEndColor:J.colors("borderInlineEndColor"),borderRightStyle:J.borderStyles("borderRightStyle"),borderInlineEndStyle:J.borderStyles("borderInlineEndStyle"),borderTopRadius:J.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:J.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:J.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:J.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(cn,{rounded:cn.borderRadius,roundedTop:cn.borderTopRadius,roundedTopLeft:cn.borderTopLeftRadius,roundedTopRight:cn.borderTopRightRadius,roundedTopStart:cn.borderStartStartRadius,roundedTopEnd:cn.borderStartEndRadius,roundedBottom:cn.borderBottomRadius,roundedBottomLeft:cn.borderBottomLeftRadius,roundedBottomRight:cn.borderBottomRightRadius,roundedBottomStart:cn.borderEndStartRadius,roundedBottomEnd:cn.borderEndEndRadius,roundedLeft:cn.borderLeftRadius,roundedRight:cn.borderRightRadius,roundedStart:cn.borderInlineStartRadius,roundedEnd:cn.borderInlineEndRadius,borderStart:cn.borderInlineStart,borderEnd:cn.borderInlineEnd,borderTopStartRadius:cn.borderStartStartRadius,borderTopEndRadius:cn.borderStartEndRadius,borderBottomStartRadius:cn.borderEndStartRadius,borderBottomEndRadius:cn.borderEndEndRadius,borderStartRadius:cn.borderInlineStartRadius,borderEndRadius:cn.borderInlineEndRadius,borderStartWidth:cn.borderInlineStartWidth,borderEndWidth:cn.borderInlineEndWidth,borderStartColor:cn.borderInlineStartColor,borderEndColor:cn.borderInlineEndColor,borderStartStyle:cn.borderInlineStartStyle,borderEndStyle:cn.borderInlineEndStyle});var vZ={color:J.colors("color"),textColor:J.colors("color"),fill:J.colors("fill"),stroke:J.colors("stroke")},Hw={boxShadow:J.shadows("boxShadow"),mixBlendMode:!0,blendMode:J.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:J.prop("backgroundBlendMode"),opacity:!0};Object.assign(Hw,{shadow:Hw.boxShadow});var yZ={filter:{transform:en.filter},blur:J.blur("--chakra-blur"),brightness:J.propT("--chakra-brightness",en.brightness),contrast:J.propT("--chakra-contrast",en.contrast),hueRotate:J.degreeT("--chakra-hue-rotate"),invert:J.propT("--chakra-invert",en.invert),saturate:J.propT("--chakra-saturate",en.saturate),dropShadow:J.propT("--chakra-drop-shadow",en.dropShadow),backdropFilter:{transform:en.backdropFilter},backdropBlur:J.blur("--chakra-backdrop-blur"),backdropBrightness:J.propT("--chakra-backdrop-brightness",en.brightness),backdropContrast:J.propT("--chakra-backdrop-contrast",en.contrast),backdropHueRotate:J.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:J.propT("--chakra-backdrop-invert",en.invert),backdropSaturate:J.propT("--chakra-backdrop-saturate",en.saturate)},G3={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:en.flexDirection},experimental_spaceX:{static:uZ,transform:Tm({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:cZ,transform:Tm({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:J.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:J.space("gap"),rowGap:J.space("rowGap"),columnGap:J.space("columnGap")};Object.assign(G3,{flexDir:G3.flexDirection});var LR={gridGap:J.space("gridGap"),gridColumnGap:J.space("gridColumnGap"),gridRowGap:J.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},xZ={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:en.outline},outlineOffset:!0,outlineColor:J.colors("outlineColor")},ka={width:J.sizesT("width"),inlineSize:J.sizesT("inlineSize"),height:J.sizes("height"),blockSize:J.sizes("blockSize"),boxSize:J.sizes(["width","height"]),minWidth:J.sizes("minWidth"),minInlineSize:J.sizes("minInlineSize"),minHeight:J.sizes("minHeight"),minBlockSize:J.sizes("minBlockSize"),maxWidth:J.sizes("maxWidth"),maxInlineSize:J.sizes("maxInlineSize"),maxHeight:J.sizes("maxHeight"),maxBlockSize:J.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:J.propT("float",en.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(ka,{w:ka.width,h:ka.height,minW:ka.minWidth,maxW:ka.maxWidth,minH:ka.minHeight,maxH:ka.maxHeight,overscroll:ka.overscrollBehavior,overscrollX:ka.overscrollBehaviorX,overscrollY:ka.overscrollBehaviorY});var bZ={listStyleType:!0,listStylePosition:!0,listStylePos:J.prop("listStylePosition"),listStyleImage:!0,listStyleImg:J.prop("listStyleImage")};function SZ(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},CZ=wZ(SZ),_Z={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},kZ={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Tb=(e,t,n)=>{const r={},i=CZ(e,t,{});for(const o in i)o in n&&n[o]!=null||(r[o]=i[o]);return r},EZ={srOnly:{transform(e){return e===!0?_Z:e==="focusable"?kZ:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Tb(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Tb(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Tb(t,e,n)}},Gg={position:!0,pos:J.prop("position"),zIndex:J.prop("zIndex","zIndices"),inset:J.spaceT("inset"),insetX:J.spaceT(["left","right"]),insetInline:J.spaceT("insetInline"),insetY:J.spaceT(["top","bottom"]),insetBlock:J.spaceT("insetBlock"),top:J.spaceT("top"),insetBlockStart:J.spaceT("insetBlockStart"),bottom:J.spaceT("bottom"),insetBlockEnd:J.spaceT("insetBlockEnd"),left:J.spaceT("left"),insetInlineStart:J.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:J.spaceT("right"),insetInlineEnd:J.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(Gg,{insetStart:Gg.insetInlineStart,insetEnd:Gg.insetInlineEnd});var PZ={ring:{transform:en.ring},ringColor:J.colors("--chakra-ring-color"),ringOffset:J.prop("--chakra-ring-offset-width"),ringOffsetColor:J.colors("--chakra-ring-offset-color"),ringInset:J.prop("--chakra-ring-inset")},qn={margin:J.spaceT("margin"),marginTop:J.spaceT("marginTop"),marginBlockStart:J.spaceT("marginBlockStart"),marginRight:J.spaceT("marginRight"),marginInlineEnd:J.spaceT("marginInlineEnd"),marginBottom:J.spaceT("marginBottom"),marginBlockEnd:J.spaceT("marginBlockEnd"),marginLeft:J.spaceT("marginLeft"),marginInlineStart:J.spaceT("marginInlineStart"),marginX:J.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:J.spaceT("marginInline"),marginY:J.spaceT(["marginTop","marginBottom"]),marginBlock:J.spaceT("marginBlock"),padding:J.space("padding"),paddingTop:J.space("paddingTop"),paddingBlockStart:J.space("paddingBlockStart"),paddingRight:J.space("paddingRight"),paddingBottom:J.space("paddingBottom"),paddingBlockEnd:J.space("paddingBlockEnd"),paddingLeft:J.space("paddingLeft"),paddingInlineStart:J.space("paddingInlineStart"),paddingInlineEnd:J.space("paddingInlineEnd"),paddingX:J.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:J.space("paddingInline"),paddingY:J.space(["paddingTop","paddingBottom"]),paddingBlock:J.space("paddingBlock")};Object.assign(qn,{m:qn.margin,mt:qn.marginTop,mr:qn.marginRight,me:qn.marginInlineEnd,marginEnd:qn.marginInlineEnd,mb:qn.marginBottom,ml:qn.marginLeft,ms:qn.marginInlineStart,marginStart:qn.marginInlineStart,mx:qn.marginX,my:qn.marginY,p:qn.padding,pt:qn.paddingTop,py:qn.paddingY,px:qn.paddingX,pb:qn.paddingBottom,pl:qn.paddingLeft,ps:qn.paddingInlineStart,paddingStart:qn.paddingInlineStart,pr:qn.paddingRight,pe:qn.paddingInlineEnd,paddingEnd:qn.paddingInlineEnd});var TZ={textDecorationColor:J.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:J.shadows("textShadow")},LZ={clipPath:!0,transform:J.propT("transform",en.transform),transformOrigin:!0,translateX:J.spaceT("--chakra-translate-x"),translateY:J.spaceT("--chakra-translate-y"),skewX:J.degreeT("--chakra-skew-x"),skewY:J.degreeT("--chakra-skew-y"),scaleX:J.prop("--chakra-scale-x"),scaleY:J.prop("--chakra-scale-y"),scale:J.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:J.degreeT("--chakra-rotate")},AZ={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:J.prop("transitionDuration","transition.duration"),transitionProperty:J.prop("transitionProperty","transition.property"),transitionTimingFunction:J.prop("transitionTimingFunction","transition.easing")},IZ={fontFamily:J.prop("fontFamily","fonts"),fontSize:J.prop("fontSize","fontSizes",en.px),fontWeight:J.prop("fontWeight","fontWeights"),lineHeight:J.prop("lineHeight","lineHeights"),letterSpacing:J.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},MZ={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:J.spaceT("scrollMargin"),scrollMarginTop:J.spaceT("scrollMarginTop"),scrollMarginBottom:J.spaceT("scrollMarginBottom"),scrollMarginLeft:J.spaceT("scrollMarginLeft"),scrollMarginRight:J.spaceT("scrollMarginRight"),scrollMarginX:J.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:J.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:J.spaceT("scrollPadding"),scrollPaddingTop:J.spaceT("scrollPaddingTop"),scrollPaddingBottom:J.spaceT("scrollPaddingBottom"),scrollPaddingLeft:J.spaceT("scrollPaddingLeft"),scrollPaddingRight:J.spaceT("scrollPaddingRight"),scrollPaddingX:J.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:J.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function AR(e){return bs(e)&&e.reference?e.reference:String(e)}var r4=(e,...t)=>t.map(AR).join(` ${e} `).replace(/calc/g,""),yE=(...e)=>`calc(${r4("+",...e)})`,xE=(...e)=>`calc(${r4("-",...e)})`,Ww=(...e)=>`calc(${r4("*",...e)})`,bE=(...e)=>`calc(${r4("/",...e)})`,SE=e=>{const t=AR(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:Ww(t,-1)},uf=Object.assign(e=>({add:(...t)=>uf(yE(e,...t)),subtract:(...t)=>uf(xE(e,...t)),multiply:(...t)=>uf(Ww(e,...t)),divide:(...t)=>uf(bE(e,...t)),negate:()=>uf(SE(e)),toString:()=>e.toString()}),{add:yE,subtract:xE,multiply:Ww,divide:bE,negate:SE});function RZ(e,t="-"){return e.replace(/\s+/g,t)}function OZ(e){const t=RZ(e.toString());return DZ(NZ(t))}function NZ(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function DZ(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function zZ(e,t=""){return[t,e].filter(Boolean).join("-")}function FZ(e,t){return`var(${e}${t?`, ${t}`:""})`}function BZ(e,t=""){return OZ(`--${zZ(e,t)}`)}function da(e,t,n){const r=BZ(e,n);return{variable:r,reference:FZ(r,t)}}function $Z(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function HZ(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function Vw(e){if(e==null)return e;const{unitless:t}=HZ(e);return t||typeof e=="number"?`${e}px`:e}var IR=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,H9=e=>Object.fromEntries(Object.entries(e).sort(IR));function wE(e){const t=H9(e);return Object.assign(Object.values(t),t)}function WZ(e){const t=Object.keys(H9(e));return new Set(t)}function CE(e){if(!e)return e;e=Vw(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function Sg(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${Vw(e)})`),t&&n.push("and",`(max-width: ${Vw(t)})`),n.join(" ")}function VZ(e){if(!e)return null;e.base=e.base??"0px";const t=wE(e),n=Object.entries(e).sort(IR).map(([o,a],s,l)=>{let[,d]=l[s+1]??[];return d=parseFloat(d)>0?CE(d):void 0,{_minW:CE(a),breakpoint:o,minW:a,maxW:d,maxWQuery:Sg(null,d),minWQuery:Sg(a),minMaxQuery:Sg(a,d)}}),r=WZ(e),i=Array.from(r.values());return{keys:r,normalized:t,isResponsive(o){const a=Object.keys(o);return a.length>0&&a.every(s=>r.has(s))},asObject:H9(e),asArray:wE(e),details:n,media:[null,...t.map(o=>Sg(o)).slice(1)],toArrayValue(o){if(!bs(o))throw new Error("toArrayValue: value must be an object");const a=i.map(s=>o[s]??null);for(;$Z(a)===null;)a.pop();return a},toObjectValue(o){if(!Array.isArray(o))throw new Error("toObjectValue: value must be an array");return o.reduce((a,s,l)=>{const d=i[l];return d!=null&&s!=null&&(a[d]=s),a},{})}}}var yi={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},pc=e=>MR(t=>e(t,"&"),"[role=group]","[data-group]",".group"),Zl=e=>MR(t=>e(t,"~ &"),"[data-peer]",".peer"),MR=(e,...t)=>t.map(e).join(", "),i4={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&:disabled, &[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:pc(yi.hover),_peerHover:Zl(yi.hover),_groupFocus:pc(yi.focus),_peerFocus:Zl(yi.focus),_groupFocusVisible:pc(yi.focusVisible),_peerFocusVisible:Zl(yi.focusVisible),_groupActive:pc(yi.active),_peerActive:Zl(yi.active),_groupDisabled:pc(yi.disabled),_peerDisabled:Zl(yi.disabled),_groupInvalid:pc(yi.invalid),_peerInvalid:Zl(yi.invalid),_groupChecked:pc(yi.checked),_peerChecked:Zl(yi.checked),_groupFocusWithin:pc(yi.focusWithin),_peerFocusWithin:Zl(yi.focusWithin),_peerPlaceholderShown:Zl(yi.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},UZ=Object.keys(i4);function _E(e,t){return da(String(e).replace(/\./g,"-"),void 0,t)}function GZ(e,t){let n={};const r={};for(const[i,o]of Object.entries(e)){const{isSemantic:a,value:s}=o,{variable:l,reference:d}=_E(i,t?.cssVarPrefix);if(!a){if(i.startsWith("space")){const m=i.split("."),[y,...b]=m,S=`${y}.-${b.join(".")}`,E=uf.negate(s),P=uf.negate(d);r[S]={value:E,var:l,varRef:P}}n[l]=s,r[i]={value:s,var:l,varRef:d};continue}const p=m=>{const b=[String(i).split(".")[0],m].join(".");if(!e[b])return m;const{reference:E}=_E(b,t?.cssVarPrefix);return E},g=bs(s)?s:{default:s};n=Ra(n,Object.entries(g).reduce((m,[y,b])=>{var S;const E=p(b);if(y==="default")return m[l]=E,m;const P=((S=i4)==null?void 0:S[y])??y;return m[P]={[l]:E},m},{})),r[i]={value:d,var:l,varRef:d}}return{cssVars:n,cssMap:r}}function jZ(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function qZ(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var KZ=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function ZZ(e){return qZ(e,KZ)}function YZ(e){return e.semanticTokens}function XZ(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...i}=e;return i}function QZ({tokens:e,semanticTokens:t}){const n=Object.entries(Uw(e)??{}).map(([i,o])=>[i,{isSemantic:!1,value:o}]),r=Object.entries(Uw(t,1)??{}).map(([i,o])=>[i,{isSemantic:!0,value:o}]);return Object.fromEntries([...n,...r])}function Uw(e,t=1/0){return!bs(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,i])=>(bs(i)||Array.isArray(i)?Object.entries(Uw(i,t-1)).forEach(([o,a])=>{n[`${r}.${o}`]=a}):n[r]=i,n),{})}function JZ(e){var t;const n=XZ(e),r=ZZ(n),i=YZ(n),o=QZ({tokens:r,semanticTokens:i}),a=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:s,cssVars:l}=GZ(o,{cssVarPrefix:a});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...l},__cssMap:s,__breakpoints:VZ(n.breakpoints)}),n}var W9=Ra({},Wy,cn,vZ,G3,ka,yZ,PZ,xZ,LR,EZ,Gg,Hw,qn,MZ,IZ,TZ,LZ,bZ,AZ),eY=Object.assign({},qn,ka,G3,LR,Gg),tY=Object.keys(eY),nY=[...Object.keys(W9),...UZ],rY={...W9,...i4},iY=e=>e in rY,oY=e=>t=>{if(!t.__breakpoints)return e;const{isResponsive:n,toArrayValue:r,media:i}=t.__breakpoints,o={};for(const a in e){let s=gf(e[a],t);if(s==null)continue;if(s=bs(s)&&n(s)?r(s):s,!Array.isArray(s)){o[a]=s;continue}const l=s.slice(0,i.length).length;for(let d=0;de.startsWith("--")&&typeof t=="string"&&!sY(t),uY=(e,t)=>{if(t==null)return t;const n=a=>{var s,l;return(l=(s=e.__cssMap)==null?void 0:s[a])==null?void 0:l.varRef},r=a=>n(a)??a,[i,o]=aY(t);return t=n(i)??r(o)??r(t),t};function cY(e){const{configs:t={},pseudos:n={},theme:r}=e,i=(o,a=!1)=>{var s;const l=gf(o,r),d=oY(l)(r);let p={};for(let g in d){const m=d[g];let y=gf(m,r);g in n&&(g=n[g]),lY(g,y)&&(y=uY(r,y));let b=t[g];if(b===!0&&(b={property:g}),bs(y)){p[g]=p[g]??{},p[g]=Ra({},p[g],i(y,!0));continue}let S=((s=b?.transform)==null?void 0:s.call(b,y,r,l))??y;S=b?.processResult?i(S,!0):S;const E=gf(b?.property,r);if(!a&&b?.static){const P=gf(b.static,r);p=Ra({},p,P)}if(E&&Array.isArray(E)){for(const P of E)p[P]=S;continue}if(E){E==="&"&&bs(S)?p=Ra({},p,S):p[E]=S;continue}if(bs(S)){p=Ra({},p,S);continue}p[g]=S}return p};return i}var RR=e=>t=>cY({theme:t,pseudos:i4,configs:W9})(e);function nr(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function dY(e,t){if(Array.isArray(e))return e;if(bs(e))return t(e);if(e!=null)return[e]}function fY(e,t){for(let n=t+1;n{Ra(d,{[L]:m?k[L]:{[P]:k[L]}})});continue}if(!y){m?Ra(d,k):d[P]=k;continue}d[P]=k}}return d}}function pY(e){return t=>{const{variant:n,size:r,theme:i}=t,o=hY(i);return Ra({},gf(e.baseStyle??{},t),o(e,"sizes",r,t),o(e,"variants",n,t))}}function gY(e,t,n){var r,i;return((i=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:i.varRef)??n}function hn(e){return jZ(e,["styleConfig","size","variant","colorScheme"])}function mY(e){if(e.sheet)return e.sheet;for(var t=0;t0?ki(k0,--Lo):0,u0--,Br===10&&(u0=1,a4--),Br}function na(){return Br=Lo2||Am(Br)>3?"":" "}function TY(e,t){for(;--t&&na()&&!(Br<48||Br>102||Br>57&&Br<65||Br>70&&Br<97););return uv(e,Vy()+(t<6&&ml()==32&&na()==32))}function jw(e){for(;na();)switch(Br){case e:return Lo;case 34:case 39:e!==34&&e!==39&&jw(Br);break;case 40:e===41&&jw(e);break;case 92:na();break}return Lo}function LY(e,t){for(;na()&&e+Br!==47+10;)if(e+Br===42+42&&ml()===47)break;return"/*"+uv(t,Lo-1)+"*"+o4(e===47?e:na())}function AY(e){for(;!Am(ml());)na();return uv(e,Lo)}function IY(e){return BR(Gy("",null,null,null,[""],e=FR(e),0,[0],e))}function Gy(e,t,n,r,i,o,a,s,l){for(var d=0,p=0,g=a,m=0,y=0,b=0,S=1,E=1,P=1,k=0,L="",I=i,O=o,N=r,D=L;E;)switch(b=k,k=na()){case 40:if(b!=108&&ki(D,g-1)==58){Gw(D+=yn(Uy(k),"&","&\f"),"&\f")!=-1&&(P=-1);break}case 34:case 39:case 91:D+=Uy(k);break;case 9:case 10:case 13:case 32:D+=PY(b);break;case 92:D+=TY(Vy()-1,7);continue;case 47:switch(ml()){case 42:case 47:$2(MY(LY(na(),Vy()),t,n),l);break;default:D+="/"}break;case 123*S:s[d++]=al(D)*P;case 125*S:case 59:case 0:switch(k){case 0:case 125:E=0;case 59+p:y>0&&al(D)-g&&$2(y>32?EE(D+";",r,n,g-1):EE(yn(D," ","")+";",r,n,g-2),l);break;case 59:D+=";";default:if($2(N=kE(D,t,n,d,p,i,s,L,I=[],O=[],g),o),k===123)if(p===0)Gy(D,t,N,N,I,o,g,s,O);else switch(m===99&&ki(D,3)===110?100:m){case 100:case 109:case 115:Gy(e,N,N,r&&$2(kE(e,N,N,0,0,i,s,L,i,I=[],g),O),i,O,g,s,r?I:O);break;default:Gy(D,N,N,N,[""],O,0,s,O)}}d=p=y=0,S=P=1,L=D="",g=a;break;case 58:g=1+al(D),y=b;default:if(S<1){if(k==123)--S;else if(k==125&&S++==0&&EY()==125)continue}switch(D+=o4(k),k*S){case 38:P=p>0?1:(D+="\f",-1);break;case 44:s[d++]=(al(D)-1)*P,P=1;break;case 64:ml()===45&&(D+=Uy(na())),m=ml(),p=g=al(L=D+=AY(Vy())),k++;break;case 45:b===45&&al(D)==2&&(S=0)}}return o}function kE(e,t,n,r,i,o,a,s,l,d,p){for(var g=i-1,m=i===0?o:[""],y=G9(m),b=0,S=0,E=0;b0?m[P]+" "+k:yn(k,/&\f/g,m[P])))&&(l[E++]=L);return s4(e,t,n,i===0?V9:s,l,d,p)}function MY(e,t,n){return s4(e,t,n,OR,o4(kY()),Lm(e,2,-2),0)}function EE(e,t,n,r){return s4(e,t,n,U9,Lm(e,0,r),Lm(e,r+1,-1),r)}function Fp(e,t){for(var n="",r=G9(e),i=0;i6)switch(ki(e,t+1)){case 109:if(ki(e,t+4)!==45)break;case 102:return yn(e,/(.+:)(.+)-([^]+)/,"$1"+dn+"$2-$3$1"+j3+(ki(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Gw(e,"stretch")?HR(yn(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(ki(e,t+1)!==115)break;case 6444:switch(ki(e,al(e)-3-(~Gw(e,"!important")&&10))){case 107:return yn(e,":",":"+dn)+e;case 101:return yn(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+dn+(ki(e,14)===45?"inline-":"")+"box$3$1"+dn+"$2$3$1"+Di+"$2box$3")+e}break;case 5936:switch(ki(e,t+11)){case 114:return dn+e+Di+yn(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return dn+e+Di+yn(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return dn+e+Di+yn(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return dn+e+Di+e+e}return e}var HY=function(t,n,r,i){if(t.length>-1&&!t.return)switch(t.type){case U9:t.return=HR(t.value,t.length);break;case NR:return Fp([rg(t,{value:yn(t.value,"@","@"+dn)})],i);case V9:if(t.length)return _Y(t.props,function(o){switch(CY(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Fp([rg(t,{props:[yn(o,/:(read-\w+)/,":"+j3+"$1")]})],i);case"::placeholder":return Fp([rg(t,{props:[yn(o,/:(plac\w+)/,":"+dn+"input-$1")]}),rg(t,{props:[yn(o,/:(plac\w+)/,":"+j3+"$1")]}),rg(t,{props:[yn(o,/:(plac\w+)/,Di+"input-$1")]})],i)}return""})}},WY=[HY],VY=function(t){var n=t.key;if(n==="css"){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,function(S){var E=S.getAttribute("data-emotion");E.indexOf(" ")!==-1&&(document.head.appendChild(S),S.setAttribute("data-s",""))})}var i=t.stylisPlugins||WY,o={},a,s=[];a=t.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+n+' "]'),function(S){for(var E=S.getAttribute("data-emotion").split(" "),P=1;P=4;++r,i-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var eX={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},tX=/[A-Z]|^ms/g,nX=/_EMO_([^_]+?)_([^]*?)_EMO_/g,KR=function(t){return t.charCodeAt(1)===45},LE=function(t){return t!=null&&typeof t!="boolean"},Lb=$R(function(e){return KR(e)?e:e.replace(tX,"-$&").toLowerCase()}),AE=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(nX,function(r,i,o){return sl={name:i,styles:o,next:sl},i})}return eX[t]!==1&&!KR(t)&&typeof n=="number"&&n!==0?n+"px":n};function Im(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return sl={name:n.name,styles:n.styles,next:sl},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)sl={name:r.name,styles:r.styles,next:sl},r=r.next;var i=n.styles+";";return i}return rX(e,t,n)}case"function":{if(e!==void 0){var o=sl,a=n(e);return sl=o,Im(e,t,a)}break}}if(t==null)return n;var s=t[n];return s!==void 0?s:n}function rX(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i{t.includes(r)||(n[r]=e[r])}),n}function xX(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},tO=bX(xX);function nO(e,t){const n={};return Object.keys(e).forEach(r=>{const i=e[r];t(i,r,e)&&(n[r]=i)}),n}var rO=e=>nO(e,t=>t!=null);function SX(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var wX=SX();function iO(e,...t){return vX(e)?e(...t):e}function CX(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}Object.freeze(["base","sm","md","lg","xl","2xl"]);function _X(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,i=C.exports.createContext(void 0);i.displayName=r;function o(){var a;const s=C.exports.useContext(i);if(!s&&t){const l=new Error(n);throw l.name="ContextError",(a=Error.captureStackTrace)==null||a.call(Error,l,o),l}return s}return[i.Provider,o,i]}var kX=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,EX=$R(function(e){return kX.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),PX=EX,TX=function(t){return t!=="theme"},OE=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?PX:TX},NE=function(t,n,r){var i;if(n){var o=n.shouldForwardProp;i=t.__emotion_forwardProp&&o?function(a){return t.__emotion_forwardProp(a)&&o(a)}:o}return typeof i!="function"&&r&&(i=t.__emotion_forwardProp),i},LX=function(t){var n=t.cache,r=t.serialized,i=t.isStringTag;return jR(n,r,i),oX(function(){return qR(n,r,i)}),null},AX=function e(t,n){var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,o,a;n!==void 0&&(o=n.label,a=n.target);var s=NE(t,n,r),l=s||OE(i),d=!l("as");return function(){var p=arguments,g=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(o!==void 0&&g.push("label:"+o+";"),p[0]==null||p[0].raw===void 0)g.push.apply(g,p);else{g.push(p[0][0]);for(var m=p.length,y=1;y[g,m.selector]))}function s(){return Object.fromEntries(Object.entries(t).map(([g,m])=>[g,m.className]))}function l(p){const y=`chakra-${(["container","root"].includes(p??"")?[e]:[e,p]).filter(Boolean).join("__")}`;return{className:y,selector:`.${y}`,toString:()=>p}}return{parts:i,toPart:l,extend:o,selectors:a,classnames:s,get keys(){return Object.keys(t)},__type:{}}}var MX=Pn("accordion").parts("root","container","button","panel").extend("icon"),RX=Pn("alert").parts("title","description","container").extend("icon","spinner"),OX=Pn("avatar").parts("label","badge","container").extend("excessLabel","group"),NX=Pn("breadcrumb").parts("link","item","container").extend("separator");Pn("button").parts();var DX=Pn("checkbox").parts("control","icon","container").extend("label");Pn("progress").parts("track","filledTrack").extend("label");var zX=Pn("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),FX=Pn("editable").parts("preview","input","textarea"),BX=Pn("form").parts("container","requiredIndicator","helperText"),$X=Pn("formError").parts("text","icon"),HX=Pn("input").parts("addon","field","element"),WX=Pn("list").parts("container","item","icon"),VX=Pn("menu").parts("button","list","item").extend("groupTitle","command","divider"),UX=Pn("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),GX=Pn("numberinput").parts("root","field","stepperGroup","stepper");Pn("pininput").parts("field");var jX=Pn("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),qX=Pn("progress").parts("label","filledTrack","track"),KX=Pn("radio").parts("container","control","label"),ZX=Pn("select").parts("field","icon"),YX=Pn("slider").parts("container","track","thumb","filledTrack","mark"),XX=Pn("stat").parts("container","label","helpText","number","icon"),QX=Pn("switch").parts("container","track","thumb"),JX=Pn("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),eQ=Pn("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),tQ=Pn("tag").parts("container","label","closeButton");function Ti(e,t){nQ(e)&&(e="100%");var n=rQ(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function H2(e){return Math.min(1,Math.max(0,e))}function nQ(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function rQ(e){return typeof e=="string"&&e.indexOf("%")!==-1}function oO(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function W2(e){return e<=1?"".concat(Number(e)*100,"%"):e}function mf(e){return e.length===1?"0"+e:String(e)}function iQ(e,t,n){return{r:Ti(e,255)*255,g:Ti(t,255)*255,b:Ti(n,255)*255}}function DE(e,t,n){e=Ti(e,255),t=Ti(t,255),n=Ti(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=0,s=(r+i)/2;if(r===i)a=0,o=0;else{var l=r-i;switch(a=s>.5?l/(2-r-i):l/(r+i),r){case e:o=(t-n)/l+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function oQ(e,t,n){var r,i,o;if(e=Ti(e,360),t=Ti(t,100),n=Ti(n,100),t===0)i=n,o=n,r=n;else{var a=n<.5?n*(1+t):n+t-n*t,s=2*n-a;r=Ab(s,a,e+1/3),i=Ab(s,a,e),o=Ab(s,a,e-1/3)}return{r:r*255,g:i*255,b:o*255}}function zE(e,t,n){e=Ti(e,255),t=Ti(t,255),n=Ti(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=r,s=r-i,l=r===0?0:s/r;if(r===i)o=0;else{switch(r){case e:o=(t-n)/s+(t>16,g:(e&65280)>>8,b:e&255}}var Yw={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function cQ(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,o=null,a=!1,s=!1;return typeof e=="string"&&(e=hQ(e)),typeof e=="object"&&(Yl(e.r)&&Yl(e.g)&&Yl(e.b)?(t=iQ(e.r,e.g,e.b),a=!0,s=String(e.r).substr(-1)==="%"?"prgb":"rgb"):Yl(e.h)&&Yl(e.s)&&Yl(e.v)?(r=W2(e.s),i=W2(e.v),t=aQ(e.h,r,i),a=!0,s="hsv"):Yl(e.h)&&Yl(e.s)&&Yl(e.l)&&(r=W2(e.s),o=W2(e.l),t=oQ(e.h,r,o),a=!0,s="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=oO(n),{ok:a,format:e.format||s,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var dQ="[-\\+]?\\d+%?",fQ="[-\\+]?\\d*\\.\\d+%?",Lc="(?:".concat(fQ,")|(?:").concat(dQ,")"),Ib="[\\s|\\(]+(".concat(Lc,")[,|\\s]+(").concat(Lc,")[,|\\s]+(").concat(Lc,")\\s*\\)?"),Mb="[\\s|\\(]+(".concat(Lc,")[,|\\s]+(").concat(Lc,")[,|\\s]+(").concat(Lc,")[,|\\s]+(").concat(Lc,")\\s*\\)?"),ds={CSS_UNIT:new RegExp(Lc),rgb:new RegExp("rgb"+Ib),rgba:new RegExp("rgba"+Mb),hsl:new RegExp("hsl"+Ib),hsla:new RegExp("hsla"+Mb),hsv:new RegExp("hsv"+Ib),hsva:new RegExp("hsva"+Mb),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function hQ(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(Yw[e])e=Yw[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=ds.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=ds.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=ds.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=ds.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=ds.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=ds.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=ds.hex8.exec(e),n?{r:Yo(n[1]),g:Yo(n[2]),b:Yo(n[3]),a:BE(n[4]),format:t?"name":"hex8"}:(n=ds.hex6.exec(e),n?{r:Yo(n[1]),g:Yo(n[2]),b:Yo(n[3]),format:t?"name":"hex"}:(n=ds.hex4.exec(e),n?{r:Yo(n[1]+n[1]),g:Yo(n[2]+n[2]),b:Yo(n[3]+n[3]),a:BE(n[4]+n[4]),format:t?"name":"hex8"}:(n=ds.hex3.exec(e),n?{r:Yo(n[1]+n[1]),g:Yo(n[2]+n[2]),b:Yo(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function Yl(e){return Boolean(ds.CSS_UNIT.exec(String(e)))}var dv=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=uQ(t)),this.originalInput=t;var i=cQ(t);this.originalInput=t,this.r=i.r,this.g=i.g,this.b=i.b,this.a=i.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:i.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=i.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,i,o=t.r/255,a=t.g/255,s=t.b/255;return o<=.03928?n=o/12.92:n=Math.pow((o+.055)/1.055,2.4),a<=.03928?r=a/12.92:r=Math.pow((a+.055)/1.055,2.4),s<=.03928?i=s/12.92:i=Math.pow((s+.055)/1.055,2.4),.2126*n+.7152*r+.0722*i},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=oO(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=zE(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=zE(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=DE(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=DE(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),FE(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),sQ(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Ti(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Ti(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+FE(this.r,this.g,this.b,!1),n=0,r=Object.entries(Yw);n=0,o=!n&&i&&(t.startsWith("hex")||t==="name");return o?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=H2(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=H2(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=H2(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=H2(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),i=new e(t).toRgb(),o=n/100,a={r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a};return new e(a)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),i=360/n,o=[this];for(r.h=(r.h-(i*t>>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(new e(r));return o},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;t--;)a.push(new e({h:r,s:i,v:o})),o=(o+s)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,i=[this],o=360/t,a=1;an.length;)e.count=null,e.seed&&(e.seed+=1),n.push(aO(e));return e.count=t,n}var r=pQ(e.hue,e.seed),i=gQ(r,e),o=mQ(r,i,e),a={h:r,s:i,v:o};return e.alpha!==void 0&&(a.a=e.alpha),new dv(a)}function pQ(e,t){var n=yQ(e),r=q3(n,t);return r<0&&(r=360+r),r}function gQ(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return q3([0,100],t.seed);var n=sO(e).saturationRange,r=n[0],i=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=i-10;break;case"light":i=55;break}return q3([r,i],t.seed)}function mQ(e,t,n){var r=vQ(e,t),i=100;switch(n.luminosity){case"dark":i=r+20;break;case"light":r=(i+r)/2;break;case"random":r=0,i=100;break}return q3([r,i],n.seed)}function vQ(e,t){for(var n=sO(e).lowerBounds,r=0;r=i&&t<=a){var l=(s-o)/(a-i),d=o-l*i;return l*t+d}}return 0}function yQ(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=uO.find(function(a){return a.name===e});if(n){var r=lO(n);if(r.hueRange)return r.hueRange}var i=new dv(e);if(i.isValid){var o=i.toHsv().h;return[o,o]}}return[0,360]}function sO(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=uO;t=i.hueRange[0]&&e<=i.hueRange[1])return i}throw Error("Color not found")}function q3(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var i=t/233280;return Math.floor(r+i*(n-r))}function lO(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],i=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,i]}}var uO=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function xQ(e,t,n,r,i){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,Ei=(e,t,n)=>{const r=xQ(e,`colors.${t}`,t),{isValid:i}=new dv(r);return i?r:n},SQ=e=>t=>{const n=Ei(t,e);return new dv(n).isDark()?"dark":"light"},wQ=e=>t=>SQ(e)(t)==="dark",c0=(e,t)=>n=>{const r=Ei(n,e);return new dv(r).setAlpha(t).toRgbString()};function $E(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( + 45deg, + ${t} 25%, + transparent 25%, + transparent 50%, + ${t} 50%, + ${t} 75%, + transparent 75%, + transparent + )`,backgroundSize:`${e} ${e}`}}function CQ(e){const t=aO().toHexString();return!e||bQ(e)?t:e.string&&e.colors?kQ(e.string,e.colors):e.string&&!e.colors?_Q(e.string):e.colors&&!e.string?EQ(e.colors):t}function _Q(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255;n+=`00${i.toString(16)}`.substr(-2)}return n}function kQ(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function X9(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function PQ(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function cO(e){return PQ(e)&&e.reference?e.reference:String(e)}var b4=(e,...t)=>t.map(cO).join(` ${e} `).replace(/calc/g,""),HE=(...e)=>`calc(${b4("+",...e)})`,WE=(...e)=>`calc(${b4("-",...e)})`,Xw=(...e)=>`calc(${b4("*",...e)})`,VE=(...e)=>`calc(${b4("/",...e)})`,UE=e=>{const t=cO(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:Xw(t,-1)},ru=Object.assign(e=>({add:(...t)=>ru(HE(e,...t)),subtract:(...t)=>ru(WE(e,...t)),multiply:(...t)=>ru(Xw(e,...t)),divide:(...t)=>ru(VE(e,...t)),negate:()=>ru(UE(e)),toString:()=>e.toString()}),{add:HE,subtract:WE,multiply:Xw,divide:VE,negate:UE});function TQ(e){return!Number.isInteger(parseFloat(e.toString()))}function LQ(e,t="-"){return e.replace(/\s+/g,t)}function dO(e){const t=LQ(e.toString());return t.includes("\\.")?e:TQ(e)?t.replace(".","\\."):e}function AQ(e,t=""){return[t,dO(e)].filter(Boolean).join("-")}function IQ(e,t){return`var(${dO(e)}${t?`, ${t}`:""})`}function MQ(e,t=""){return`--${AQ(e,t)}`}function Ao(e,t){const n=MQ(e,t?.prefix);return{variable:n,reference:IQ(n,RQ(t?.fallback))}}function RQ(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:OQ,defineMultiStyleConfig:NQ}=nr(MX.keys),DQ={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},zQ={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},FQ={pt:"2",px:"4",pb:"5"},BQ={fontSize:"1.25em"},$Q=OQ({container:DQ,button:zQ,panel:FQ,icon:BQ}),HQ=NQ({baseStyle:$Q}),{definePartsStyle:fv,defineMultiStyleConfig:WQ}=nr(RX.keys),ra=da("alert-fg"),fu=da("alert-bg"),VQ=fv({container:{bg:fu.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:ra.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:ra.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function Q9(e){const{theme:t,colorScheme:n}=e,r=c0(`${n}.200`,.16)(t);return{light:`colors.${n}.100`,dark:r}}var UQ=fv(e=>{const{colorScheme:t}=e,n=Q9(e);return{container:{[ra.variable]:`colors.${t}.500`,[fu.variable]:n.light,_dark:{[ra.variable]:`colors.${t}.200`,[fu.variable]:n.dark}}}}),GQ=fv(e=>{const{colorScheme:t}=e,n=Q9(e);return{container:{[ra.variable]:`colors.${t}.500`,[fu.variable]:n.light,_dark:{[ra.variable]:`colors.${t}.200`,[fu.variable]:n.dark},paddingStart:"3",borderStartWidth:"4px",borderStartColor:ra.reference}}}),jQ=fv(e=>{const{colorScheme:t}=e,n=Q9(e);return{container:{[ra.variable]:`colors.${t}.500`,[fu.variable]:n.light,_dark:{[ra.variable]:`colors.${t}.200`,[fu.variable]:n.dark},pt:"2",borderTopWidth:"4px",borderTopColor:ra.reference}}}),qQ=fv(e=>{const{colorScheme:t}=e;return{container:{[ra.variable]:"colors.white",[fu.variable]:`colors.${t}.500`,_dark:{[ra.variable]:"colors.gray.900",[fu.variable]:`colors.${t}.200`},color:ra.reference}}}),KQ={subtle:UQ,"left-accent":GQ,"top-accent":jQ,solid:qQ},ZQ=WQ({baseStyle:VQ,variants:KQ,defaultProps:{variant:"subtle",colorScheme:"blue"}}),fO={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},YQ={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},XQ={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},QQ={...fO,...YQ,container:XQ},hO=QQ,JQ=e=>typeof e=="function";function wr(e,...t){return JQ(e)?e(...t):e}var{definePartsStyle:pO,defineMultiStyleConfig:eJ}=nr(OX.keys),Bp=da("avatar-border-color"),Rb=da("avatar-bg"),tJ={borderRadius:"full",border:"0.2em solid",[Bp.variable]:"white",_dark:{[Bp.variable]:"colors.gray.800"},borderColor:Bp.reference},nJ={[Rb.variable]:"colors.gray.200",_dark:{[Rb.variable]:"colors.whiteAlpha.400"},bgColor:Rb.reference},GE=da("avatar-background"),rJ=e=>{const{name:t,theme:n}=e,r=t?CQ({string:t}):"colors.gray.400",i=wQ(r)(n);let o="white";return i||(o="gray.800"),{bg:GE.reference,"&:not([data-loaded])":{[GE.variable]:r},color:o,[Bp.variable]:"colors.white",_dark:{[Bp.variable]:"colors.gray.800"},borderColor:Bp.reference,verticalAlign:"top"}},iJ=pO(e=>({badge:wr(tJ,e),excessLabel:wr(nJ,e),container:wr(rJ,e)}));function gc(e){const t=e!=="100%"?hO[e]:void 0;return pO({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var oJ={"2xs":gc(4),xs:gc(6),sm:gc(8),md:gc(12),lg:gc(16),xl:gc(24),"2xl":gc(32),full:gc("100%")},aJ=eJ({baseStyle:iJ,sizes:oJ,defaultProps:{size:"md"}}),sJ={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},$p=da("badge-bg"),fl=da("badge-color"),lJ=e=>{const{colorScheme:t,theme:n}=e,r=c0(`${t}.500`,.6)(n);return{[$p.variable]:`colors.${t}.500`,[fl.variable]:"colors.white",_dark:{[$p.variable]:r,[fl.variable]:"colors.whiteAlpha.800"},bg:$p.reference,color:fl.reference}},uJ=e=>{const{colorScheme:t,theme:n}=e,r=c0(`${t}.200`,.16)(n);return{[$p.variable]:`colors.${t}.100`,[fl.variable]:`colors.${t}.800`,_dark:{[$p.variable]:r,[fl.variable]:`colors.${t}.200`},bg:$p.reference,color:fl.reference}},cJ=e=>{const{colorScheme:t,theme:n}=e,r=c0(`${t}.200`,.8)(n);return{[fl.variable]:`colors.${t}.500`,_dark:{[fl.variable]:r},color:fl.reference,boxShadow:`inset 0 0 0px 1px ${fl.reference}`}},dJ={solid:lJ,subtle:uJ,outline:cJ},qg={baseStyle:sJ,variants:dJ,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:fJ,definePartsStyle:hJ}=nr(NX.keys),pJ={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},gJ=hJ({link:pJ}),mJ=fJ({baseStyle:gJ}),vJ={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},gO=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:Ie("inherit","whiteAlpha.900")(e),_hover:{bg:Ie("gray.100","whiteAlpha.200")(e)},_active:{bg:Ie("gray.200","whiteAlpha.300")(e)}};const r=c0(`${t}.200`,.12)(n),i=c0(`${t}.200`,.24)(n);return{color:Ie(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:Ie(`${t}.50`,r)(e)},_active:{bg:Ie(`${t}.100`,i)(e)}}},yJ=e=>{const{colorScheme:t}=e,n=Ie("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...wr(gO,e)}},xJ={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},bJ=e=>{const{colorScheme:t}=e;if(t==="gray"){const s=Ie("gray.100","whiteAlpha.200")(e);return{bg:s,_hover:{bg:Ie("gray.200","whiteAlpha.300")(e),_disabled:{bg:s}},_active:{bg:Ie("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:i=`${t}.600`,activeBg:o=`${t}.700`}=xJ[t]??{},a=Ie(n,`${t}.200`)(e);return{bg:a,color:Ie(r,"gray.800")(e),_hover:{bg:Ie(i,`${t}.300`)(e),_disabled:{bg:a}},_active:{bg:Ie(o,`${t}.400`)(e)}}},SJ=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:Ie(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:Ie(`${t}.700`,`${t}.500`)(e)}}},wJ={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},CJ={ghost:gO,outline:yJ,solid:bJ,link:SJ,unstyled:wJ},_J={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},kJ={baseStyle:vJ,variants:CJ,sizes:_J,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:jy,defineMultiStyleConfig:EJ}=nr(DX.keys),Kg=da("checkbox-size"),PJ=e=>{const{colorScheme:t}=e;return{w:Kg.reference,h:Kg.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:Ie(`${t}.500`,`${t}.200`)(e),borderColor:Ie(`${t}.500`,`${t}.200`)(e),color:Ie("white","gray.900")(e),_hover:{bg:Ie(`${t}.600`,`${t}.300`)(e),borderColor:Ie(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:Ie("gray.200","transparent")(e),bg:Ie("gray.200","whiteAlpha.300")(e),color:Ie("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:Ie(`${t}.500`,`${t}.200`)(e),borderColor:Ie(`${t}.500`,`${t}.200`)(e),color:Ie("white","gray.900")(e)},_disabled:{bg:Ie("gray.100","whiteAlpha.100")(e),borderColor:Ie("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:Ie("red.500","red.300")(e)}}},TJ={_disabled:{cursor:"not-allowed"}},LJ={userSelect:"none",_disabled:{opacity:.4}},AJ={transitionProperty:"transform",transitionDuration:"normal"},IJ=jy(e=>({icon:AJ,container:TJ,control:wr(PJ,e),label:LJ})),MJ={sm:jy({control:{[Kg.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:jy({control:{[Kg.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:jy({control:{[Kg.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},K3=EJ({baseStyle:IJ,sizes:MJ,defaultProps:{size:"md",colorScheme:"blue"}}),Zg=Ao("close-button-size"),RJ=e=>{const t=Ie("blackAlpha.100","whiteAlpha.100")(e),n=Ie("blackAlpha.200","whiteAlpha.200")(e);return{w:[Zg.reference],h:[Zg.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},OJ={lg:{[Zg.variable]:"sizes.10",fontSize:"md"},md:{[Zg.variable]:"sizes.8",fontSize:"xs"},sm:{[Zg.variable]:"sizes.6",fontSize:"2xs"}},NJ={baseStyle:RJ,sizes:OJ,defaultProps:{size:"md"}},{variants:DJ,defaultProps:zJ}=qg,FJ={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},BJ={baseStyle:FJ,variants:DJ,defaultProps:zJ},$J={w:"100%",mx:"auto",maxW:"prose",px:"4"},HJ={baseStyle:$J},WJ={opacity:.6,borderColor:"inherit"},VJ={borderStyle:"solid"},UJ={borderStyle:"dashed"},GJ={solid:VJ,dashed:UJ},jJ={baseStyle:WJ,variants:GJ,defaultProps:{variant:"solid"}},{definePartsStyle:Qw,defineMultiStyleConfig:qJ}=nr(zX.keys);function ep(e){return Qw(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var KJ={bg:"blackAlpha.600",zIndex:"overlay"},ZJ={display:"flex",zIndex:"modal",justifyContent:"center"},YJ=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:Ie("white","gray.700")(e),color:"inherit",boxShadow:Ie("lg","dark-lg")(e)}},XJ={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},QJ={position:"absolute",top:"2",insetEnd:"3"},JJ={px:"6",py:"2",flex:"1",overflow:"auto"},eee={px:"6",py:"4"},tee=Qw(e=>({overlay:KJ,dialogContainer:ZJ,dialog:wr(YJ,e),header:XJ,closeButton:QJ,body:JJ,footer:eee})),nee={xs:ep("xs"),sm:ep("md"),md:ep("lg"),lg:ep("2xl"),xl:ep("4xl"),full:ep("full")},ree=qJ({baseStyle:tee,sizes:nee,defaultProps:{size:"xs"}}),{definePartsStyle:iee,defineMultiStyleConfig:oee}=nr(FX.keys),aee={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},see={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},lee={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},uee=iee({preview:aee,input:see,textarea:lee}),cee=oee({baseStyle:uee}),{definePartsStyle:dee,defineMultiStyleConfig:fee}=nr(BX.keys),hee=e=>({marginStart:"1",color:Ie("red.500","red.300")(e)}),pee=e=>({mt:"2",color:Ie("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),gee=dee(e=>({container:{width:"100%",position:"relative"},requiredIndicator:wr(hee,e),helperText:wr(pee,e)})),mee=fee({baseStyle:gee}),{definePartsStyle:vee,defineMultiStyleConfig:yee}=nr($X.keys),xee=e=>({color:Ie("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),bee=e=>({marginEnd:"0.5em",color:Ie("red.500","red.300")(e)}),See=vee(e=>({text:wr(xee,e),icon:wr(bee,e)})),wee=yee({baseStyle:See}),Cee={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},_ee={baseStyle:Cee},kee={fontFamily:"heading",fontWeight:"bold"},Eee={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},Pee={baseStyle:kee,sizes:Eee,defaultProps:{size:"xl"}},{definePartsStyle:au,defineMultiStyleConfig:Tee}=nr(HX.keys),Lee=au({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),mc={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},Aee={lg:au({field:mc.lg,addon:mc.lg}),md:au({field:mc.md,addon:mc.md}),sm:au({field:mc.sm,addon:mc.sm}),xs:au({field:mc.xs,addon:mc.xs})};function J9(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||Ie("blue.500","blue.300")(e),errorBorderColor:n||Ie("red.500","red.300")(e)}}var Iee=au(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=J9(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:Ie("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:Ei(t,r),boxShadow:`0 0 0 1px ${Ei(t,r)}`},_focusVisible:{zIndex:1,borderColor:Ei(t,n),boxShadow:`0 0 0 1px ${Ei(t,n)}`}},addon:{border:"1px solid",borderColor:Ie("inherit","whiteAlpha.50")(e),bg:Ie("gray.100","whiteAlpha.300")(e)}}}),Mee=au(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=J9(e);return{field:{border:"2px solid",borderColor:"transparent",bg:Ie("gray.100","whiteAlpha.50")(e),_hover:{bg:Ie("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:Ei(t,r)},_focusVisible:{bg:"transparent",borderColor:Ei(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:Ie("gray.100","whiteAlpha.50")(e)}}}),Ree=au(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=J9(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:Ei(t,r),boxShadow:`0px 1px 0px 0px ${Ei(t,r)}`},_focusVisible:{borderColor:Ei(t,n),boxShadow:`0px 1px 0px 0px ${Ei(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Oee=au({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),Nee={outline:Iee,filled:Mee,flushed:Ree,unstyled:Oee},fn=Tee({baseStyle:Lee,sizes:Aee,variants:Nee,defaultProps:{size:"md",variant:"outline"}}),Dee=e=>({bg:Ie("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),zee={baseStyle:Dee},Fee={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Bee={baseStyle:Fee},{defineMultiStyleConfig:$ee,definePartsStyle:Hee}=nr(WX.keys),Wee={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Vee=Hee({icon:Wee}),Uee=$ee({baseStyle:Vee}),{defineMultiStyleConfig:Gee,definePartsStyle:jee}=nr(VX.keys),qee=e=>({bg:Ie("#fff","gray.700")(e),boxShadow:Ie("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),Kee=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:Ie("gray.100","whiteAlpha.100")(e)},_active:{bg:Ie("gray.200","whiteAlpha.200")(e)},_expanded:{bg:Ie("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Zee={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},Yee={opacity:.6},Xee={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},Qee={transitionProperty:"common",transitionDuration:"normal"},Jee=jee(e=>({button:Qee,list:wr(qee,e),item:wr(Kee,e),groupTitle:Zee,command:Yee,divider:Xee})),ete=Gee({baseStyle:Jee}),{defineMultiStyleConfig:tte,definePartsStyle:Jw}=nr(UX.keys),nte={bg:"blackAlpha.600",zIndex:"modal"},rte=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},ite=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:Ie("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:Ie("lg","dark-lg")(e)}},ote={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},ate={position:"absolute",top:"2",insetEnd:"3"},ste=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},lte={px:"6",py:"4"},ute=Jw(e=>({overlay:nte,dialogContainer:wr(rte,e),dialog:wr(ite,e),header:ote,closeButton:ate,body:wr(ste,e),footer:lte}));function us(e){return Jw(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var cte={xs:us("xs"),sm:us("sm"),md:us("md"),lg:us("lg"),xl:us("xl"),"2xl":us("2xl"),"3xl":us("3xl"),"4xl":us("4xl"),"5xl":us("5xl"),"6xl":us("6xl"),full:us("full")},dte=tte({baseStyle:ute,sizes:cte,defaultProps:{size:"md"}}),fte={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},mO=fte,{defineMultiStyleConfig:hte,definePartsStyle:vO}=nr(GX.keys),e8=Ao("number-input-stepper-width"),yO=Ao("number-input-input-padding"),pte=ru(e8).add("0.5rem").toString(),gte={[e8.variable]:"sizes.6",[yO.variable]:pte},mte=e=>{var t;return((t=wr(fn.baseStyle,e))==null?void 0:t.field)??{}},vte={width:[e8.reference]},yte=e=>({borderStart:"1px solid",borderStartColor:Ie("inherit","whiteAlpha.300")(e),color:Ie("inherit","whiteAlpha.800")(e),_active:{bg:Ie("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),xte=vO(e=>({root:gte,field:wr(mte,e)??{},stepperGroup:vte,stepper:wr(yte,e)??{}}));function V2(e){var t,n;const r=(t=fn.sizes)==null?void 0:t[e],i={lg:"md",md:"md",sm:"sm",xs:"sm"},o=((n=r.field)==null?void 0:n.fontSize)??"md",a=mO.fontSizes[o];return vO({field:{...r.field,paddingInlineEnd:yO.reference,verticalAlign:"top"},stepper:{fontSize:ru(a).multiply(.75).toString(),_first:{borderTopEndRadius:i[e]},_last:{borderBottomEndRadius:i[e],mt:"-1px",borderTopWidth:1}}})}var bte={xs:V2("xs"),sm:V2("sm"),md:V2("md"),lg:V2("lg")},Ste=hte({baseStyle:xte,sizes:bte,variants:fn.variants,defaultProps:fn.defaultProps}),jE,wte={...(jE=fn.baseStyle)==null?void 0:jE.field,textAlign:"center"},Cte={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},qE,_te={outline:e=>{var t,n;return((n=wr((t=fn.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=wr((t=fn.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=wr((t=fn.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((qE=fn.variants)==null?void 0:qE.unstyled.field)??{}},kte={baseStyle:wte,sizes:Cte,variants:_te,defaultProps:fn.defaultProps},{defineMultiStyleConfig:Ete,definePartsStyle:Pte}=nr(jX.keys),Ob=Ao("popper-bg"),Tte=Ao("popper-arrow-bg"),Lte=Ao("popper-arrow-shadow-color"),Ate={zIndex:10},Ite=e=>{const t=Ie("white","gray.700")(e),n=Ie("gray.200","whiteAlpha.300")(e);return{[Ob.variable]:`colors.${t}`,bg:Ob.reference,[Tte.variable]:Ob.reference,[Lte.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},Mte={px:3,py:2,borderBottomWidth:"1px"},Rte={px:3,py:2},Ote={px:3,py:2,borderTopWidth:"1px"},Nte={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},Dte=Pte(e=>({popper:Ate,content:Ite(e),header:Mte,body:Rte,footer:Ote,closeButton:Nte})),zte=Ete({baseStyle:Dte}),{defineMultiStyleConfig:Fte,definePartsStyle:wg}=nr(qX.keys),Bte=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:i}=e,o=Ie($E(),$E("1rem","rgba(0,0,0,0.1)"))(e),a=Ie(`${t}.500`,`${t}.200`)(e),s=`linear-gradient( + to right, + transparent 0%, + ${Ei(n,a)} 50%, + transparent 100% + )`;return{...!r&&i&&o,...r?{bgImage:s}:{bgColor:a}}},$te={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},Hte=e=>({bg:Ie("gray.100","whiteAlpha.300")(e)}),Wte=e=>({transitionProperty:"common",transitionDuration:"slow",...Bte(e)}),Vte=wg(e=>({label:$te,filledTrack:Wte(e),track:Hte(e)})),Ute={xs:wg({track:{h:"1"}}),sm:wg({track:{h:"2"}}),md:wg({track:{h:"3"}}),lg:wg({track:{h:"4"}})},Gte=Fte({sizes:Ute,baseStyle:Vte,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:jte,definePartsStyle:qy}=nr(KX.keys),qte=e=>{var t;const n=(t=wr(K3.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},Kte=qy(e=>{var t,n,r,i;return{label:(n=(t=K3).baseStyle)==null?void 0:n.call(t,e).label,container:(i=(r=K3).baseStyle)==null?void 0:i.call(r,e).container,control:qte(e)}}),Zte={md:qy({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:qy({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:qy({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},Yte=jte({baseStyle:Kte,sizes:Zte,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Xte,definePartsStyle:Qte}=nr(ZX.keys),Jte=e=>{var t;return{...(t=fn.baseStyle)==null?void 0:t.field,bg:Ie("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:Ie("white","gray.700")(e)}}},ene={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},tne=Qte(e=>({field:Jte(e),icon:ene})),U2={paddingInlineEnd:"8"},KE,ZE,YE,XE,QE,JE,eP,tP,nne={lg:{...(KE=fn.sizes)==null?void 0:KE.lg,field:{...(ZE=fn.sizes)==null?void 0:ZE.lg.field,...U2}},md:{...(YE=fn.sizes)==null?void 0:YE.md,field:{...(XE=fn.sizes)==null?void 0:XE.md.field,...U2}},sm:{...(QE=fn.sizes)==null?void 0:QE.sm,field:{...(JE=fn.sizes)==null?void 0:JE.sm.field,...U2}},xs:{...(eP=fn.sizes)==null?void 0:eP.xs,field:{...(tP=fn.sizes)==null?void 0:tP.xs.field,...U2},icon:{insetEnd:"1"}}},rne=Xte({baseStyle:tne,sizes:nne,variants:fn.variants,defaultProps:fn.defaultProps}),ine=da("skeleton-start-color"),one=da("skeleton-end-color"),ane=e=>{const t=Ie("gray.100","gray.800")(e),n=Ie("gray.400","gray.600")(e),{startColor:r=t,endColor:i=n,theme:o}=e,a=Ei(o,r),s=Ei(o,i);return{[ine.variable]:a,[one.variable]:s,opacity:.7,borderRadius:"2px",borderColor:a,background:s}},sne={baseStyle:ane},lne=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:Ie("white","gray.700")(e)}}),une={baseStyle:lne},{defineMultiStyleConfig:cne,definePartsStyle:S4}=nr(YX.keys),Om=da("slider-thumb-size"),Nm=da("slider-track-size"),dne=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...X9({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},fne=e=>({...X9({orientation:e.orientation,horizontal:{h:Nm.reference},vertical:{w:Nm.reference}}),overflow:"hidden",borderRadius:"sm",bg:Ie("gray.200","whiteAlpha.200")(e),_disabled:{bg:Ie("gray.300","whiteAlpha.300")(e)}}),hne=e=>{const{orientation:t}=e;return{...X9({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:Om.reference,h:Om.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},pne=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:Ie(`${t}.500`,`${t}.200`)(e)}},gne=S4(e=>({container:dne(e),track:fne(e),thumb:hne(e),filledTrack:pne(e)})),mne=S4({container:{[Om.variable]:"sizes.4",[Nm.variable]:"sizes.1"}}),vne=S4({container:{[Om.variable]:"sizes.3.5",[Nm.variable]:"sizes.1"}}),yne=S4({container:{[Om.variable]:"sizes.2.5",[Nm.variable]:"sizes.0.5"}}),xne={lg:mne,md:vne,sm:yne},bne=cne({baseStyle:gne,sizes:xne,defaultProps:{size:"md",colorScheme:"blue"}}),cf=Ao("spinner-size"),Sne={width:[cf.reference],height:[cf.reference]},wne={xs:{[cf.variable]:"sizes.3"},sm:{[cf.variable]:"sizes.4"},md:{[cf.variable]:"sizes.6"},lg:{[cf.variable]:"sizes.8"},xl:{[cf.variable]:"sizes.12"}},Cne={baseStyle:Sne,sizes:wne,defaultProps:{size:"md"}},{defineMultiStyleConfig:_ne,definePartsStyle:xO}=nr(XX.keys),kne={fontWeight:"medium"},Ene={opacity:.8,marginBottom:"2"},Pne={verticalAlign:"baseline",fontWeight:"semibold"},Tne={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},Lne=xO({container:{},label:kne,helpText:Ene,number:Pne,icon:Tne}),Ane={md:xO({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},Ine=_ne({baseStyle:Lne,sizes:Ane,defaultProps:{size:"md"}}),{defineMultiStyleConfig:Mne,definePartsStyle:Ky}=nr(QX.keys),Yg=Ao("switch-track-width"),Ef=Ao("switch-track-height"),Nb=Ao("switch-track-diff"),Rne=ru.subtract(Yg,Ef),e6=Ao("switch-thumb-x"),One=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[Yg.reference],height:[Ef.reference],transitionProperty:"common",transitionDuration:"fast",bg:Ie("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:Ie(`${t}.500`,`${t}.200`)(e)}}},Nne={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[Ef.reference],height:[Ef.reference],_checked:{transform:`translateX(${e6.reference})`}},Dne=Ky(e=>({container:{[Nb.variable]:Rne,[e6.variable]:Nb.reference,_rtl:{[e6.variable]:ru(Nb).negate().toString()}},track:One(e),thumb:Nne})),zne={sm:Ky({container:{[Yg.variable]:"1.375rem",[Ef.variable]:"sizes.3"}}),md:Ky({container:{[Yg.variable]:"1.875rem",[Ef.variable]:"sizes.4"}}),lg:Ky({container:{[Yg.variable]:"2.875rem",[Ef.variable]:"sizes.6"}})},Fne=Mne({baseStyle:Dne,sizes:zne,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Bne,definePartsStyle:Hp}=nr(JX.keys),$ne=Hp({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),Z3={"&[data-is-numeric=true]":{textAlign:"end"}},Hne=Hp(e=>{const{colorScheme:t}=e;return{th:{color:Ie("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Ie(`${t}.100`,`${t}.700`)(e),...Z3},td:{borderBottom:"1px",borderColor:Ie(`${t}.100`,`${t}.700`)(e),...Z3},caption:{color:Ie("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Wne=Hp(e=>{const{colorScheme:t}=e;return{th:{color:Ie("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Ie(`${t}.100`,`${t}.700`)(e),...Z3},td:{borderBottom:"1px",borderColor:Ie(`${t}.100`,`${t}.700`)(e),...Z3},caption:{color:Ie("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:Ie(`${t}.100`,`${t}.700`)(e)},td:{background:Ie(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Vne={simple:Hne,striped:Wne,unstyled:{}},Une={sm:Hp({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:Hp({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:Hp({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},Gne=Bne({baseStyle:$ne,variants:Vne,sizes:Une,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:jne,definePartsStyle:vl}=nr(eQ.keys),qne=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},Kne=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},Zne=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},Yne={p:4},Xne=vl(e=>({root:qne(e),tab:Kne(e),tablist:Zne(e),tabpanel:Yne})),Qne={sm:vl({tab:{py:1,px:4,fontSize:"sm"}}),md:vl({tab:{fontSize:"md",py:2,px:4}}),lg:vl({tab:{fontSize:"lg",py:3,px:4}})},Jne=vl(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",i=n==="vertical"?"borderStart":"borderBottom",o=r?"marginStart":"marginBottom";return{tablist:{[i]:"2px solid",borderColor:"inherit"},tab:{[i]:"2px solid",borderColor:"transparent",[o]:"-2px",_selected:{color:Ie(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:Ie("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),ere=vl(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:Ie(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:Ie("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),tre=vl(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:Ie("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:Ie("#fff","gray.800")(e),color:Ie(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),nre=vl(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:Ei(n,`${t}.700`),bg:Ei(n,`${t}.100`)}}}}),rre=vl(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:Ie("gray.600","inherit")(e),_selected:{color:Ie("#fff","gray.800")(e),bg:Ie(`${t}.600`,`${t}.300`)(e)}}}}),ire=vl({}),ore={line:Jne,enclosed:ere,"enclosed-colored":tre,"soft-rounded":nre,"solid-rounded":rre,unstyled:ire},are=jne({baseStyle:Xne,sizes:Qne,variants:ore,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:sre,definePartsStyle:Pf}=nr(tQ.keys),lre={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},ure={lineHeight:1.2,overflow:"visible"},cre={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},dre=Pf({container:lre,label:ure,closeButton:cre}),fre={sm:Pf({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:Pf({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:Pf({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},hre={subtle:Pf(e=>{var t;return{container:(t=qg.variants)==null?void 0:t.subtle(e)}}),solid:Pf(e=>{var t;return{container:(t=qg.variants)==null?void 0:t.solid(e)}}),outline:Pf(e=>{var t;return{container:(t=qg.variants)==null?void 0:t.outline(e)}})},pre=sre({variants:hre,baseStyle:dre,sizes:fre,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),nP,gre={...(nP=fn.baseStyle)==null?void 0:nP.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},rP,mre={outline:e=>{var t;return((t=fn.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=fn.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=fn.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((rP=fn.variants)==null?void 0:rP.unstyled.field)??{}},iP,oP,aP,sP,vre={xs:((iP=fn.sizes)==null?void 0:iP.xs.field)??{},sm:((oP=fn.sizes)==null?void 0:oP.sm.field)??{},md:((aP=fn.sizes)==null?void 0:aP.md.field)??{},lg:((sP=fn.sizes)==null?void 0:sP.lg.field)??{}},yre={baseStyle:gre,sizes:vre,variants:mre,defaultProps:{size:"md",variant:"outline"}},Db=Ao("tooltip-bg"),lP=Ao("tooltip-fg"),xre=Ao("popper-arrow-bg"),bre=e=>{const t=Ie("gray.700","gray.300")(e),n=Ie("whiteAlpha.900","gray.900")(e);return{bg:Db.reference,color:lP.reference,[Db.variable]:`colors.${t}`,[lP.variable]:`colors.${n}`,[xre.variable]:Db.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},Sre={baseStyle:bre},wre={Accordion:HQ,Alert:ZQ,Avatar:aJ,Badge:qg,Breadcrumb:mJ,Button:kJ,Checkbox:K3,CloseButton:NJ,Code:BJ,Container:HJ,Divider:jJ,Drawer:ree,Editable:cee,Form:mee,FormError:wee,FormLabel:_ee,Heading:Pee,Input:fn,Kbd:zee,Link:Bee,List:Uee,Menu:ete,Modal:dte,NumberInput:Ste,PinInput:kte,Popover:zte,Progress:Gte,Radio:Yte,Select:rne,Skeleton:sne,SkipLink:une,Slider:bne,Spinner:Cne,Stat:Ine,Switch:Fne,Table:Gne,Tabs:are,Tag:pre,Textarea:yre,Tooltip:Sre},Cre={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},_re=Cre,kre={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},Ere=kre,Pre={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},Tre=Pre,Lre={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},Are=Lre,Ire={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},Mre=Ire,Rre={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Ore={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Nre={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Dre={property:Rre,easing:Ore,duration:Nre},zre=Dre,Fre={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},Bre=Fre,$re={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},Hre=$re,Wre={breakpoints:Ere,zIndices:Bre,radii:Are,blur:Hre,colors:Tre,...mO,sizes:hO,shadows:Mre,space:fO,borders:_re,transition:zre},Vre={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},Ure={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function Gre(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var jre=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function qre(e){return Gre(e)?jre.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var Kre="ltr",Zre={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},bO={semanticTokens:Vre,direction:Kre,...Wre,components:wre,styles:Ure,config:Zre};function Cg(e){return typeof e=="function"}function Yre(...e){return t=>e.reduce((n,r)=>r(n),t)}function Xre(...e){let t=[...e],n=e[e.length-1];return qre(n)&&t.length>1?t=t.slice(0,t.length-1):n=bO,Yre(...t.map(r=>i=>Cg(r)?r(i):Qre(i,r)))(n)}function Qre(...e){return Ra({},...e,SO)}function SO(e,t,n,r){if((Cg(e)||Cg(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...i)=>{const o=Cg(e)?e(...i):e,a=Cg(t)?t(...i):t;return Ra({},o,a,SO)}}var Jre=typeof Element<"u",eie=typeof Map=="function",tie=typeof Set=="function",nie=typeof ArrayBuffer=="function"&&!!ArrayBuffer.isView;function Zy(e,t){if(e===t)return!0;if(e&&t&&typeof e=="object"&&typeof t=="object"){if(e.constructor!==t.constructor)return!1;var n,r,i;if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(!Zy(e[r],t[r]))return!1;return!0}var o;if(eie&&e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(o=e.entries();!(r=o.next()).done;)if(!t.has(r.value[0]))return!1;for(o=e.entries();!(r=o.next()).done;)if(!Zy(r.value[1],t.get(r.value[0])))return!1;return!0}if(tie&&e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(o=e.entries();!(r=o.next()).done;)if(!t.has(r.value[0]))return!1;return!0}if(nie&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(t)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(e[r]!==t[r])return!1;return!0}if(e.constructor===RegExp)return e.source===t.source&&e.flags===t.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===t.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===t.toString();if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[r]))return!1;if(Jre&&e instanceof Element)return!1;for(r=n;r--!==0;)if(!((i[r]==="_owner"||i[r]==="__v"||i[r]==="__o")&&e.$$typeof)&&!Zy(e[i[r]],t[i[r]]))return!1;return!0}return e!==e&&t!==t}var rie=function(t,n){try{return Zy(t,n)}catch(r){if((r.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw r}};function E0(){const e=C.exports.useContext(Mm);if(!e)throw Error("useTheme: `theme` is undefined. Seems you forgot to wrap your app in `` or ``");return e}function wO(){const e=n4(),t=E0();return{...e,theme:t}}function iie(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__breakpoints)==null?void 0:o.asArray)==null?void 0:a[i]};return r(t)??r(n)??n}function oie(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__cssMap)==null?void 0:o[i])==null?void 0:a.value};return r(t)??r(n)??n}function aie(e,t,n){const r=Array.isArray(t)?t:[t],i=Array.isArray(n)?n:[n];return o=>{const a=i.filter(Boolean),s=r.map((l,d)=>{if(e==="breakpoints")return iie(o,l,a[d]??l);const p=`${e}.${l}`;return oie(o,p,a[d]??l)});return Array.isArray(t)?s:s[0]}}function sie(e){const{cssVarsRoot:t,theme:n,children:r}=e,i=C.exports.useMemo(()=>JZ(n),[n]);return te(lX,{theme:i,children:[w(lie,{root:t}),r]})}function lie({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return w(y4,{styles:n=>({[t]:n.__cssVars})})}_X({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function uie(){const{colorMode:e}=n4();return w(y4,{styles:t=>{const n=tO(t,"styles.global"),r=iO(n,{theme:t,colorMode:e});return r?RR(r)(t):void 0}})}var cie=new Set([...nY,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),die=new Set(["htmlWidth","htmlHeight","htmlSize"]);function fie(e){return die.has(e)||!cie.has(e)}var hie=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:i,sx:o,...a}=t,s=nO(a,(g,m)=>iY(m)),l=iO(e,t),d=Object.assign({},i,l,rO(s),o),p=RR(d)(t.theme);return r?[p,r]:p};function zb(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=fie);const i=hie({baseStyle:n}),o=Zw(e,r)(i);return ne.forwardRef(function(l,d){const{colorMode:p,forced:g}=n4();return ne.createElement(o,{ref:d,"data-theme":g?p:void 0,...l})})}function Ee(e){return C.exports.forwardRef(e)}function CO(e,t={}){const{styleConfig:n,...r}=t,{theme:i,colorMode:o}=wO(),a=e?tO(i,`components.${e}`):void 0,s=n||a,l=Ra({theme:i,colorMode:o},s?.defaultProps??{},rO(yX(r,["children"]))),d=C.exports.useRef({});if(s){const g=pY(s)(l);rie(d.current,g)||(d.current=g)}return d.current}function oo(e,t={}){return CO(e,t)}function Ai(e,t={}){return CO(e,t)}function pie(){const e=new Map;return new Proxy(zb,{apply(t,n,r){return zb(...r)},get(t,n){return e.has(n)||e.set(n,zb(n)),e.get(n)}})}var be=pie();function gie(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function xn(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:i="Provider",errorMessage:o}=e,a=C.exports.createContext(void 0);a.displayName=t;function s(){var l;const d=C.exports.useContext(a);if(!d&&n){const p=new Error(o??gie(r,i));throw p.name="ContextError",(l=Error.captureStackTrace)==null||l.call(Error,p,s),p}return d}return[a.Provider,s,a]}function mie(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function zn(...e){return t=>{e.forEach(n=>{mie(n,t)})}}function vie(...e){return C.exports.useMemo(()=>zn(...e),e)}function uP(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var yie=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function cP(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function dP(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var t6=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,Y3=e=>e,xie=class{descendants=new Map;register=e=>{if(e!=null)return yie(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=uP(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=cP(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=cP(r,this.enabledCount(),t);return this.enabledItem(i)};prev=(e,t=!0)=>{const n=dP(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=dP(r,this.enabledCount()-1,t);return this.enabledItem(i)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=uP(n);t?.disabled&&(t.disabled=!!t.disabled);const i={node:e,index:-1,...t};this.descendants.set(e,i),this.assignIndex(r)}};function bie(){const e=C.exports.useRef(new xie);return t6(()=>()=>e.current.destroy()),e.current}var[Sie,_O]=xn({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function wie(e){const t=_O(),[n,r]=C.exports.useState(-1),i=C.exports.useRef(null);t6(()=>()=>{!i.current||t.unregister(i.current)},[]),t6(()=>{if(!i.current)return;const a=Number(i.current.dataset.index);n!=a&&!Number.isNaN(a)&&r(a)});const o=Y3(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(i.current),register:zn(o,i)}}function kO(){return[Y3(Sie),()=>Y3(_O()),()=>bie(),i=>wie(i)]}var Rr=(...e)=>e.filter(Boolean).join(" "),fP={path:te("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},ha=Ee((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=Rr("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??fP.viewBox;if(n&&typeof n!="string")return ne.createElement(be.svg,{as:n,...m,...d});const b=a??fP.path;return ne.createElement(be.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});ha.displayName="Icon";function nt(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:i={}}=e,o=C.exports.Children.toArray(e.path),a=Ee((s,l)=>w(ha,{ref:l,viewBox:t,...i,...s,children:o.length?o:w("path",{fill:"currentColor",d:n})}));return a.displayName=r,a}function ur(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function w4(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:i=(m,y)=>m!==y}=e,o=ur(r),a=ur(i),[s,l]=C.exports.useState(n),d=t!==void 0,p=d?t:s,g=ur(m=>{const b=typeof m=="function"?m(p):m;!a(p,b)||(d||l(b),o(b))},[d,o,p,a]);return[p,g]}const t8=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),C4=C.exports.createContext({});function Cie(){return C.exports.useContext(C4).visualElement}const P0=C.exports.createContext(null),Vf=typeof document<"u",X3=Vf?C.exports.useLayoutEffect:C.exports.useEffect,EO=C.exports.createContext({strict:!1});function _ie(e,t,n,r){const i=Cie(),o=C.exports.useContext(EO),a=C.exports.useContext(P0),s=C.exports.useContext(t8).reducedMotion,l=C.exports.useRef(void 0);r=r||o.renderer,!l.current&&r&&(l.current=r(e,{visualState:t,parent:i,props:n,presenceId:a?a.id:void 0,blockInitialAnimation:a?a.initial===!1:!1,reducedMotionConfig:s}));const d=l.current;return X3(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),X3(()=>()=>d&&d.notifyUnmount(),[]),d}function Pp(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function kie(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Pp(n)&&(n.current=r))},[t])}function Dm(e){return typeof e=="string"||Array.isArray(e)}function _4(e){return typeof e=="object"&&typeof e.start=="function"}const Eie=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function k4(e){return _4(e.animate)||Eie.some(t=>Dm(e[t]))}function PO(e){return Boolean(k4(e)||e.variants)}function Pie(e,t){if(k4(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Dm(n)?n:void 0,animate:Dm(r)?r:void 0}}return e.inherit!==!1?t:{}}function Tie(e){const{initial:t,animate:n}=Pie(e,C.exports.useContext(C4));return C.exports.useMemo(()=>({initial:t,animate:n}),[hP(t),hP(n)])}function hP(e){return Array.isArray(e)?e.join(" "):e}const Xl=e=>({isEnabled:t=>e.some(n=>!!t[n])}),zm={measureLayout:Xl(["layout","layoutId","drag"]),animation:Xl(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Xl(["exit"]),drag:Xl(["drag","dragControls"]),focus:Xl(["whileFocus"]),hover:Xl(["whileHover","onHoverStart","onHoverEnd"]),tap:Xl(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Xl(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Xl(["whileInView","onViewportEnter","onViewportLeave"])};function Lie(e){for(const t in e)t==="projectionNodeConstructor"?zm.projectionNodeConstructor=e[t]:zm[t].Component=e[t]}function E4(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const Xg={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let Aie=1;function Iie(){return E4(()=>{if(Xg.hasEverUpdated)return Aie++})}const n8=C.exports.createContext({});class Mie extends ne.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const TO=C.exports.createContext({}),Rie=Symbol.for("motionComponentSymbol");function Oie({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:i,Component:o}){e&&Lie(e);function a(l,d){const p={...C.exports.useContext(t8),...l,layoutId:Nie(l)},{isStatic:g}=p;let m=null;const y=Tie(l),b=g?void 0:Iie(),S=i(l,g);if(!g&&Vf){y.visualElement=_ie(o,S,p,t);const E=C.exports.useContext(EO).strict,P=C.exports.useContext(TO);y.visualElement&&(m=y.visualElement.loadFeatures(p,E,e,b,n||zm.projectionNodeConstructor,P))}return te(Mie,{visualElement:y.visualElement,props:p,children:[m,w(C4.Provider,{value:y,children:r(o,l,b,kie(S,y.visualElement,d),S,g,y.visualElement)})]})}const s=C.exports.forwardRef(a);return s[Rie]=o,s}function Nie({layoutId:e}){const t=C.exports.useContext(n8).id;return t&&e!==void 0?t+"-"+e:e}function Die(e){function t(r,i={}){return Oie(e(r,i))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,i)=>(n.has(i)||n.set(i,t(i)),n.get(i))})}const zie=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function r8(e){return typeof e!="string"||e.includes("-")?!1:!!(zie.indexOf(e)>-1||/[A-Z]/.test(e))}const Q3={};function Fie(e){Object.assign(Q3,e)}const J3=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],hv=new Set(J3);function LO(e,{layout:t,layoutId:n}){return hv.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!Q3[e]||e==="opacity")}const Ss=e=>!!e?.getVelocity,Bie={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},$ie=(e,t)=>J3.indexOf(e)-J3.indexOf(t);function Hie({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},i,o){let a="";t.sort($ie);for(const s of t)a+=`${Bie[s]||s}(${e[s]}) `;return n&&!e.z&&(a+="translateZ(0)"),a=a.trim(),o?a=o(e,i?"":a):r&&i&&(a="none"),a}function AO(e){return e.startsWith("--")}const Wie=(e,t)=>t&&typeof e=="number"?t.transform(e):e,IO=(e,t)=>n=>Math.max(Math.min(n,t),e),Qg=e=>e%1?Number(e.toFixed(5)):e,Fm=/(-)?([\d]*\.?[\d])+/g,n6=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,Vie=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function pv(e){return typeof e=="string"}const Uf={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},Jg=Object.assign(Object.assign({},Uf),{transform:IO(0,1)}),G2=Object.assign(Object.assign({},Uf),{default:1}),gv=e=>({test:t=>pv(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),vc=gv("deg"),yl=gv("%"),gt=gv("px"),Uie=gv("vh"),Gie=gv("vw"),pP=Object.assign(Object.assign({},yl),{parse:e=>yl.parse(e)/100,transform:e=>yl.transform(e*100)}),i8=(e,t)=>n=>Boolean(pv(n)&&Vie.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),MO=(e,t,n)=>r=>{if(!pv(r))return r;const[i,o,a,s]=r.match(Fm);return{[e]:parseFloat(i),[t]:parseFloat(o),[n]:parseFloat(a),alpha:s!==void 0?parseFloat(s):1}},vf={test:i8("hsl","hue"),parse:MO("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+yl.transform(Qg(t))+", "+yl.transform(Qg(n))+", "+Qg(Jg.transform(r))+")"},jie=IO(0,255),Fb=Object.assign(Object.assign({},Uf),{transform:e=>Math.round(jie(e))}),Ac={test:i8("rgb","red"),parse:MO("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Fb.transform(e)+", "+Fb.transform(t)+", "+Fb.transform(n)+", "+Qg(Jg.transform(r))+")"};function qie(e){let t="",n="",r="",i="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),i=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),i=e.substr(4,1),t+=t,n+=n,r+=r,i+=i),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:i?parseInt(i,16)/255:1}}const r6={test:i8("#"),parse:qie,transform:Ac.transform},Xi={test:e=>Ac.test(e)||r6.test(e)||vf.test(e),parse:e=>Ac.test(e)?Ac.parse(e):vf.test(e)?vf.parse(e):r6.parse(e),transform:e=>pv(e)?e:e.hasOwnProperty("red")?Ac.transform(e):vf.transform(e)},RO="${c}",OO="${n}";function Kie(e){var t,n,r,i;return isNaN(e)&&pv(e)&&((n=(t=e.match(Fm))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((i=(r=e.match(n6))===null||r===void 0?void 0:r.length)!==null&&i!==void 0?i:0)>0}function NO(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(n6);r&&(n=r.length,e=e.replace(n6,RO),t.push(...r.map(Xi.parse)));const i=e.match(Fm);return i&&(e=e.replace(Fm,OO),t.push(...i.map(Uf.parse))),{values:t,numColors:n,tokenised:e}}function DO(e){return NO(e).values}function zO(e){const{values:t,numColors:n,tokenised:r}=NO(e),i=t.length;return o=>{let a=r;for(let s=0;stypeof e=="number"?0:e;function Yie(e){const t=DO(e);return zO(e)(t.map(Zie))}const hu={test:Kie,parse:DO,createTransformer:zO,getAnimatableNone:Yie},Xie=new Set(["brightness","contrast","saturate","opacity"]);function Qie(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match(Fm)||[];if(!r)return e;const i=n.replace(r,"");let o=Xie.has(t)?1:0;return r!==n&&(o*=100),t+"("+o+i+")"}const Jie=/([a-z-]*)\(.*?\)/g,i6=Object.assign(Object.assign({},hu),{getAnimatableNone:e=>{const t=e.match(Jie);return t?t.map(Qie).join(" "):e}}),gP={...Uf,transform:Math.round},FO={borderWidth:gt,borderTopWidth:gt,borderRightWidth:gt,borderBottomWidth:gt,borderLeftWidth:gt,borderRadius:gt,radius:gt,borderTopLeftRadius:gt,borderTopRightRadius:gt,borderBottomRightRadius:gt,borderBottomLeftRadius:gt,width:gt,maxWidth:gt,height:gt,maxHeight:gt,size:gt,top:gt,right:gt,bottom:gt,left:gt,padding:gt,paddingTop:gt,paddingRight:gt,paddingBottom:gt,paddingLeft:gt,margin:gt,marginTop:gt,marginRight:gt,marginBottom:gt,marginLeft:gt,rotate:vc,rotateX:vc,rotateY:vc,rotateZ:vc,scale:G2,scaleX:G2,scaleY:G2,scaleZ:G2,skew:vc,skewX:vc,skewY:vc,distance:gt,translateX:gt,translateY:gt,translateZ:gt,x:gt,y:gt,z:gt,perspective:gt,transformPerspective:gt,opacity:Jg,originX:pP,originY:pP,originZ:gt,zIndex:gP,fillOpacity:Jg,strokeOpacity:Jg,numOctaves:gP};function o8(e,t,n,r){const{style:i,vars:o,transform:a,transformKeys:s,transformOrigin:l}=e;s.length=0;let d=!1,p=!1,g=!0;for(const m in t){const y=t[m];if(AO(m)){o[m]=y;continue}const b=FO[m],S=Wie(y,b);if(hv.has(m)){if(d=!0,a[m]=S,s.push(m),!g)continue;y!==(b.default||0)&&(g=!1)}else m.startsWith("origin")?(p=!0,l[m]=S):i[m]=S}if(t.transform||(d||r?i.transform=Hie(e,n,g,r):i.transform&&(i.transform="none")),p){const{originX:m="50%",originY:y="50%",originZ:b=0}=l;i.transformOrigin=`${m} ${y} ${b}`}}const a8=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function BO(e,t,n){for(const r in t)!Ss(t[r])&&!LO(r,n)&&(e[r]=t[r])}function eoe({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=a8();return o8(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function toe(e,t,n){const r=e.style||{},i={};return BO(i,r,e),Object.assign(i,eoe(e,t,n)),e.transformValues?e.transformValues(i):i}function noe(e,t,n){const r={},i=toe(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=i,r}const roe=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],ioe=["whileTap","onTap","onTapStart","onTapCancel"],ooe=["onPan","onPanStart","onPanSessionStart","onPanEnd"],aoe=["whileInView","onViewportEnter","onViewportLeave","viewport"],soe=new Set(["initial","style","values","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...aoe,...ioe,...roe,...ooe]);function e5(e){return soe.has(e)}let $O=e=>!e5(e);function loe(e){!e||($O=t=>t.startsWith("on")?!e5(t):e(t))}try{loe(require("@emotion/is-prop-valid").default)}catch{}function uoe(e,t,n){const r={};for(const i in e)($O(i)||n===!0&&e5(i)||!t&&!e5(i)||e.draggable&&i.startsWith("onDrag"))&&(r[i]=e[i]);return r}function mP(e,t,n){return typeof e=="string"?e:gt.transform(t+n*e)}function coe(e,t,n){const r=mP(t,e.x,e.width),i=mP(n,e.y,e.height);return`${r} ${i}`}const doe={offset:"stroke-dashoffset",array:"stroke-dasharray"},foe={offset:"strokeDashoffset",array:"strokeDasharray"};function hoe(e,t,n=1,r=0,i=!0){e.pathLength=1;const o=i?doe:foe;e[o.offset]=gt.transform(-r);const a=gt.transform(t),s=gt.transform(n);e[o.array]=`${a} ${s}`}function s8(e,{attrX:t,attrY:n,originX:r,originY:i,pathLength:o,pathSpacing:a=1,pathOffset:s=0,...l},d,p){o8(e,l,d,p),e.attrs=e.style,e.style={};const{attrs:g,style:m,dimensions:y}=e;g.transform&&(y&&(m.transform=g.transform),delete g.transform),y&&(r!==void 0||i!==void 0||m.transform)&&(m.transformOrigin=coe(y,r!==void 0?r:.5,i!==void 0?i:.5)),t!==void 0&&(g.x=t),n!==void 0&&(g.y=n),o!==void 0&&hoe(g,o,a,s,!1)}const HO=()=>({...a8(),attrs:{}});function poe(e,t){const n=C.exports.useMemo(()=>{const r=HO();return s8(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};BO(r,e.style,e),n.style={...r,...n.style}}return n}function goe(e=!1){return(n,r,i,o,{latestValues:a},s)=>{const d=(r8(n)?poe:noe)(r,a,s),g={...uoe(r,typeof n=="string",e),...d,ref:o};return i&&(g["data-projection-id"]=i),C.exports.createElement(n,g)}}const WO=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function VO(e,{style:t,vars:n},r,i){Object.assign(e.style,t,i&&i.getProjectionStyles(r));for(const o in n)e.style.setProperty(o,n[o])}const UO=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function GO(e,t,n,r){VO(e,t,void 0,r);for(const i in t.attrs)e.setAttribute(UO.has(i)?i:WO(i),t.attrs[i])}function l8(e){const{style:t}=e,n={};for(const r in t)(Ss(t[r])||LO(r,e))&&(n[r]=t[r]);return n}function jO(e){const t=l8(e);for(const n in e)if(Ss(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function u8(e,t,n,r={},i={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),t}const Bm=e=>Array.isArray(e),moe=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),qO=e=>Bm(e)?e[e.length-1]||0:e;function Yy(e){const t=Ss(e)?e.get():e;return moe(t)?t.toValue():t}function voe({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,i,o){const a={latestValues:yoe(r,i,o,e),renderState:t()};return n&&(a.mount=s=>n(r,s,a)),a}const KO=e=>(t,n)=>{const r=C.exports.useContext(C4),i=C.exports.useContext(P0),o=()=>voe(e,t,r,i);return n?o():E4(o)};function yoe(e,t,n,r){const i={},o=r(e);for(const m in o)i[m]=Yy(o[m]);let{initial:a,animate:s}=e;const l=k4(e),d=PO(e);t&&d&&!l&&e.inherit!==!1&&(a===void 0&&(a=t.initial),s===void 0&&(s=t.animate));let p=n?n.initial===!1:!1;p=p||a===!1;const g=p?s:a;return g&&typeof g!="boolean"&&!_4(g)&&(Array.isArray(g)?g:[g]).forEach(y=>{const b=u8(e,y);if(!b)return;const{transitionEnd:S,transition:E,...P}=b;for(const k in P){let L=P[k];if(Array.isArray(L)){const I=p?L.length-1:0;L=L[I]}L!==null&&(i[k]=L)}for(const k in S)i[k]=S[k]}),i}const xoe={useVisualState:KO({scrapeMotionValuesFromProps:jO,createRenderState:HO,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}s8(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),GO(t,n)}})},boe={useVisualState:KO({scrapeMotionValuesFromProps:l8,createRenderState:a8})};function Soe(e,{forwardMotionProps:t=!1},n,r,i){return{...r8(e)?xoe:boe,preloadedFeatures:n,useRender:goe(t),createVisualElement:r,projectionNodeConstructor:i,Component:e}}var Vn;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Vn||(Vn={}));function P4(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function o6(e,t,n,r){C.exports.useEffect(()=>{const i=e.current;if(n&&i)return P4(i,t,n,r)},[e,t,n,r])}function woe({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Vn.Focus,!0)},i=()=>{n&&n.setActive(Vn.Focus,!1)};o6(t,"focus",e?r:void 0),o6(t,"blur",e?i:void 0)}function ZO(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function YO(e){return!!e.touches}function Coe(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const _oe={pageX:0,pageY:0};function koe(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||_oe;return{x:r[t+"X"],y:r[t+"Y"]}}function Eoe(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function c8(e,t="page"){return{point:YO(e)?koe(e,t):Eoe(e,t)}}const XO=(e,t=!1)=>{const n=r=>e(r,c8(r));return t?Coe(n):n},Poe=()=>Vf&&window.onpointerdown===null,Toe=()=>Vf&&window.ontouchstart===null,Loe=()=>Vf&&window.onmousedown===null,Aoe={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},Ioe={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function QO(e){return Poe()?e:Toe()?Ioe[e]:Loe()?Aoe[e]:e}function Wp(e,t,n,r){return P4(e,QO(t),XO(n,t==="pointerdown"),r)}function t5(e,t,n,r){return o6(e,QO(t),n&&XO(n,t==="pointerdown"),r)}function JO(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const vP=JO("dragHorizontal"),yP=JO("dragVertical");function eN(e){let t=!1;if(e==="y")t=yP();else if(e==="x")t=vP();else{const n=vP(),r=yP();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function tN(){const e=eN(!0);return e?(e(),!1):!0}function xP(e,t,n){return(r,i)=>{!ZO(r)||tN()||(e.animationState&&e.animationState.setActive(Vn.Hover,t),n&&n(r,i))}}function Moe({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){t5(r,"pointerenter",e||n?xP(r,!0,e):void 0,{passive:!e}),t5(r,"pointerleave",t||n?xP(r,!1,t):void 0,{passive:!t})}const nN=(e,t)=>t?e===t?!0:nN(e,t.parentElement):!1;function d8(e){return C.exports.useEffect(()=>()=>e(),[])}function rN(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(e);iMath.min(Math.max(n,e),t),Bb=.001,Ooe=.01,bP=10,Noe=.05,Doe=1;function zoe({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let i,o;Roe(e<=bP*1e3);let a=1-t;a=r5(Noe,Doe,a),e=r5(Ooe,bP,e/1e3),a<1?(i=d=>{const p=d*a,g=p*e,m=p-n,y=a6(d,a),b=Math.exp(-g);return Bb-m/y*b},o=d=>{const g=d*a*e,m=g*n+n,y=Math.pow(a,2)*Math.pow(d,2)*e,b=Math.exp(-g),S=a6(Math.pow(d,2),a);return(-i(d)+Bb>0?-1:1)*((m-y)*b)/S}):(i=d=>{const p=Math.exp(-d*e),g=(d-n)*e+1;return-Bb+p*g},o=d=>{const p=Math.exp(-d*e),g=(n-d)*(e*e);return p*g});const s=5/e,l=Boe(i,o,s);if(e=e*1e3,isNaN(l))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(l,2)*r;return{stiffness:d,damping:a*2*Math.sqrt(r*d),duration:e}}}const Foe=12;function Boe(e,t,n){let r=n;for(let i=1;ie[n]!==void 0)}function Woe(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!SP(e,Hoe)&&SP(e,$oe)){const n=zoe(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function f8(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:i}=e,o=rN(e,["from","to","restSpeed","restDelta"]);const a={done:!1,value:t};let{stiffness:s,damping:l,mass:d,velocity:p,duration:g,isResolvedFromDuration:m}=Woe(o),y=wP,b=wP;function S(){const E=p?-(p/1e3):0,P=n-t,k=l/(2*Math.sqrt(s*d)),L=Math.sqrt(s/d)/1e3;if(i===void 0&&(i=Math.min(Math.abs(n-t)/100,.4)),k<1){const I=a6(L,k);y=O=>{const N=Math.exp(-k*L*O);return n-N*((E+k*L*P)/I*Math.sin(I*O)+P*Math.cos(I*O))},b=O=>{const N=Math.exp(-k*L*O);return k*L*N*(Math.sin(I*O)*(E+k*L*P)/I+P*Math.cos(I*O))-N*(Math.cos(I*O)*(E+k*L*P)-I*P*Math.sin(I*O))}}else if(k===1)y=I=>n-Math.exp(-L*I)*(P+(E+L*P)*I);else{const I=L*Math.sqrt(k*k-1);y=O=>{const N=Math.exp(-k*L*O),D=Math.min(I*O,300);return n-N*((E+k*L*P)*Math.sinh(D)+I*P*Math.cosh(D))/I}}}return S(),{next:E=>{const P=y(E);if(m)a.done=E>=g;else{const k=b(E)*1e3,L=Math.abs(k)<=r,I=Math.abs(n-P)<=i;a.done=L&&I}return a.value=a.done?n:P,a},flipTarget:()=>{p=-p,[t,n]=[n,t],S()}}}f8.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const wP=e=>0,$m=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Sr=(e,t,n)=>-n*e+n*t+e;function $b(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function CP({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let i=0,o=0,a=0;if(!t)i=o=a=n;else{const s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;i=$b(l,s,e+1/3),o=$b(l,s,e),a=$b(l,s,e-1/3)}return{red:Math.round(i*255),green:Math.round(o*255),blue:Math.round(a*255),alpha:r}}const Voe=(e,t,n)=>{const r=e*e,i=t*t;return Math.sqrt(Math.max(0,n*(i-r)+r))},Uoe=[r6,Ac,vf],_P=e=>Uoe.find(t=>t.test(e)),iN=(e,t)=>{let n=_P(e),r=_P(t),i=n.parse(e),o=r.parse(t);n===vf&&(i=CP(i),n=Ac),r===vf&&(o=CP(o),r=Ac);const a=Object.assign({},i);return s=>{for(const l in a)l!=="alpha"&&(a[l]=Voe(i[l],o[l],s));return a.alpha=Sr(i.alpha,o.alpha,s),n.transform(a)}},s6=e=>typeof e=="number",Goe=(e,t)=>n=>t(e(n)),T4=(...e)=>e.reduce(Goe);function oN(e,t){return s6(e)?n=>Sr(e,t,n):Xi.test(e)?iN(e,t):sN(e,t)}const aN=(e,t)=>{const n=[...e],r=n.length,i=e.map((o,a)=>oN(o,t[a]));return o=>{for(let a=0;a{const n=Object.assign(Object.assign({},e),t),r={};for(const i in n)e[i]!==void 0&&t[i]!==void 0&&(r[i]=oN(e[i],t[i]));return i=>{for(const o in r)n[o]=r[o](i);return n}};function kP(e){const t=hu.parse(e),n=t.length;let r=0,i=0,o=0;for(let a=0;a{const n=hu.createTransformer(t),r=kP(e),i=kP(t);return r.numHSL===i.numHSL&&r.numRGB===i.numRGB&&r.numNumbers>=i.numNumbers?T4(aN(r.parsed,i.parsed),n):a=>`${a>0?t:e}`},qoe=(e,t)=>n=>Sr(e,t,n);function Koe(e){if(typeof e=="number")return qoe;if(typeof e=="string")return Xi.test(e)?iN:sN;if(Array.isArray(e))return aN;if(typeof e=="object")return joe}function Zoe(e,t,n){const r=[],i=n||Koe(e[0]),o=e.length-1;for(let a=0;an($m(e,t,r))}function Xoe(e,t){const n=e.length,r=n-1;return i=>{let o=0,a=!1;if(i<=e[0]?a=!0:i>=e[r]&&(o=r-1,a=!0),!a){let l=1;for(;li||l===r);l++);o=l-1}const s=$m(e[o],e[o+1],i);return t[o](s)}}function lN(e,t,{clamp:n=!0,ease:r,mixer:i}={}){const o=e.length;n5(o===t.length),n5(!r||!Array.isArray(r)||r.length===o-1),e[0]>e[o-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const a=Zoe(t,r,i),s=o===2?Yoe(e,a):Xoe(e,a);return n?l=>s(r5(e[0],e[o-1],l)):s}const L4=e=>t=>1-e(1-t),h8=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,Qoe=e=>t=>Math.pow(t,e),uN=e=>t=>t*t*((e+1)*t-e),Joe=e=>{const t=uN(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},cN=1.525,eae=4/11,tae=8/11,nae=9/10,p8=e=>e,g8=Qoe(2),rae=L4(g8),dN=h8(g8),fN=e=>1-Math.sin(Math.acos(e)),m8=L4(fN),iae=h8(m8),v8=uN(cN),oae=L4(v8),aae=h8(v8),sae=Joe(cN),lae=4356/361,uae=35442/1805,cae=16061/1805,i5=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-i5(1-e*2)):.5*i5(e*2-1)+.5;function hae(e,t){return e.map(()=>t||dN).splice(0,e.length-1)}function pae(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function gae(e,t){return e.map(n=>n*t)}function Xy({from:e=0,to:t=1,ease:n,offset:r,duration:i=300}){const o={done:!1,value:e},a=Array.isArray(t)?t:[e,t],s=gae(r&&r.length===a.length?r:pae(a),i);function l(){return lN(s,a,{ease:Array.isArray(n)?n:hae(a,n)})}let d=l();return{next:p=>(o.value=d(p),o.done=p>=i,o),flipTarget:()=>{a.reverse(),d=l()}}}function mae({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:i=.5,modifyTarget:o}){const a={done:!1,value:t};let s=n*e;const l=t+s,d=o===void 0?l:o(l);return d!==l&&(s=d-t),{next:p=>{const g=-s*Math.exp(-p/r);return a.done=!(g>i||g<-i),a.value=a.done?d:d+g,a},flipTarget:()=>{}}}const EP={keyframes:Xy,spring:f8,decay:mae};function vae(e){if(Array.isArray(e.to))return Xy;if(EP[e.type])return EP[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?Xy:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?f8:Xy}const hN=1/60*1e3,yae=typeof performance<"u"?()=>performance.now():()=>Date.now(),pN=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(yae()),hN);function xae(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=xae(()=>Hm=!0),e),{}),Sae=mv.reduce((e,t)=>{const n=A4[t];return e[t]=(r,i=!1,o=!1)=>(Hm||_ae(),n.schedule(r,i,o)),e},{}),wae=mv.reduce((e,t)=>(e[t]=A4[t].cancel,e),{});mv.reduce((e,t)=>(e[t]=()=>A4[t].process(Vp),e),{});const Cae=e=>A4[e].process(Vp),gN=e=>{Hm=!1,Vp.delta=l6?hN:Math.max(Math.min(e-Vp.timestamp,bae),1),Vp.timestamp=e,u6=!0,mv.forEach(Cae),u6=!1,Hm&&(l6=!1,pN(gN))},_ae=()=>{Hm=!0,l6=!0,u6||pN(gN)},kae=()=>Vp;function mN(e,t,n=0){return e-t-n}function Eae(e,t,n=0,r=!0){return r?mN(t+-e,t,n):t-(e-t)+n}function Pae(e,t,n,r){return r?e>=t+n:e<=-n}const Tae=e=>{const t=({delta:n})=>e(n);return{start:()=>Sae.update(t,!0),stop:()=>wae.update(t)}};function vN(e){var t,n,{from:r,autoplay:i=!0,driver:o=Tae,elapsed:a=0,repeat:s=0,repeatType:l="loop",repeatDelay:d=0,onPlay:p,onStop:g,onComplete:m,onRepeat:y,onUpdate:b}=e,S=rN(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:E}=S,P,k=0,L=S.duration,I,O=!1,N=!0,D;const F=vae(S);!((n=(t=F).needsInterpolation)===null||n===void 0)&&n.call(t,r,E)&&(D=lN([0,100],[r,E],{clamp:!1}),r=0,E=100);const U=F(Object.assign(Object.assign({},S),{from:r,to:E}));function W(){k++,l==="reverse"?(N=k%2===0,a=Eae(a,L,d,N)):(a=mN(a,L,d),l==="mirror"&&U.flipTarget()),O=!1,y&&y()}function q(){P.stop(),m&&m()}function pe(ye){if(N||(ye=-ye),a+=ye,!O){const Pe=U.next(Math.max(0,a));I=Pe.value,D&&(I=D(I)),O=N?Pe.done:a<=0}b?.(I),O&&(k===0&&(L??(L=a)),k{g?.(),P.stop()}}}function yN(e,t){return t?e*(1e3/t):0}function Lae({from:e=0,velocity:t=0,min:n,max:r,power:i=.8,timeConstant:o=750,bounceStiffness:a=500,bounceDamping:s=10,restDelta:l=1,modifyTarget:d,driver:p,onUpdate:g,onComplete:m,onStop:y}){let b;function S(L){return n!==void 0&&Lr}function E(L){return n===void 0?r:r===void 0||Math.abs(n-L){var O;g?.(I),(O=L.onUpdate)===null||O===void 0||O.call(L,I)},onComplete:m,onStop:y}))}function k(L){P(Object.assign({type:"spring",stiffness:a,damping:s,restDelta:l},L))}if(S(e))k({from:e,velocity:t,to:E(e)});else{let L=i*t+e;typeof d<"u"&&(L=d(L));const I=E(L),O=I===n?-1:1;let N,D;const F=U=>{N=D,D=U,t=yN(U-N,kae().delta),(O===1&&U>I||O===-1&&Ub?.stop()}}const c6=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),PP=e=>c6(e)&&e.hasOwnProperty("z"),j2=(e,t)=>Math.abs(e-t);function y8(e,t){if(s6(e)&&s6(t))return j2(e,t);if(c6(e)&&c6(t)){const n=j2(e.x,t.x),r=j2(e.y,t.y),i=PP(e)&&PP(t)?j2(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(i,2))}}const xN=(e,t)=>1-3*t+3*e,bN=(e,t)=>3*t-6*e,SN=e=>3*e,o5=(e,t,n)=>((xN(t,n)*e+bN(t,n))*e+SN(t))*e,wN=(e,t,n)=>3*xN(t,n)*e*e+2*bN(t,n)*e+SN(t),Aae=1e-7,Iae=10;function Mae(e,t,n,r,i){let o,a,s=0;do a=t+(n-t)/2,o=o5(a,r,i)-e,o>0?n=a:t=a;while(Math.abs(o)>Aae&&++s=Oae?Nae(a,g,e,n):m===0?g:Mae(a,s,s+q2,e,n)}return a=>a===0||a===1?a:o5(o(a),t,r)}function zae({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(!1),s=C.exports.useRef(null),l={passive:!(t||e||n||y)};function d(){s.current&&s.current(),s.current=null}function p(){return d(),a.current=!1,i.animationState&&i.animationState.setActive(Vn.Tap,!1),!tN()}function g(b,S){!p()||(nN(i.getInstance(),b.target)?e&&e(b,S):n&&n(b,S))}function m(b,S){!p()||n&&n(b,S)}function y(b,S){d(),!a.current&&(a.current=!0,s.current=T4(Wp(window,"pointerup",g,l),Wp(window,"pointercancel",m,l)),i.animationState&&i.animationState.setActive(Vn.Tap,!0),t&&t(b,S))}t5(i,"pointerdown",o?y:void 0,l),d8(d)}const Fae="production",CN=typeof process>"u"||process.env===void 0?Fae:"production",TP=new Set;function _N(e,t,n){e||TP.has(t)||(console.warn(t),n&&console.warn(n),TP.add(t))}const d6=new WeakMap,Hb=new WeakMap,Bae=e=>{const t=d6.get(e.target);t&&t(e)},$ae=e=>{e.forEach(Bae)};function Hae({root:e,...t}){const n=e||document;Hb.has(n)||Hb.set(n,{});const r=Hb.get(n),i=JSON.stringify(t);return r[i]||(r[i]=new IntersectionObserver($ae,{root:e,...t})),r[i]}function Wae(e,t,n){const r=Hae(t);return d6.set(e,n),r.observe(e),()=>{d6.delete(e),r.unobserve(e)}}function Vae({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:i={}}){const o=C.exports.useRef({hasEnteredView:!1,isInView:!1});let a=Boolean(t||n||r);i.once&&o.current.hasEnteredView&&(a=!1),(typeof IntersectionObserver>"u"?jae:Gae)(a,o.current,e,i)}const Uae={some:0,all:1};function Gae(e,t,n,{root:r,margin:i,amount:o="some",once:a}){C.exports.useEffect(()=>{if(!e)return;const s={root:r?.current,rootMargin:i,threshold:typeof o=="number"?o:Uae[o]},l=d=>{const{isIntersecting:p}=d;if(t.isInView===p||(t.isInView=p,a&&!p&&t.hasEnteredView))return;p&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Vn.InView,p);const g=n.getProps(),m=p?g.onViewportEnter:g.onViewportLeave;m&&m(d)};return Wae(n.getInstance(),s,l)},[e,r,i,o])}function jae(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(CN!=="production"&&_N(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:i}=n.getProps();i&&i(null),n.animationState&&n.animationState.setActive(Vn.InView,!0)}))},[e])}const Ic=e=>t=>(e(t),null),qae={inView:Ic(Vae),tap:Ic(zae),focus:Ic(woe),hover:Ic(Moe)};function x8(){const e=C.exports.useContext(P0);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,i=C.exports.useId();return C.exports.useEffect(()=>r(i),[]),!t&&n?[!1,()=>n&&n(i)]:[!0]}function Kae(){return Zae(C.exports.useContext(P0))}function Zae(e){return e===null?!0:e.isPresent}function kN(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,Yae={linear:p8,easeIn:g8,easeInOut:dN,easeOut:rae,circIn:fN,circInOut:iae,circOut:m8,backIn:v8,backInOut:aae,backOut:oae,anticipate:sae,bounceIn:dae,bounceInOut:fae,bounceOut:i5},LP=e=>{if(Array.isArray(e)){n5(e.length===4);const[t,n,r,i]=e;return Dae(t,n,r,i)}else if(typeof e=="string")return Yae[e];return e},Xae=e=>Array.isArray(e)&&typeof e[0]!="number",AP=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&hu.test(t)&&!t.startsWith("url(")),Xd=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),K2=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),Wb=()=>({type:"keyframes",ease:"linear",duration:.3}),Qae=e=>({type:"keyframes",duration:.8,values:e}),IP={x:Xd,y:Xd,z:Xd,rotate:Xd,rotateX:Xd,rotateY:Xd,rotateZ:Xd,scaleX:K2,scaleY:K2,scale:K2,opacity:Wb,backgroundColor:Wb,color:Wb,default:K2},Jae=(e,t)=>{let n;return Bm(t)?n=Qae:n=IP[e]||IP.default,{to:t,...n(t)}},ese={...FO,color:Xi,backgroundColor:Xi,outlineColor:Xi,fill:Xi,stroke:Xi,borderColor:Xi,borderTopColor:Xi,borderRightColor:Xi,borderBottomColor:Xi,borderLeftColor:Xi,filter:i6,WebkitFilter:i6},b8=e=>ese[e];function S8(e,t){var n;let r=b8(e);return r!==i6&&(r=hu),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const tse={current:!1},EN=1/60*1e3,nse=typeof performance<"u"?()=>performance.now():()=>Date.now(),PN=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(nse()),EN);function rse(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=rse(()=>Wm=!0),e),{}),ws=vv.reduce((e,t)=>{const n=I4[t];return e[t]=(r,i=!1,o=!1)=>(Wm||ase(),n.schedule(r,i,o)),e},{}),zf=vv.reduce((e,t)=>(e[t]=I4[t].cancel,e),{}),Vb=vv.reduce((e,t)=>(e[t]=()=>I4[t].process(Up),e),{}),ose=e=>I4[e].process(Up),TN=e=>{Wm=!1,Up.delta=f6?EN:Math.max(Math.min(e-Up.timestamp,ise),1),Up.timestamp=e,h6=!0,vv.forEach(ose),h6=!1,Wm&&(f6=!1,PN(TN))},ase=()=>{Wm=!0,f6=!0,h6||PN(TN)},p6=()=>Up;function LN(e,t){const n=performance.now(),r=({timestamp:i})=>{const o=i-n;o>=t&&(zf.read(r),e(o-t))};return ws.read(r,!0),()=>zf.read(r)}function sse({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:i,repeat:o,repeatType:a,repeatDelay:s,from:l,...d}){return!!Object.keys(d).length}function lse({ease:e,times:t,yoyo:n,flip:r,loop:i,...o}){const a={...o};return t&&(a.offset=t),o.duration&&(a.duration=a5(o.duration)),o.repeatDelay&&(a.repeatDelay=a5(o.repeatDelay)),e&&(a.ease=Xae(e)?e.map(LP):LP(e)),o.type==="tween"&&(a.type="keyframes"),(n||i||r)&&(n?a.repeatType="reverse":i?a.repeatType="loop":r&&(a.repeatType="mirror"),a.repeat=i||n||r||o.repeat),o.type!=="spring"&&(a.type="keyframes"),a}function use(e,t){var n,r;return(r=(n=(w8(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function cse(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function dse(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),cse(t),sse(e)||(e={...e,...Jae(n,t.to)}),{...t,...lse(e)}}function fse(e,t,n,r,i){const o=w8(r,e)||{};let a=o.from!==void 0?o.from:t.get();const s=AP(e,n);a==="none"&&s&&typeof n=="string"?a=S8(e,n):MP(a)&&typeof n=="string"?a=RP(n):!Array.isArray(n)&&MP(n)&&typeof a=="string"&&(n=RP(a));const l=AP(e,a);function d(){const g={from:a,to:n,velocity:t.getVelocity(),onComplete:i,onUpdate:m=>t.set(m)};return o.type==="inertia"||o.type==="decay"?Lae({...g,...o}):vN({...dse(o,g,e),onUpdate:m=>{g.onUpdate(m),o.onUpdate&&o.onUpdate(m)},onComplete:()=>{g.onComplete(),o.onComplete&&o.onComplete()}})}function p(){const g=qO(n);return t.set(g),i(),o.onUpdate&&o.onUpdate(g),o.onComplete&&o.onComplete(),{stop:()=>{}}}return!l||!s||o.type===!1?p:d}function MP(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function RP(e){return typeof e=="number"?0:S8("",e)}function w8(e,t){return e[t]||e.default||e}function C8(e,t,n,r={}){return tse.current&&(r={type:!1}),t.start(i=>{let o;const a=fse(e,t,n,r,i),s=use(r,e),l=()=>o=a();let d;return s?d=LN(l,a5(s)):l(),()=>{d&&d(),o&&o.stop()}})}const hse=e=>/^\-?\d*\.?\d+$/.test(e),pse=e=>/^0[^.\s]+$/.test(e);function _8(e,t){e.indexOf(t)===-1&&e.push(t)}function k8(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class em{constructor(){this.subscriptions=[]}add(t){return _8(this.subscriptions,t),()=>k8(this.subscriptions,t)}notify(t,n,r){const i=this.subscriptions.length;if(!!i)if(i===1)this.subscriptions[0](t,n,r);else for(let o=0;o!isNaN(parseFloat(e));class mse{constructor(t){this.version="7.6.2",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new em,this.velocityUpdateSubscribers=new em,this.renderSubscribers=new em,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:i,timestamp:o}=p6();this.lastUpdated!==o&&(this.timeDelta=i,this.lastUpdated=o,ws.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>ws.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=gse(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?yN(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function d0(e){return new mse(e)}const AN=e=>t=>t.test(e),vse={test:e=>e==="auto",parse:e=>e},IN=[Uf,gt,yl,vc,Gie,Uie,vse],ig=e=>IN.find(AN(e)),yse=[...IN,Xi,hu],xse=e=>yse.find(AN(e));function bse(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function Sse(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function M4(e,t,n){const r=e.getProps();return u8(r,t,n!==void 0?n:r.custom,bse(e),Sse(e))}function wse(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,d0(n))}function Cse(e,t){const n=M4(e,t);let{transitionEnd:r={},transition:i={},...o}=n?e.makeTargetAnimatable(n,!1):{};o={...o,...r};for(const a in o){const s=qO(o[a]);wse(e,a,s)}}function _se(e,t,n){var r,i;const o=Object.keys(t).filter(s=>!e.hasValue(s)),a=o.length;if(!!a)for(let s=0;sg6(e,o,n));r=Promise.all(i)}else if(typeof t=="string")r=g6(e,t,n);else{const i=typeof t=="function"?M4(e,t,n.custom):t;r=MN(e,i,n)}return r.then(()=>e.notifyAnimationComplete(t))}function g6(e,t,n={}){var r;const i=M4(e,t,n.custom);let{transition:o=e.getDefaultTransition()||{}}=i||{};n.transitionOverride&&(o=n.transitionOverride);const a=i?()=>MN(e,i,n):()=>Promise.resolve(),s=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:p=0,staggerChildren:g,staggerDirection:m}=o;return Tse(e,t,p+d,g,m,n)}:()=>Promise.resolve(),{when:l}=o;if(l){const[d,p]=l==="beforeChildren"?[a,s]:[s,a];return d().then(p)}else return Promise.all([a(),s(n.delay)])}function MN(e,t,{delay:n=0,transitionOverride:r,type:i}={}){var o;let{transition:a=e.getDefaultTransition(),transitionEnd:s,...l}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(a=r);const p=[],g=i&&((o=e.animationState)===null||o===void 0?void 0:o.getState()[i]);for(const m in l){const y=e.getValue(m),b=l[m];if(!y||b===void 0||g&&Ase(g,m))continue;let S={delay:n,...a};e.shouldReduceMotion&&hv.has(m)&&(S={...S,type:!1,delay:0});let E=C8(m,y,b,S);s5(d)&&(d.add(m),E=E.then(()=>d.remove(m))),p.push(E)}return Promise.all(p).then(()=>{s&&Cse(e,s)})}function Tse(e,t,n=0,r=0,i=1,o){const a=[],s=(e.variantChildren.size-1)*r,l=i===1?(d=0)=>d*r:(d=0)=>s-d*r;return Array.from(e.variantChildren).sort(Lse).forEach((d,p)=>{a.push(g6(d,t,{...o,delay:n+l(p)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(a)}function Lse(e,t){return e.sortNodePosition(t)}function Ase({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const E8=[Vn.Animate,Vn.InView,Vn.Focus,Vn.Hover,Vn.Tap,Vn.Drag,Vn.Exit],Ise=[...E8].reverse(),Mse=E8.length;function Rse(e){return t=>Promise.all(t.map(({animation:n,options:r})=>Pse(e,n,r)))}function Ose(e){let t=Rse(e);const n=Dse();let r=!0;const i=(l,d)=>{const p=M4(e,d);if(p){const{transition:g,transitionEnd:m,...y}=p;l={...l,...y,...m}}return l};function o(l){t=l(e)}function a(l,d){var p;const g=e.getProps(),m=e.getVariantContext(!0)||{},y=[],b=new Set;let S={},E=1/0;for(let k=0;kE&&N;const q=Array.isArray(O)?O:[O];let pe=q.reduce(i,{});D===!1&&(pe={});const{prevResolvedValues:fe={}}=I,ye={...fe,...pe},Pe=xe=>{W=!0,b.delete(xe),I.needsAnimating[xe]=!0};for(const xe in ye){const Y=pe[xe],V=fe[xe];S.hasOwnProperty(xe)||(Y!==V?Bm(Y)&&Bm(V)?!kN(Y,V)||U?Pe(xe):I.protectedKeys[xe]=!0:Y!==void 0?Pe(xe):b.add(xe):Y!==void 0&&b.has(xe)?Pe(xe):I.protectedKeys[xe]=!0)}I.prevProp=O,I.prevResolvedValues=pe,I.isActive&&(S={...S,...pe}),r&&e.blockInitialAnimation&&(W=!1),W&&!F&&y.push(...q.map(xe=>({animation:xe,options:{type:L,...l}})))}if(b.size){const k={};b.forEach(L=>{const I=e.getBaseTarget(L);I!==void 0&&(k[L]=I)}),y.push({animation:k})}let P=Boolean(y.length);return r&&g.initial===!1&&!e.manuallyAnimateOnMount&&(P=!1),r=!1,P?t(y):Promise.resolve()}function s(l,d,p){var g;if(n[l].isActive===d)return Promise.resolve();(g=e.variantChildren)===null||g===void 0||g.forEach(y=>{var b;return(b=y.animationState)===null||b===void 0?void 0:b.setActive(l,d)}),n[l].isActive=d;const m=a(p,l);for(const y in n)n[y].protectedKeys={};return m}return{animateChanges:a,setActive:s,setAnimateFunction:o,getState:()=>n}}function Nse(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!kN(t,e):!1}function Qd(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function Dse(){return{[Vn.Animate]:Qd(!0),[Vn.InView]:Qd(),[Vn.Hover]:Qd(),[Vn.Tap]:Qd(),[Vn.Drag]:Qd(),[Vn.Focus]:Qd(),[Vn.Exit]:Qd()}}const zse={animation:Ic(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=Ose(e)),_4(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Ic(e=>{const{custom:t,visualElement:n}=e,[r,i]=x8(),o=C.exports.useContext(P0);C.exports.useEffect(()=>{n.isPresent=r;const a=n.animationState&&n.animationState.setActive(Vn.Exit,!r,{custom:o&&o.custom||t});a&&!r&&a.then(i)},[r])})};class RN{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=Gb(this.lastMoveEventInfo,this.history),p=this.startEvent!==null,g=y8(d.offset,{x:0,y:0})>=3;if(!p&&!g)return;const{point:m}=d,{timestamp:y}=p6();this.history.push({...m,timestamp:y});const{onStart:b,onMove:S}=this.handlers;p||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),S&&S(this.lastMoveEvent,d)},this.handlePointerMove=(d,p)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=Ub(p,this.transformPagePoint),ZO(d)&&d.buttons===0){this.handlePointerUp(d,p);return}ws.update(this.updatePoint,!0)},this.handlePointerUp=(d,p)=>{this.end();const{onEnd:g,onSessionEnd:m}=this.handlers,y=Gb(Ub(p,this.transformPagePoint),this.history);this.startEvent&&g&&g(d,y),m&&m(d,y)},YO(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const i=c8(t),o=Ub(i,this.transformPagePoint),{point:a}=o,{timestamp:s}=p6();this.history=[{...a,timestamp:s}];const{onSessionStart:l}=n;l&&l(t,Gb(o,this.history)),this.removeListeners=T4(Wp(window,"pointermove",this.handlePointerMove),Wp(window,"pointerup",this.handlePointerUp),Wp(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),zf.update(this.updatePoint)}}function Ub(e,t){return t?{point:t(e.point)}:e}function OP(e,t){return{x:e.x-t.x,y:e.y-t.y}}function Gb({point:e},t){return{point:e,delta:OP(e,ON(t)),offset:OP(e,Fse(t)),velocity:Bse(t,.1)}}function Fse(e){return e[0]}function ON(e){return e[e.length-1]}function Bse(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=ON(e);for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>a5(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function aa(e){return e.max-e.min}function NP(e,t=0,n=.01){return y8(e,t)n&&(e=r?Sr(n,e,r.max):Math.min(e,n)),e}function BP(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function Wse(e,{top:t,left:n,bottom:r,right:i}){return{x:BP(e.x,n,i),y:BP(e.y,t,r)}}function $P(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=$m(t.min,t.max-r,e.min):r>i&&(n=$m(e.min,e.max-i,t.min)),r5(0,1,n)}function Gse(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const m6=.35;function jse(e=m6){return e===!1?e=0:e===!0&&(e=m6),{x:HP(e,"left","right"),y:HP(e,"top","bottom")}}function HP(e,t,n){return{min:WP(e,t),max:WP(e,n)}}function WP(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const VP=()=>({translate:0,scale:1,origin:0,originPoint:0}),rm=()=>({x:VP(),y:VP()}),UP=()=>({min:0,max:0}),bi=()=>({x:UP(),y:UP()});function il(e){return[e("x"),e("y")]}function NN({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function qse({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function Kse(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function jb(e){return e===void 0||e===1}function v6({scale:e,scaleX:t,scaleY:n}){return!jb(e)||!jb(t)||!jb(n)}function rf(e){return v6(e)||DN(e)||e.z||e.rotate||e.rotateX||e.rotateY}function DN(e){return GP(e.x)||GP(e.y)}function GP(e){return e&&e!=="0%"}function l5(e,t,n){const r=e-n,i=t*r;return n+i}function jP(e,t,n,r,i){return i!==void 0&&(e=l5(e,i,r)),l5(e,n,r)+t}function y6(e,t=0,n=1,r,i){e.min=jP(e.min,t,n,r,i),e.max=jP(e.max,t,n,r,i)}function zN(e,{x:t,y:n}){y6(e.x,t.translate,t.scale,t.originPoint),y6(e.y,n.translate,n.scale,n.originPoint)}function Zse(e,t,n,r=!1){var i,o;const a=n.length;if(!a)return;t.x=t.y=1;let s,l;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(c8(s,"page").point)},i=(s,l)=>{var d;const{drag:p,dragPropagation:g,onDragStart:m}=this.getProps();p&&!g&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=eN(p),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),il(y=>{var b,S;let E=this.getAxisMotionValue(y).get()||0;if(yl.test(E)){const P=(S=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||S===void 0?void 0:S.actual[y];P&&(E=aa(P)*(parseFloat(E)/100))}this.originPoint[y]=E}),m?.(s,l),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(Vn.Drag,!0))},o=(s,l)=>{const{dragPropagation:d,dragDirectionLock:p,onDirectionLock:g,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:y}=l;if(p&&this.currentDirection===null){this.currentDirection=tle(y),this.currentDirection!==null&&g?.(this.currentDirection);return}this.updateAxis("x",l.point,y),this.updateAxis("y",l.point,y),this.visualElement.syncRender(),m?.(s,l)},a=(s,l)=>this.stop(s,l);this.panSession=new RN(t,{onSessionStart:r,onStart:i,onMove:o,onSessionEnd:a},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:i}=n;this.startAnimation(i);const{onDragEnd:o}=this.getProps();o?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Vn.Drag,!1)}updateAxis(t,n,r){const{drag:i}=this.getProps();if(!r||!Z2(t,i,this.currentDirection))return;const o=this.getAxisMotionValue(t);let a=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(a=Hse(a,this.constraints[t],this.elastic[t])),o.set(a)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},i=this.constraints;t&&Pp(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=Wse(r.actual,t):this.constraints=!1,this.elastic=jse(n),i!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&il(o=>{this.getAxisMotionValue(o)&&(this.constraints[o]=Gse(r.actual[o],this.constraints[o]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Pp(t))return!1;const r=t.current,{projection:i}=this.visualElement;if(!i||!i.layout)return!1;const o=Qse(r,i.root,this.visualElement.getTransformPagePoint());let a=Vse(i.layout.actual,o);if(n){const s=n(qse(a));this.hasMutatedConstraints=!!s,s&&(a=NN(s))}return a}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:i,dragTransition:o,dragSnapToOrigin:a,onDragTransitionEnd:s}=this.getProps(),l=this.constraints||{},d=il(p=>{var g;if(!Z2(p,n,this.currentDirection))return;let m=(g=l?.[p])!==null&&g!==void 0?g:{};a&&(m={min:0,max:0});const y=i?200:1e6,b=i?40:1e7,S={type:"inertia",velocity:r?t[p]:0,bounceStiffness:y,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...o,...m};return this.startAxisValueAnimation(p,S)});return Promise.all(d).then(s)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return C8(t,r,0,n)}stopAnimation(){il(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const i="_drag"+t.toUpperCase(),o=this.visualElement.getProps()[i];return o||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){il(n=>{const{drag:r}=this.getProps();if(!Z2(n,r,this.currentDirection))return;const{projection:i}=this.visualElement,o=this.getAxisMotionValue(n);if(i&&i.layout){const{min:a,max:s}=i.layout.actual[n];o.set(t[n]-Sr(a,s,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:i}=this.visualElement;if(!Pp(r)||!i||!this.constraints)return;this.stopAnimation();const o={x:0,y:0};il(s=>{const l=this.getAxisMotionValue(s);if(l){const d=l.get();o[s]=Use({min:d,max:d},this.constraints[s])}});const{transformTemplate:a}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=a?a({},""):"none",(t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout(),this.resolveConstraints(),il(s=>{if(!Z2(s,n,null))return;const l=this.getAxisMotionValue(s),{min:d,max:p}=this.constraints[s];l.set(Sr(d,p,o[s]))})}addListeners(){var t;Jse.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=Wp(n,"pointerdown",d=>{const{drag:p,dragListener:g=!0}=this.getProps();p&&g&&this.start(d)}),i=()=>{const{dragConstraints:d}=this.getProps();Pp(d)&&(this.constraints=this.resolveRefConstraints())},{projection:o}=this.visualElement,a=o.addEventListener("measure",i);o&&!o.layout&&((t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout()),i();const s=P4(window,"resize",()=>this.scalePositionWithinConstraints()),l=o.addEventListener("didUpdate",({delta:d,hasLayoutChanged:p})=>{this.isDragging&&p&&(il(g=>{const m=this.getAxisMotionValue(g);!m||(this.originPoint[g]+=d[g].translate,m.set(m.get()+d[g].translate))}),this.visualElement.syncRender())});return()=>{s(),r(),a(),l?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:i=!1,dragConstraints:o=!1,dragElastic:a=m6,dragMomentum:s=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:i,dragConstraints:o,dragElastic:a,dragMomentum:s}}}function Z2(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function tle(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function nle(e){const{dragControls:t,visualElement:n}=e,r=E4(()=>new ele(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function rle({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(null),{transformPagePoint:s}=C.exports.useContext(t8),l={onSessionStart:r,onStart:t,onMove:e,onEnd:(p,g)=>{a.current=null,n&&n(p,g)}};C.exports.useEffect(()=>{a.current!==null&&a.current.updateHandlers(l)});function d(p){a.current=new RN(p,l,{transformPagePoint:s})}t5(i,"pointerdown",o&&d),d8(()=>a.current&&a.current.end())}const ile={pan:Ic(rle),drag:Ic(nle)},x6={current:null},BN={current:!1};function ole(){if(BN.current=!0,!!Vf)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>x6.current=e.matches;e.addListener(t),t()}else x6.current=!1}const Y2=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function ale(){const e=Y2.map(()=>new em),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{Y2.forEach(i=>{var o;const a="on"+i,s=r[a];(o=t[i])===null||o===void 0||o.call(t),s&&(t[i]=n[a](s))})}};return e.forEach((r,i)=>{n["on"+Y2[i]]=o=>r.add(o),n["notify"+Y2[i]]=(...o)=>r.notify(...o)}),n}function sle(e,t,n){const{willChange:r}=t;for(const i in t){const o=t[i],a=n[i];if(Ss(o))e.addValue(i,o),s5(r)&&r.add(i);else if(Ss(a))e.addValue(i,d0(o)),s5(r)&&r.remove(i);else if(a!==o)if(e.hasValue(i)){const s=e.getValue(i);!s.hasAnimated&&s.set(o)}else{const s=e.getStaticValue(i);e.addValue(i,d0(s!==void 0?s:o))}}for(const i in n)t[i]===void 0&&e.removeValue(i);return t}const $N=Object.keys(zm),lle=$N.length,HN=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:i,render:o,readValueFromInstance:a,removeValueFromRenderState:s,sortNodePosition:l,scrapeMotionValuesFromProps:d})=>({parent:p,props:g,presenceId:m,blockInitialAnimation:y,visualState:b,reducedMotionConfig:S},E={})=>{let P=!1;const{latestValues:k,renderState:L}=b;let I;const O=ale(),N=new Map,D=new Map;let F={};const U={...k},W=g.initial?{...k}:{};let q;function pe(){!I||!P||(fe(),o(I,L,g.style,oe.projection))}function fe(){t(oe,L,k,E,g)}function ye(){O.notifyUpdate(k)}function Pe(X,me){const ve=me.onChange(He=>{k[X]=He,g.onUpdate&&ws.update(ye,!1,!0)}),Se=me.onRenderRequest(oe.scheduleRender);D.set(X,()=>{ve(),Se()})}const{willChange:xe,...Y}=d(g);for(const X in Y){const me=Y[X];k[X]!==void 0&&Ss(me)&&(me.set(k[X],!1),s5(xe)&&xe.add(X))}if(g.values)for(const X in g.values){const me=g.values[X];k[X]!==void 0&&Ss(me)&&me.set(k[X])}const V=k4(g),ae=PO(g),oe={treeType:e,current:null,depth:p?p.depth+1:0,parent:p,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:ae?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(p?.isMounted()),blockInitialAnimation:y,isMounted:()=>Boolean(I),mount(X){P=!0,I=oe.current=X,oe.projection&&oe.projection.mount(X),ae&&p&&!V&&(q=p?.addVariantChild(oe)),N.forEach((me,ve)=>Pe(ve,me)),BN.current||ole(),oe.shouldReduceMotion=S==="never"?!1:S==="always"?!0:x6.current,p?.children.add(oe),oe.setProps(g)},unmount(){var X;(X=oe.projection)===null||X===void 0||X.unmount(),zf.update(ye),zf.render(pe),D.forEach(me=>me()),q?.(),p?.children.delete(oe),O.clearAllListeners(),I=void 0,P=!1},loadFeatures(X,me,ve,Se,He,je){const ut=[];for(let qe=0;qeoe.scheduleRender(),animationType:typeof at=="string"?at:"both",initialPromotionConfig:je,layoutScroll:At})}return ut},addVariantChild(X){var me;const ve=oe.getClosestVariantNode();if(ve)return(me=ve.variantChildren)===null||me===void 0||me.add(X),()=>ve.variantChildren.delete(X)},sortNodePosition(X){return!l||e!==X.treeType?0:l(oe.getInstance(),X.getInstance())},getClosestVariantNode:()=>ae?oe:p?.getClosestVariantNode(),getLayoutId:()=>g.layoutId,getInstance:()=>I,getStaticValue:X=>k[X],setStaticValue:(X,me)=>k[X]=me,getLatestValues:()=>k,setVisibility(X){oe.isVisible!==X&&(oe.isVisible=X,oe.scheduleRender())},makeTargetAnimatable(X,me=!0){return r(oe,X,g,me)},measureViewportBox(){return i(I,g)},addValue(X,me){oe.hasValue(X)&&oe.removeValue(X),N.set(X,me),k[X]=me.get(),Pe(X,me)},removeValue(X){var me;N.delete(X),(me=D.get(X))===null||me===void 0||me(),D.delete(X),delete k[X],s(X,L)},hasValue:X=>N.has(X),getValue(X,me){if(g.values&&g.values[X])return g.values[X];let ve=N.get(X);return ve===void 0&&me!==void 0&&(ve=d0(me),oe.addValue(X,ve)),ve},forEachValue:X=>N.forEach(X),readValue:X=>k[X]!==void 0?k[X]:a(I,X,E),setBaseTarget(X,me){U[X]=me},getBaseTarget(X){var me;const{initial:ve}=g,Se=typeof ve=="string"||typeof ve=="object"?(me=u8(g,ve))===null||me===void 0?void 0:me[X]:void 0;if(ve&&Se!==void 0)return Se;if(n){const He=n(g,X);if(He!==void 0&&!Ss(He))return He}return W[X]!==void 0&&Se===void 0?void 0:U[X]},...O,build(){return fe(),L},scheduleRender(){ws.render(pe,!1,!0)},syncRender:pe,setProps(X){(X.transformTemplate||g.transformTemplate)&&oe.scheduleRender(),g=X,O.updatePropListeners(X),F=sle(oe,d(g),F)},getProps:()=>g,getVariant:X=>{var me;return(me=g.variants)===null||me===void 0?void 0:me[X]},getDefaultTransition:()=>g.transition,getTransformPagePoint:()=>g.transformPagePoint,getVariantContext(X=!1){if(X)return p?.getVariantContext();if(!V){const ve=p?.getVariantContext()||{};return g.initial!==void 0&&(ve.initial=g.initial),ve}const me={};for(let ve=0;ve{const o=i.get();if(!b6(o))return;const a=S6(o,r);a&&i.set(a)});for(const i in t){const o=t[i];if(!b6(o))continue;const a=S6(o,r);!a||(t[i]=a,n&&n[i]===void 0&&(n[i]=o))}return{target:t,transitionEnd:n}}const fle=new Set(["width","height","top","left","right","bottom","x","y"]),UN=e=>fle.has(e),hle=e=>Object.keys(e).some(UN),GN=(e,t)=>{e.set(t,!1),e.set(t)},KP=e=>e===Uf||e===gt;var ZP;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(ZP||(ZP={}));const YP=(e,t)=>parseFloat(e.split(", ")[t]),XP=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const i=r.match(/^matrix3d\((.+)\)$/);if(i)return YP(i[1],t);{const o=r.match(/^matrix\((.+)\)$/);return o?YP(o[1],e):0}},ple=new Set(["x","y","z"]),gle=J3.filter(e=>!ple.has(e));function mle(e){const t=[];return gle.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const QP={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:XP(4,13),y:XP(5,14)},vle=(e,t,n)=>{const r=t.measureViewportBox(),i=t.getInstance(),o=getComputedStyle(i),{display:a}=o,s={};a==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{s[d]=QP[d](r,o)}),t.syncRender();const l=t.measureViewportBox();return n.forEach(d=>{const p=t.getValue(d);GN(p,s[d]),e[d]=QP[d](l,o)}),e},yle=(e,t,n={},r={})=>{t={...t},r={...r};const i=Object.keys(t).filter(UN);let o=[],a=!1;const s=[];if(i.forEach(l=>{const d=e.getValue(l);if(!e.hasValue(l))return;let p=n[l],g=ig(p);const m=t[l];let y;if(Bm(m)){const b=m.length,S=m[0]===null?1:0;p=m[S],g=ig(p);for(let E=S;E=0?window.pageYOffset:null,d=vle(t,e,s);return o.length&&o.forEach(([p,g])=>{e.getValue(p).set(g)}),e.syncRender(),Vf&&l!==null&&window.scrollTo({top:l}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function xle(e,t,n,r){return hle(t)?yle(e,t,n,r):{target:t,transitionEnd:r}}const ble=(e,t,n,r)=>{const i=dle(e,t,r);return t=i.target,r=i.transitionEnd,xle(e,t,n,r)};function Sle(e){return window.getComputedStyle(e)}const jN={treeType:"dom",readValueFromInstance(e,t){if(hv.has(t)){const n=b8(t);return n&&n.default||0}else{const n=Sle(e),r=(AO(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return FN(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:i},o=!0){let a=Ese(r,t||{},e);if(i&&(n&&(n=i(n)),r&&(r=i(r)),a&&(a=i(a))),o){_se(e,r,a);const s=ble(e,r,a,n);n=s.transitionEnd,r=s.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:l8,build(e,t,n,r,i){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),o8(t,n,r,i.transformTemplate)},render:VO},wle=HN(jN),Cle=HN({...jN,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return hv.has(t)?((n=b8(t))===null||n===void 0?void 0:n.default)||0:(t=UO.has(t)?t:WO(t),e.getAttribute(t))},scrapeMotionValuesFromProps:jO,build(e,t,n,r,i){s8(t,n,r,i.transformTemplate)},render:GO}),_le=(e,t)=>r8(e)?Cle(t,{enableHardwareAcceleration:!1}):wle(t,{enableHardwareAcceleration:!0});function JP(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const og={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(gt.test(e))e=parseFloat(e);else return e;const n=JP(e,t.target.x),r=JP(e,t.target.y);return`${n}% ${r}%`}},eT="_$css",kle={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,i=e.includes("var("),o=[];i&&(e=e.replace(VN,y=>(o.push(y),eT)));const a=hu.parse(e);if(a.length>5)return r;const s=hu.createTransformer(e),l=typeof a[0]!="number"?1:0,d=n.x.scale*t.x,p=n.y.scale*t.y;a[0+l]/=d,a[1+l]/=p;const g=Sr(d,p,.5);typeof a[2+l]=="number"&&(a[2+l]/=g),typeof a[3+l]=="number"&&(a[3+l]/=g);let m=s(a);if(i){let y=0;m=m.replace(eT,()=>{const b=o[y];return y++,b})}return m}};class Ele extends ne.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:i}=this.props,{projection:o}=t;Fie(Tle),o&&(n.group&&n.group.add(o),r&&r.register&&i&&r.register(o),o.root.didUpdate(),o.addEventListener("animationComplete",()=>{this.safeToRemove()}),o.setOptions({...o.options,onExitComplete:()=>this.safeToRemove()})),Xg.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:i,isPresent:o}=this.props,a=r.projection;return a&&(a.isPresent=o,i||t.layoutDependency!==n||n===void 0?a.willUpdate():this.safeToRemove(),t.isPresent!==o&&(o?a.promote():a.relegate()||ws.postRender(()=>{var s;!((s=a.getStack())===null||s===void 0)&&s.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:i}=t;i&&(i.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(i),r?.deregister&&r.deregister(i))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function Ple(e){const[t,n]=x8(),r=C.exports.useContext(n8);return w(Ele,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(TO),isPresent:t,safeToRemove:n})}const Tle={borderRadius:{...og,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:og,borderTopRightRadius:og,borderBottomLeftRadius:og,borderBottomRightRadius:og,boxShadow:kle},Lle={measureLayout:Ple};function Ale(e,t,n={}){const r=Ss(e)?e:d0(e);return C8("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const qN=["TopLeft","TopRight","BottomLeft","BottomRight"],Ile=qN.length,tT=e=>typeof e=="string"?parseFloat(e):e,nT=e=>typeof e=="number"||gt.test(e);function Mle(e,t,n,r,i,o){var a,s,l,d;i?(e.opacity=Sr(0,(a=n.opacity)!==null&&a!==void 0?a:1,Rle(r)),e.opacityExit=Sr((s=t.opacity)!==null&&s!==void 0?s:1,0,Ole(r))):o&&(e.opacity=Sr((l=t.opacity)!==null&&l!==void 0?l:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let p=0;prt?1:n($m(e,t,r))}function iT(e,t){e.min=t.min,e.max=t.max}function cs(e,t){iT(e.x,t.x),iT(e.y,t.y)}function oT(e,t,n,r,i){return e-=t,e=l5(e,1/n,r),i!==void 0&&(e=l5(e,1/i,r)),e}function Nle(e,t=0,n=1,r=.5,i,o=e,a=e){if(yl.test(t)&&(t=parseFloat(t),t=Sr(a.min,a.max,t/100)-a.min),typeof t!="number")return;let s=Sr(o.min,o.max,r);e===o&&(s-=t),e.min=oT(e.min,t,n,s,i),e.max=oT(e.max,t,n,s,i)}function aT(e,t,[n,r,i],o,a){Nle(e,t[n],t[r],t[i],t.scale,o,a)}const Dle=["x","scaleX","originX"],zle=["y","scaleY","originY"];function sT(e,t,n,r){aT(e.x,t,Dle,n?.x,r?.x),aT(e.y,t,zle,n?.y,r?.y)}function lT(e){return e.translate===0&&e.scale===1}function ZN(e){return lT(e.x)&&lT(e.y)}function YN(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function uT(e){return aa(e.x)/aa(e.y)}function Fle(e,t,n=.1){return y8(e,t)<=n}class Ble{constructor(){this.members=[]}add(t){_8(this.members,t),t.scheduleRender()}remove(t){if(k8(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(i=>t===i);if(n===0)return!1;let r;for(let i=n;i>=0;i--){const o=this.members[i];if(o.isPresent!==!1){r=o;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,n&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:o}=t.options;o===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,i,o,a;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(a=(i=t.resumingFrom)===null||i===void 0?void 0:(o=i.options).onExitComplete)===null||a===void 0||a.call(o)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const $le="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function cT(e,t,n){const r=e.x.translate/t.x,i=e.y.translate/t.y;let o=`translate3d(${r}px, ${i}px, 0) `;if(o+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:l,rotateX:d,rotateY:p}=n;l&&(o+=`rotate(${l}deg) `),d&&(o+=`rotateX(${d}deg) `),p&&(o+=`rotateY(${p}deg) `)}const a=e.x.scale*t.x,s=e.y.scale*t.y;return o+=`scale(${a}, ${s})`,o===$le?"none":o}const Hle=(e,t)=>e.depth-t.depth;class Wle{constructor(){this.children=[],this.isDirty=!1}add(t){_8(this.children,t),this.isDirty=!0}remove(t){k8(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(Hle),this.isDirty=!1,this.children.forEach(t)}}const dT=["","X","Y","Z"],fT=1e3;function XN({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:i}){return class{constructor(a,s={},l=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(qle),this.nodes.forEach(Kle)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=a,this.latestValues=s,this.root=l?l.root||l:this,this.path=l?[...l.path,l]:[],this.parent=l,this.depth=l?l.depth+1:0,a&&this.root.registerPotentialNode(a,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(a,()=>{this.root.updateBlockedByResize=!0,m&&m(),m=LN(y,250),Xg.hasAnimatedSinceResize&&(Xg.hasAnimatedSinceResize=!1,this.nodes.forEach(pT))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&g&&(d||p)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:y,hasRelativeTargetChanged:b,layout:S})=>{var E,P,k,L,I;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const O=(P=(E=this.options.transition)!==null&&E!==void 0?E:g.getDefaultTransition())!==null&&P!==void 0?P:Jle,{onLayoutAnimationStart:N,onLayoutAnimationComplete:D}=g.getProps(),F=!this.targetLayout||!YN(this.targetLayout,S)||b,U=!y&&b;if(((k=this.resumeFrom)===null||k===void 0?void 0:k.instance)||U||y&&(F||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,U);const W={...w8(O,"layout"),onPlay:N,onComplete:D};g.shouldReduceMotion&&(W.delay=0,W.type=!1),this.startAnimation(W)}else!y&&this.animationProgress===0&&pT(this),this.isLead()&&((I=(L=this.options).onExitComplete)===null||I===void 0||I.call(L));this.targetLayout=S})}unmount(){var a,s;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(a=this.getStack())===null||a===void 0||a.remove(this),(s=this.parent)===null||s===void 0||s.children.delete(this),this.instance=void 0,zf.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var a;return this.isAnimationBlocked||((a=this.parent)===null||a===void 0?void 0:a.isTreeAnimationBlocked())||!1}startUpdate(){var a;this.isUpdateBlocked()||(this.isUpdating=!0,(a=this.nodes)===null||a===void 0||a.forEach(Zle))}willUpdate(a=!0){var s,l,d;if(this.root.isUpdateBlocked()){(l=(s=this.options).onExitComplete)===null||l===void 0||l.call(s);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let y=0;y{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const a=this.measure(),s=this.removeTransform(this.removeElementScroll(a));yT(s),this.snapshot={measured:a,layout:s,latestValues:{}}}updateLayout(){var a;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var k;const L=P/1e3;gT(m.x,a.x,L),gT(m.y,a.y,L),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((k=this.relativeParent)===null||k===void 0?void 0:k.layout)&&(nm(y,this.layout.actual,this.relativeParent.layout.actual),Xle(this.relativeTarget,this.relativeTargetOrigin,y,L)),b&&(this.animationValues=g,Mle(g,p,this.latestValues,L,E,S)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=L},this.mixTargetDelta(0)}startAnimation(a){var s,l;this.notifyListeners("animationStart"),(s=this.currentAnimation)===null||s===void 0||s.stop(),this.resumingFrom&&((l=this.resumingFrom.currentAnimation)===null||l===void 0||l.stop()),this.pendingAnimation&&(zf.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=ws.update(()=>{Xg.hasAnimatedSinceResize=!0,this.currentAnimation=Ale(0,fT,{...a,onUpdate:d=>{var p;this.mixTargetDelta(d),(p=a.onUpdate)===null||p===void 0||p.call(a,d)},onComplete:()=>{var d;(d=a.onComplete)===null||d===void 0||d.call(a),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var a;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(a=this.getStack())===null||a===void 0||a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var a;this.currentAnimation&&((a=this.mixTargetDelta)===null||a===void 0||a.call(this,fT),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const a=this.getLead();let{targetWithTransforms:s,target:l,layout:d,latestValues:p}=a;if(!(!s||!l||!d)){if(this!==a&&this.layout&&d&&QN(this.options.animationType,this.layout.actual,d.actual)){l=this.target||bi();const g=aa(this.layout.actual.x);l.x.min=a.target.x.min,l.x.max=l.x.min+g;const m=aa(this.layout.actual.y);l.y.min=a.target.y.min,l.y.max=l.y.min+m}cs(s,l),Tp(s,p),tm(this.projectionDeltaWithTransform,this.layoutCorrected,s,p)}}registerSharedNode(a,s){var l,d,p;this.sharedNodes.has(a)||this.sharedNodes.set(a,new Ble),this.sharedNodes.get(a).add(s),s.promote({transition:(l=s.options.initialPromotionConfig)===null||l===void 0?void 0:l.transition,preserveFollowOpacity:(p=(d=s.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||p===void 0?void 0:p.call(d,s)})}isLead(){const a=this.getStack();return a?a.lead===this:!0}getLead(){var a;const{layoutId:s}=this.options;return s?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this}getPrevLead(){var a;const{layoutId:s}=this.options;return s?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0}getStack(){const{layoutId:a}=this.options;if(a)return this.root.sharedNodes.get(a)}promote({needsReset:a,transition:s,preserveFollowOpacity:l}={}){const d=this.getStack();d&&d.promote(this,l),a&&(this.projectionDelta=void 0,this.needsReset=!0),s&&this.setOptions({transition:s})}relegate(){const a=this.getStack();return a?a.relegate(this):!1}resetRotation(){const{visualElement:a}=this.options;if(!a)return;let s=!1;const l={};for(let d=0;d{var s;return(s=a.currentAnimation)===null||s===void 0?void 0:s.stop()}),this.root.nodes.forEach(hT),this.root.sharedNodes.clear()}}}function Vle(e){e.updateLayout()}function Ule(e){var t,n,r;const i=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&i&&e.hasListeners("didUpdate")){const{actual:o,measured:a}=e.layout,{animationType:s}=e.options;s==="size"?il(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=aa(y);y.min=o[m].min,y.max=y.min+b}):QN(s,i.layout,o)&&il(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=aa(o[m]);y.max=y.min+b});const l=rm();tm(l,o,i.layout);const d=rm();i.isShared?tm(d,e.applyTransform(a,!0),i.measured):tm(d,o,i.layout);const p=!ZN(l);let g=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:y}=e.relativeParent;if(m&&y){const b=bi();nm(b,i.layout,m.layout);const S=bi();nm(S,o,y.actual),YN(b,S)||(g=!0)}}e.notifyListeners("didUpdate",{layout:o,snapshot:i,delta:d,layoutDelta:l,hasLayoutChanged:p,hasRelativeTargetChanged:g})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function Gle(e){e.clearSnapshot()}function hT(e){e.clearMeasurements()}function jle(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function pT(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function qle(e){e.resolveTargetDelta()}function Kle(e){e.calcProjection()}function Zle(e){e.resetRotation()}function Yle(e){e.removeLeadSnapshot()}function gT(e,t,n){e.translate=Sr(t.translate,0,n),e.scale=Sr(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function mT(e,t,n,r){e.min=Sr(t.min,n.min,r),e.max=Sr(t.max,n.max,r)}function Xle(e,t,n,r){mT(e.x,t.x,n.x,r),mT(e.y,t.y,n.y,r)}function Qle(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const Jle={duration:.45,ease:[.4,0,.1,1]};function eue(e,t){let n=e.root;for(let o=e.path.length-1;o>=0;o--)if(Boolean(e.path[o].instance)){n=e.path[o];break}const i=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);i&&e.mount(i,!0)}function vT(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function yT(e){vT(e.x),vT(e.y)}function QN(e,t,n){return e==="position"||e==="preserve-aspect"&&!Fle(uT(t),uT(n),.2)}const tue=XN({attachResizeListener:(e,t)=>P4(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),qb={current:void 0},nue=XN({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!qb.current){const e=new tue(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),qb.current=e}return qb.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),rue={...zse,...qae,...ile,...Lle},Wa=Die((e,t)=>Soe(e,t,rue,_le,nue));function JN(){const e=C.exports.useRef(!1);return X3(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function iue(){const e=JN(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>ws.postRender(r),[r]),t]}class oue extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function aue({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),i=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:o,height:a,top:s,left:l}=i.current;if(t||!r.current||!o||!a)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` + [data-motion-pop-id="${n}"] { + position: absolute !important; + width: ${o}px !important; + height: ${a}px !important; + top: ${s}px !important; + left: ${l}px !important; + } + `),()=>{document.head.removeChild(d)}},[t]),w(oue,{isPresent:t,childRef:r,sizeRef:i,children:C.exports.cloneElement(e,{ref:r})})}const Kb=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:i,presenceAffectsLayout:o,mode:a})=>{const s=E4(sue),l=C.exports.useId(),d=C.exports.useMemo(()=>({id:l,initial:t,isPresent:n,custom:i,onExitComplete:p=>{s.set(p,!0);for(const g of s.values())if(!g)return;r&&r()},register:p=>(s.set(p,!1),()=>s.delete(p))}),o?void 0:[n]);return C.exports.useMemo(()=>{s.forEach((p,g)=>s.set(g,!1))},[n]),C.exports.useEffect(()=>{!n&&!s.size&&r&&r()},[n]),a==="popLayout"&&(e=w(aue,{isPresent:n,children:e})),w(P0.Provider,{value:d,children:e})};function sue(){return new Map}const fp=e=>e.key||"";function lue(e,t){e.forEach(n=>{const r=fp(n);t.set(r,n)})}function uue(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const bu=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:i,presenceAffectsLayout:o=!0,mode:a="sync"})=>{i&&(a="wait",_N(!1,"Replace exitBeforeEnter with mode='wait'"));let[s]=iue();const l=C.exports.useContext(n8).forceRender;l&&(s=l);const d=JN(),p=uue(e);let g=p;const m=new Set,y=C.exports.useRef(g),b=C.exports.useRef(new Map).current,S=C.exports.useRef(!0);if(X3(()=>{S.current=!1,lue(p,b),y.current=g}),d8(()=>{S.current=!0,b.clear(),m.clear()}),S.current)return w(Fn,{children:g.map(L=>w(Kb,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:o,mode:a,children:L},fp(L)))});g=[...g];const E=y.current.map(fp),P=p.map(fp),k=E.length;for(let L=0;L{if(P.indexOf(L)!==-1)return;const I=b.get(L);if(!I)return;const O=E.indexOf(L),N=()=>{b.delete(L),m.delete(L);const D=y.current.findIndex(F=>F.key===L);if(y.current.splice(D,1),!m.size){if(y.current=p,d.current===!1)return;s(),r&&r()}};g.splice(O,0,w(Kb,{isPresent:!1,onExitComplete:N,custom:t,presenceAffectsLayout:o,mode:a,children:I},fp(I)))}),g=g.map(L=>{const I=L.key;return m.has(I)?L:w(Kb,{isPresent:!0,presenceAffectsLayout:o,mode:a,children:L},fp(L))}),CN!=="production"&&a==="wait"&&g.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),w(Fn,{children:m.size?g:g.map(L=>C.exports.cloneElement(L))})};var cl=function(){return cl=Object.assign||function(t){for(var n,r=1,i=arguments.length;r0&&o[o.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!o||d[1]>o[0]&&d[1]0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function w6(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,o;re.filter(Boolean).join(" ");function cue(){return!1}var due=e=>{const{condition:t,message:n}=e;t&&cue()&&console.warn(n)},yf={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},ag={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function C6(e){switch(e?.direction??"right"){case"right":return ag.slideRight;case"left":return ag.slideLeft;case"bottom":return ag.slideDown;case"top":return ag.slideUp;default:return ag.slideRight}}var Tf={enter:{duration:.2,ease:yf.easeOut},exit:{duration:.1,ease:yf.easeIn}},Cs={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},fue=e=>e!=null&&parseInt(e.toString(),10)>0,bT={exit:{height:{duration:.2,ease:yf.ease},opacity:{duration:.3,ease:yf.ease}},enter:{height:{duration:.3,ease:yf.ease},opacity:{duration:.4,ease:yf.ease}}},hue={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:fue(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Cs.exit(bT.exit,i)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Cs.enter(bT.enter,i)})},tD=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:i=!0,startingHeight:o=0,endingHeight:a="auto",style:s,className:l,transition:d,transitionEnd:p,...g}=e,[m,y]=C.exports.useState(!1);C.exports.useEffect(()=>{const k=setTimeout(()=>{y(!0)});return()=>clearTimeout(k)},[]),due({condition:Boolean(o>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(o.toString())>0,S={startingHeight:o,endingHeight:a,animateOpacity:i,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:p?.enter,exit:r?p?.exit:{...p?.exit,display:b?"block":"none"}}},E=r?n:!0,P=n||r?"enter":"exit";return w(bu,{initial:!1,custom:S,children:E&&ne.createElement(Wa.div,{ref:t,...g,className:yv("chakra-collapse",l),style:{overflow:"hidden",display:"block",...s},custom:S,variants:hue,initial:r?"exit":!1,animate:P,exit:"exit"})})});tD.displayName="Collapse";var pue={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Cs.enter(Tf.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Cs.exit(Tf.exit,n),transitionEnd:t?.exit})},nD={initial:"exit",animate:"enter",exit:"exit",variants:pue},gue=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,className:o,transition:a,transitionEnd:s,delay:l,...d}=t,p=i||r?"enter":"exit",g=r?i&&r:!0,m={transition:a,transitionEnd:s,delay:l};return w(bu,{custom:m,children:g&&ne.createElement(Wa.div,{ref:n,className:yv("chakra-fade",o),custom:m,...nD,animate:p,...d})})});gue.displayName="Fade";var mue={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Cs.exit(Tf.exit,i)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Cs.enter(Tf.enter,n),transitionEnd:e?.enter})},rD={initial:"exit",animate:"enter",exit:"exit",variants:mue},vue=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,initialScale:a=.95,className:s,transition:l,transitionEnd:d,delay:p,...g}=t,m=r?i&&r:!0,y=i||r?"enter":"exit",b={initialScale:a,reverse:o,transition:l,transitionEnd:d,delay:p};return w(bu,{custom:b,children:m&&ne.createElement(Wa.div,{ref:n,className:yv("chakra-offset-slide",s),...rD,animate:y,custom:b,...g})})});vue.displayName="ScaleFade";var ST={exit:{duration:.15,ease:yf.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},yue={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:i}=C6({direction:e});return{...i,transition:t?.exit??Cs.exit(ST.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:i}=C6({direction:e});return{...i,transition:n?.enter??Cs.enter(ST.enter,r),transitionEnd:t?.enter}}},iD=C.exports.forwardRef(function(t,n){const{direction:r="right",style:i,unmountOnExit:o,in:a,className:s,transition:l,transitionEnd:d,delay:p,motionProps:g,...m}=t,y=C6({direction:r}),b=Object.assign({position:"fixed"},y.position,i),S=o?a&&o:!0,E=a||o?"enter":"exit",P={transitionEnd:d,transition:l,direction:r,delay:p};return w(bu,{custom:P,children:S&&ne.createElement(Wa.div,{...m,ref:n,initial:"exit",className:yv("chakra-slide",s),animate:E,exit:"exit",custom:P,variants:yue,style:b,...g})})});iD.displayName="Slide";var xue={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,x:e,y:t,transition:n?.exit??Cs.exit(Tf.exit,i),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Cs.enter(Tf.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:i,delay:o})=>{const a={x:t,y:e};return{opacity:0,transition:n?.exit??Cs.exit(Tf.exit,o),...i?{...a,transitionEnd:r?.exit}:{transitionEnd:{...a,...r?.exit}}}}},_6={initial:"initial",animate:"enter",exit:"exit",variants:xue},bue=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,className:a,offsetX:s=0,offsetY:l=8,transition:d,transitionEnd:p,delay:g,...m}=t,y=r?i&&r:!0,b=i||r?"enter":"exit",S={offsetX:s,offsetY:l,reverse:o,transition:d,transitionEnd:p,delay:g};return w(bu,{custom:S,children:y&&ne.createElement(Wa.div,{ref:n,className:yv("chakra-offset-slide",a),custom:S,..._6,animate:b,...m})})});bue.displayName="SlideFade";var xv=(...e)=>e.filter(Boolean).join(" ");function Sue(){return!1}var R4=e=>{const{condition:t,message:n}=e;t&&Sue()&&console.warn(n)};function Zb(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[wue,O4]=xn({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Cue,P8]=xn({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[_ue,D9e,kue,Eue]=kO(),xf=Ee(function(t,n){const{getButtonProps:r}=P8(),i=r(t,n),a={display:"flex",alignItems:"center",width:"100%",outline:0,...O4().button};return ne.createElement(be.button,{...i,className:xv("chakra-accordion__button",t.className),__css:a})});xf.displayName="AccordionButton";function Pue(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:i,allowToggle:o,...a}=e;Aue(e),Iue(e);const s=kue(),[l,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[p,g]=w4({value:r,defaultValue(){return i?n??[]:n??-1},onChange:t});return{index:p,setIndex:g,htmlProps:a,getAccordionItemProps:y=>{let b=!1;return y!==null&&(b=Array.isArray(p)?p.includes(y):p===y),{isOpen:b,onChange:E=>{if(y!==null)if(i&&Array.isArray(p)){const P=E?p.concat(y):p.filter(k=>k!==y);g(P)}else E?g(y):o&&g(-1)}}},focusedIndex:l,setFocusedIndex:d,descendants:s}}var[Tue,T8]=xn({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function Lue(e){const{isDisabled:t,isFocusable:n,id:r,...i}=e,{getAccordionItemProps:o,setFocusedIndex:a}=T8(),s=C.exports.useRef(null),l=C.exports.useId(),d=r??l,p=`accordion-button-${d}`,g=`accordion-panel-${d}`;Mue(e);const{register:m,index:y,descendants:b}=Eue({disabled:t&&!n}),{isOpen:S,onChange:E}=o(y===-1?null:y);Rue({isOpen:S,isDisabled:t});const P=()=>{E?.(!0)},k=()=>{E?.(!1)},L=C.exports.useCallback(()=>{E?.(!S),a(y)},[y,a,S,E]),I=C.exports.useCallback(F=>{const W={ArrowDown:()=>{const q=b.nextEnabled(y);q?.node.focus()},ArrowUp:()=>{const q=b.prevEnabled(y);q?.node.focus()},Home:()=>{const q=b.firstEnabled();q?.node.focus()},End:()=>{const q=b.lastEnabled();q?.node.focus()}}[F.key];W&&(F.preventDefault(),W(F))},[b,y]),O=C.exports.useCallback(()=>{a(y)},[a,y]),N=C.exports.useCallback(function(U={},W=null){return{...U,type:"button",ref:zn(m,s,W),id:p,disabled:!!t,"aria-expanded":!!S,"aria-controls":g,onClick:Zb(U.onClick,L),onFocus:Zb(U.onFocus,O),onKeyDown:Zb(U.onKeyDown,I)}},[p,t,S,L,O,I,g,m]),D=C.exports.useCallback(function(U={},W=null){return{...U,ref:W,role:"region",id:g,"aria-labelledby":p,hidden:!S}},[p,S,g]);return{isOpen:S,isDisabled:t,isFocusable:n,onOpen:P,onClose:k,getButtonProps:N,getPanelProps:D,htmlProps:i}}function Aue(e){const t=e.index||e.defaultIndex,n=t!=null&&!Array.isArray(t)&&e.allowMultiple;R4({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function Iue(e){R4({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function Mue(e){R4({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. + `})}function Rue(e){R4({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function bf(e){const{isOpen:t,isDisabled:n}=P8(),{reduceMotion:r}=T8(),i=xv("chakra-accordion__icon",e.className),o=O4(),a={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...o.icon};return w(ha,{viewBox:"0 0 24 24","aria-hidden":!0,className:i,__css:a,...e,children:w("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}bf.displayName="AccordionIcon";var Sf=Ee(function(t,n){const{children:r,className:i}=t,{htmlProps:o,...a}=Lue(t),l={...O4().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>a,[a]);return ne.createElement(Cue,{value:d},ne.createElement(be.div,{ref:n,...o,className:xv("chakra-accordion__item",i),__css:l},typeof r=="function"?r({isExpanded:!!a.isOpen,isDisabled:!!a.isDisabled}):r))});Sf.displayName="AccordionItem";var wf=Ee(function(t,n){const{className:r,motionProps:i,...o}=t,{reduceMotion:a}=T8(),{getPanelProps:s,isOpen:l}=P8(),d=s(o,n),p=xv("chakra-accordion__panel",r),g=O4();a||delete d.hidden;const m=ne.createElement(be.div,{...d,__css:g.panel,className:p});return a?m:w(tD,{in:l,...i,children:m})});wf.displayName="AccordionPanel";var N4=Ee(function({children:t,reduceMotion:n,...r},i){const o=Ai("Accordion",r),a=hn(r),{htmlProps:s,descendants:l,...d}=Pue(a),p=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return ne.createElement(_ue,{value:l},ne.createElement(Tue,{value:p},ne.createElement(wue,{value:o},ne.createElement(be.div,{ref:i,...s,className:xv("chakra-accordion",r.className),__css:o.root},t))))});N4.displayName="Accordion";var Oue=(...e)=>e.filter(Boolean).join(" "),Nue=cv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),A0=Ee((e,t)=>{const n=oo("Spinner",e),{label:r="Loading...",thickness:i="2px",speed:o="0.45s",emptyColor:a="transparent",className:s,...l}=hn(e),d=Oue("chakra-spinner",s),p={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:i,borderBottomColor:a,borderLeftColor:a,animation:`${Nue} ${o} linear infinite`,...n};return ne.createElement(be.div,{ref:t,__css:p,className:d,...l},r&&ne.createElement(be.span,{srOnly:!0},r))});A0.displayName="Spinner";var D4=(...e)=>e.filter(Boolean).join(" ");function Due(e){return w(ha,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function zue(e){return w(ha,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function wT(e){return w(ha,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[Fue,Bue]=xn({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[$ue,L8]=xn({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),oD={info:{icon:zue,colorScheme:"blue"},warning:{icon:wT,colorScheme:"orange"},success:{icon:Due,colorScheme:"green"},error:{icon:wT,colorScheme:"red"},loading:{icon:A0,colorScheme:"blue"}};function Hue(e){return oD[e].colorScheme}function Wue(e){return oD[e].icon}var aD=Ee(function(t,n){const{status:r="info",addRole:i=!0,...o}=hn(t),a=t.colorScheme??Hue(r),s=Ai("Alert",{...t,colorScheme:a}),l={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...s.container};return ne.createElement(Fue,{value:{status:r}},ne.createElement($ue,{value:s},ne.createElement(be.div,{role:i?"alert":void 0,ref:n,...o,className:D4("chakra-alert",t.className),__css:l})))});aD.displayName="Alert";var sD=Ee(function(t,n){const i={display:"inline",...L8().description};return ne.createElement(be.div,{ref:n,...t,className:D4("chakra-alert__desc",t.className),__css:i})});sD.displayName="AlertDescription";function lD(e){const{status:t}=Bue(),n=Wue(t),r=L8(),i=t==="loading"?r.spinner:r.icon;return ne.createElement(be.span,{display:"inherit",...e,className:D4("chakra-alert__icon",e.className),__css:i},e.children||w(n,{h:"100%",w:"100%"}))}lD.displayName="AlertIcon";var uD=Ee(function(t,n){const r=L8();return ne.createElement(be.div,{ref:n,...t,className:D4("chakra-alert__title",t.className),__css:r.title})});uD.displayName="AlertTitle";function Vue(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function Uue(e){const{loading:t,src:n,srcSet:r,onLoad:i,onError:o,crossOrigin:a,sizes:s,ignoreFallback:l}=e,[d,p]=C.exports.useState("pending");C.exports.useEffect(()=>{p(n?"loading":"pending")},[n]);const g=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;y();const b=new Image;b.src=n,a&&(b.crossOrigin=a),r&&(b.srcset=r),s&&(b.sizes=s),t&&(b.loading=t),b.onload=S=>{y(),p("loaded"),i?.(S)},b.onerror=S=>{y(),p("failed"),o?.(S)},g.current=b},[n,a,r,s,i,o,t]),y=()=>{g.current&&(g.current.onload=null,g.current.onerror=null,g.current=null)};return gl(()=>{if(!l)return d==="loading"&&m(),()=>{y()}},[d,m,l]),l?"loaded":d}var Gue=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",u5=Ee(function(t,n){const{htmlWidth:r,htmlHeight:i,alt:o,...a}=t;return w("img",{width:r,height:i,ref:n,alt:o,...a})});u5.displayName="NativeImage";var z4=Ee(function(t,n){const{fallbackSrc:r,fallback:i,src:o,srcSet:a,align:s,fit:l,loading:d,ignoreFallback:p,crossOrigin:g,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:y,...b}=t,S=r!==void 0||i!==void 0,E=d!=null||p||!S,P=Uue({...t,ignoreFallback:E}),k=Gue(P,m),L={ref:n,objectFit:l,objectPosition:s,...E?b:Vue(b,["onError","onLoad"])};return k?i||ne.createElement(be.img,{as:u5,className:"chakra-image__placeholder",src:r,...L}):ne.createElement(be.img,{as:u5,src:o,srcSet:a,crossOrigin:g,loading:d,referrerPolicy:y,className:"chakra-image",...L})});z4.displayName="Image";Ee((e,t)=>ne.createElement(be.img,{ref:t,as:u5,className:"chakra-image",...e}));function F4(e){return C.exports.Children.toArray(e).filter(t=>C.exports.isValidElement(t))}var B4=(...e)=>e.filter(Boolean).join(" "),CT=e=>e?"":void 0,[jue,que]=xn({strict:!1,name:"ButtonGroupContext"});function k6(e){const{children:t,className:n,...r}=e,i=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,o=B4("chakra-button__icon",n);return ne.createElement(be.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:o},i)}k6.displayName="ButtonIcon";function E6(e){const{label:t,placement:n,spacing:r="0.5rem",children:i=w(A0,{color:"currentColor",width:"1em",height:"1em"}),className:o,__css:a,...s}=e,l=B4("chakra-button__spinner",o),d=n==="start"?"marginEnd":"marginStart",p=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...a}),[a,t,d,r]);return ne.createElement(be.div,{className:l,...s,__css:p},i)}E6.displayName="ButtonSpinner";function Kue(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(o=>{!o||n(o.tagName==="BUTTON")},[]),type:t?"button":void 0}}var Na=Ee((e,t)=>{const n=que(),r=oo("Button",{...n,...e}),{isDisabled:i=n?.isDisabled,isLoading:o,isActive:a,children:s,leftIcon:l,rightIcon:d,loadingText:p,iconSpacing:g="0.5rem",type:m,spinner:y,spinnerPlacement:b="start",className:S,as:E,...P}=hn(e),k=C.exports.useMemo(()=>{const N={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:N}}},[r,n]),{ref:L,type:I}=Kue(E),O={rightIcon:d,leftIcon:l,iconSpacing:g,children:s};return ne.createElement(be.button,{disabled:i||o,ref:vie(t,L),as:E,type:m??I,"data-active":CT(a),"data-loading":CT(o),__css:k,className:B4("chakra-button",S),...P},o&&b==="start"&&w(E6,{className:"chakra-button__spinner--start",label:p,placement:"start",spacing:g,children:y}),o?p||ne.createElement(be.span,{opacity:0},w(_T,{...O})):w(_T,{...O}),o&&b==="end"&&w(E6,{className:"chakra-button__spinner--end",label:p,placement:"end",spacing:g,children:y}))});Na.displayName="Button";function _T(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:i}=e;return te(Fn,{children:[t&&w(k6,{marginEnd:i,children:t}),r,n&&w(k6,{marginStart:i,children:n})]})}var cD=Ee(function(t,n){const{size:r,colorScheme:i,variant:o,className:a,spacing:s="0.5rem",isAttached:l,isDisabled:d,...p}=t,g=B4("chakra-button__group",a),m=C.exports.useMemo(()=>({size:r,colorScheme:i,variant:o,isDisabled:d}),[r,i,o,d]);let y={display:"inline-flex"};return l?y={...y,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:y={...y,"& > *:not(style) ~ *:not(style)":{marginStart:s}},ne.createElement(jue,{value:m},ne.createElement(be.div,{ref:n,role:"group",__css:y,className:g,"data-attached":l?"":void 0,...p}))});cD.displayName="ButtonGroup";var Bi=Ee((e,t)=>{const{icon:n,children:r,isRound:i,"aria-label":o,...a}=e,s=n||r,l=C.exports.isValidElement(s)?C.exports.cloneElement(s,{"aria-hidden":!0,focusable:!1}):null;return w(Na,{padding:"0",borderRadius:i?"full":void 0,ref:t,"aria-label":o,...a,children:l})});Bi.displayName="IconButton";var I0=(...e)=>e.filter(Boolean).join(" "),X2=e=>e?"":void 0,Yb=e=>e?!0:void 0;function kT(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Zue,dD]=xn({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Yue,M0]=xn({strict:!1,name:"FormControlContext"});function Xue(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:i,isReadOnly:o,...a}=e,s=C.exports.useId(),l=t||`field-${s}`,d=`${l}-label`,p=`${l}-feedback`,g=`${l}-helptext`,[m,y]=C.exports.useState(!1),[b,S]=C.exports.useState(!1),[E,P]=C.exports.useState(!1),k=C.exports.useCallback((D={},F=null)=>({id:g,...D,ref:zn(F,U=>{!U||S(!0)})}),[g]),L=C.exports.useCallback((D={},F=null)=>({...D,ref:F,"data-focus":X2(E),"data-disabled":X2(i),"data-invalid":X2(r),"data-readonly":X2(o),id:D.id??d,htmlFor:D.htmlFor??l}),[l,i,E,r,o,d]),I=C.exports.useCallback((D={},F=null)=>({id:p,...D,ref:zn(F,U=>{!U||y(!0)}),"aria-live":"polite"}),[p]),O=C.exports.useCallback((D={},F=null)=>({...D,...a,ref:F,role:"group"}),[a]),N=C.exports.useCallback((D={},F=null)=>({...D,ref:F,role:"presentation","aria-hidden":!0,children:D.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!o,isDisabled:!!i,isFocused:!!E,onFocus:()=>P(!0),onBlur:()=>P(!1),hasFeedbackText:m,setHasFeedbackText:y,hasHelpText:b,setHasHelpText:S,id:l,labelId:d,feedbackId:p,helpTextId:g,htmlProps:a,getHelpTextProps:k,getErrorMessageProps:I,getRootProps:O,getLabelProps:L,getRequiredIndicatorProps:N}}var td=Ee(function(t,n){const r=Ai("Form",t),i=hn(t),{getRootProps:o,htmlProps:a,...s}=Xue(i),l=I0("chakra-form-control",t.className);return ne.createElement(Yue,{value:s},ne.createElement(Zue,{value:r},ne.createElement(be.div,{...o({},n),className:l,__css:r.container})))});td.displayName="FormControl";var Que=Ee(function(t,n){const r=M0(),i=dD(),o=I0("chakra-form__helper-text",t.className);return ne.createElement(be.div,{...r?.getHelpTextProps(t,n),__css:i.helperText,className:o})});Que.displayName="FormHelperText";function A8(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:i,...o}=I8(e);return{...o,disabled:t,readOnly:r,required:i,"aria-invalid":Yb(n),"aria-required":Yb(i),"aria-readonly":Yb(r)}}function I8(e){const t=M0(),{id:n,disabled:r,readOnly:i,required:o,isRequired:a,isInvalid:s,isReadOnly:l,isDisabled:d,onFocus:p,onBlur:g,...m}=e,y=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&y.push(t.feedbackId),t?.hasHelpText&&y.push(t.helpTextId),{...m,"aria-describedby":y.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:i??l??t?.isReadOnly,isRequired:o??a??t?.isRequired,isInvalid:s??t?.isInvalid,onFocus:kT(t?.onFocus,p),onBlur:kT(t?.onBlur,g)}}var[Jue,ece]=xn({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),tce=Ee((e,t)=>{const n=Ai("FormError",e),r=hn(e),i=M0();return i?.isInvalid?ne.createElement(Jue,{value:n},ne.createElement(be.div,{...i?.getErrorMessageProps(r,t),className:I0("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});tce.displayName="FormErrorMessage";var nce=Ee((e,t)=>{const n=ece(),r=M0();if(!r?.isInvalid)return null;const i=I0("chakra-form__error-icon",e.className);return w(ha,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:i,children:w("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});nce.displayName="FormErrorIcon";var Gf=Ee(function(t,n){const r=oo("FormLabel",t),i=hn(t),{className:o,children:a,requiredIndicator:s=w(fD,{}),optionalIndicator:l=null,...d}=i,p=M0(),g=p?.getLabelProps(d,n)??{ref:n,...d};return ne.createElement(be.label,{...g,className:I0("chakra-form__label",i.className),__css:{display:"block",textAlign:"start",...r}},a,p?.isRequired?s:l)});Gf.displayName="FormLabel";var fD=Ee(function(t,n){const r=M0(),i=dD();if(!r?.isRequired)return null;const o=I0("chakra-form__required-indicator",t.className);return ne.createElement(be.span,{...r?.getRequiredIndicatorProps(t,n),__css:i.requiredIndicator,className:o})});fD.displayName="RequiredIndicator";function Gc(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var M8={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},rce=be("span",{baseStyle:M8});rce.displayName="VisuallyHidden";var ice=be("input",{baseStyle:M8});ice.displayName="VisuallyHiddenInput";var ET=!1,$4=null,f0=!1,P6=new Set,oce=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function ace(e){return!(e.metaKey||!oce&&e.altKey||e.ctrlKey)}function R8(e,t){P6.forEach(n=>n(e,t))}function PT(e){f0=!0,ace(e)&&($4="keyboard",R8("keyboard",e))}function tp(e){$4="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(f0=!0,R8("pointer",e))}function sce(e){e.target===window||e.target===document||(f0||($4="keyboard",R8("keyboard",e)),f0=!1)}function lce(){f0=!1}function TT(){return $4!=="pointer"}function uce(){if(typeof window>"u"||ET)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){f0=!0,e.apply(this,n)},document.addEventListener("keydown",PT,!0),document.addEventListener("keyup",PT,!0),window.addEventListener("focus",sce,!0),window.addEventListener("blur",lce,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",tp,!0),document.addEventListener("pointermove",tp,!0),document.addEventListener("pointerup",tp,!0)):(document.addEventListener("mousedown",tp,!0),document.addEventListener("mousemove",tp,!0),document.addEventListener("mouseup",tp,!0)),ET=!0}function cce(e){uce(),e(TT());const t=()=>e(TT());return P6.add(t),()=>{P6.delete(t)}}var[z9e,dce]=xn({name:"CheckboxGroupContext",strict:!1}),fce=(...e)=>e.filter(Boolean).join(" "),Yi=e=>e?"":void 0;function _a(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function hce(...e){return function(n){e.forEach(r=>{r?.(n)})}}var hD=be(Wa.svg);function pce(e){return w(hD,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:w("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function gce(e){return w(hD,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:w("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function mce({open:e,children:t}){return w(bu,{initial:!1,children:e&&ne.createElement(Wa.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function vce(e){const{isIndeterminate:t,isChecked:n,...r}=e;return w(mce,{open:n||t,children:w(t?gce:pce,{...r})})}function yce(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function pD(e={}){const t=I8(e),{isDisabled:n,isReadOnly:r,isRequired:i,isInvalid:o,id:a,onBlur:s,onFocus:l,"aria-describedby":d}=t,{defaultChecked:p,isChecked:g,isFocusable:m,onChange:y,isIndeterminate:b,name:S,value:E,tabIndex:P=void 0,"aria-label":k,"aria-labelledby":L,"aria-invalid":I,...O}=e,N=yce(O,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),D=ur(y),F=ur(s),U=ur(l),[W,q]=C.exports.useState(!1),[pe,fe]=C.exports.useState(!1),[ye,Pe]=C.exports.useState(!1),[xe,Y]=C.exports.useState(!1);C.exports.useEffect(()=>cce(q),[]);const V=C.exports.useRef(null),[ae,oe]=C.exports.useState(!0),[X,me]=C.exports.useState(!!p),ve=g!==void 0,Se=ve?g:X,He=C.exports.useCallback(Le=>{if(r||n){Le.preventDefault();return}ve||me(Se?Le.target.checked:b?!0:Le.target.checked),D?.(Le)},[r,n,Se,ve,b,D]);gl(()=>{V.current&&(V.current.indeterminate=Boolean(b))},[b]),Gc(()=>{n&&fe(!1)},[n,fe]),gl(()=>{const Le=V.current;!Le?.form||(Le.form.onreset=()=>{me(!!p)})},[]);const je=n&&!m,ut=C.exports.useCallback(Le=>{Le.key===" "&&Y(!0)},[Y]),qe=C.exports.useCallback(Le=>{Le.key===" "&&Y(!1)},[Y]);gl(()=>{if(!V.current)return;V.current.checked!==Se&&me(V.current.checked)},[V.current]);const at=C.exports.useCallback((Le={},ot=null)=>{const Et=rt=>{pe&&rt.preventDefault(),Y(!0)};return{...Le,ref:ot,"data-active":Yi(xe),"data-hover":Yi(ye),"data-checked":Yi(Se),"data-focus":Yi(pe),"data-focus-visible":Yi(pe&&W),"data-indeterminate":Yi(b),"data-disabled":Yi(n),"data-invalid":Yi(o),"data-readonly":Yi(r),"aria-hidden":!0,onMouseDown:_a(Le.onMouseDown,Et),onMouseUp:_a(Le.onMouseUp,()=>Y(!1)),onMouseEnter:_a(Le.onMouseEnter,()=>Pe(!0)),onMouseLeave:_a(Le.onMouseLeave,()=>Pe(!1))}},[xe,Se,n,pe,W,ye,b,o,r]),et=C.exports.useCallback((Le={},ot=null)=>({...N,...Le,ref:zn(ot,Et=>{!Et||oe(Et.tagName==="LABEL")}),onClick:_a(Le.onClick,()=>{var Et;ae||((Et=V.current)==null||Et.click(),requestAnimationFrame(()=>{var rt;(rt=V.current)==null||rt.focus()}))}),"data-disabled":Yi(n),"data-checked":Yi(Se),"data-invalid":Yi(o)}),[N,n,Se,o,ae]),it=C.exports.useCallback((Le={},ot=null)=>({...Le,ref:zn(V,ot),type:"checkbox",name:S,value:E,id:a,tabIndex:P,onChange:_a(Le.onChange,He),onBlur:_a(Le.onBlur,F,()=>fe(!1)),onFocus:_a(Le.onFocus,U,()=>fe(!0)),onKeyDown:_a(Le.onKeyDown,ut),onKeyUp:_a(Le.onKeyUp,qe),required:i,checked:Se,disabled:je,readOnly:r,"aria-label":k,"aria-labelledby":L,"aria-invalid":I?Boolean(I):o,"aria-describedby":d,"aria-disabled":n,style:M8}),[S,E,a,He,F,U,ut,qe,i,Se,je,r,k,L,I,o,d,n,P]),At=C.exports.useCallback((Le={},ot=null)=>({...Le,ref:ot,onMouseDown:_a(Le.onMouseDown,LT),onTouchStart:_a(Le.onTouchStart,LT),"data-disabled":Yi(n),"data-checked":Yi(Se),"data-invalid":Yi(o)}),[Se,n,o]);return{state:{isInvalid:o,isFocused:pe,isChecked:Se,isActive:xe,isHovered:ye,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:i},getRootProps:et,getCheckboxProps:at,getInputProps:it,getLabelProps:At,htmlProps:N}}function LT(e){e.preventDefault(),e.stopPropagation()}var xce={display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0},bce={cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"},gD=Ee(function(t,n){const r=dce(),i={...r,...t},o=Ai("Checkbox",i),a=hn(t),{spacing:s="0.5rem",className:l,children:d,iconColor:p,iconSize:g,icon:m=w(vce,{}),isChecked:y,isDisabled:b=r?.isDisabled,onChange:S,inputProps:E,...P}=a;let k=y;r?.value&&a.value&&(k=r.value.includes(a.value));let L=S;r?.onChange&&a.value&&(L=hce(r.onChange,S));const{state:I,getInputProps:O,getCheckboxProps:N,getLabelProps:D,getRootProps:F}=pD({...P,isDisabled:b,isChecked:k,onChange:L}),U=C.exports.useMemo(()=>({opacity:I.isChecked||I.isIndeterminate?1:0,transform:I.isChecked||I.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:g,color:p,...o.icon}),[p,g,I.isChecked,I.isIndeterminate,o.icon]),W=C.exports.cloneElement(m,{__css:U,isIndeterminate:I.isIndeterminate,isChecked:I.isChecked});return ne.createElement(be.label,{__css:{...bce,...o.container},className:fce("chakra-checkbox",l),...F()},w("input",{className:"chakra-checkbox__input",...O(E,n)}),ne.createElement(be.span,{__css:{...xce,...o.control},className:"chakra-checkbox__control",...N()},W),d&&ne.createElement(be.span,{className:"chakra-checkbox__label",...D(),__css:{marginStart:s,...o.label}},d))});gD.displayName="Checkbox";function Sce(e){return w(ha,{focusable:"false","aria-hidden":!0,...e,children:w("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var H4=Ee(function(t,n){const r=oo("CloseButton",t),{children:i,isDisabled:o,__css:a,...s}=hn(t),l={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return ne.createElement(be.button,{type:"button","aria-label":"Close",ref:n,disabled:o,__css:{...l,...r,...a},...s},i||w(Sce,{width:"1em",height:"1em"}))});H4.displayName="CloseButton";function wce(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function O8(e,t){let n=wce(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function T6(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function c5(e,t,n){return(e-t)*100/(n-t)}function mD(e,t,n){return(n-t)*e+t}function L6(e,t,n){const r=Math.round((e-t)/n)*n+t,i=T6(n);return O8(r,i)}function Gp(e,t,n){return e==null?e:(nr==null?"":Xb(r,o,n)??""),m=typeof i<"u",y=m?i:p,b=vD(yc(y),o),S=n??b,E=C.exports.useCallback(W=>{W!==y&&(m||g(W.toString()),d?.(W.toString(),yc(W)))},[d,m,y]),P=C.exports.useCallback(W=>{let q=W;return l&&(q=Gp(q,a,s)),O8(q,S)},[S,l,s,a]),k=C.exports.useCallback((W=o)=>{let q;y===""?q=yc(W):q=yc(y)+W,q=P(q),E(q)},[P,o,E,y]),L=C.exports.useCallback((W=o)=>{let q;y===""?q=yc(-W):q=yc(y)-W,q=P(q),E(q)},[P,o,E,y]),I=C.exports.useCallback(()=>{let W;r==null?W="":W=Xb(r,o,n)??a,E(W)},[r,n,o,E,a]),O=C.exports.useCallback(W=>{const q=Xb(W,o,S)??a;E(q)},[S,o,E,a]),N=yc(y);return{isOutOfRange:N>s||Nw(y4,{styles:yD}),kce=()=>w(y4,{styles:` + html { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + font-family: system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; + touch-action: manipulation; + } + + body { + position: relative; + min-height: 100%; + font-feature-settings: 'kern'; + } + + *, + *::before, + *::after { + border-width: 0; + border-style: solid; + box-sizing: border-box; + } + + main { + display: block; + } + + hr { + border-top-width: 1px; + box-sizing: content-box; + height: 0; + overflow: visible; + } + + pre, + code, + kbd, + samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; + font-size: 1em; + } + + a { + background-color: transparent; + color: inherit; + text-decoration: inherit; + } + + abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + + b, + strong { + font-weight: bold; + } + + small { + font-size: 80%; + } + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + img { + border-style: none; + } + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; + font-size: 100%; + line-height: 1.15; + margin: 0; + } + + button, + input { + overflow: visible; + } + + button, + select { + text-transform: none; + } + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; + } + + progress { + vertical-align: baseline; + } + + textarea { + overflow: auto; + } + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; + padding: 0; + } + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none !important; + } + + input[type="number"] { + -moz-appearance: textfield; + } + + [type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; + } + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none !important; + } + + ::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; + } + + details { + display: block; + } + + summary { + display: list-item; + } + + template { + display: none; + } + + [hidden] { + display: none !important; + } + + body, + blockquote, + dl, + dd, + h1, + h2, + h3, + h4, + h5, + h6, + hr, + figure, + p, + pre { + margin: 0; + } + + button { + background: transparent; + padding: 0; + } + + fieldset { + margin: 0; + padding: 0; + } + + ol, + ul { + margin: 0; + padding: 0; + } + + textarea { + resize: vertical; + } + + button, + [role="button"] { + cursor: pointer; + } + + button::-moz-focus-inner { + border: 0 !important; + } + + table { + border-collapse: collapse; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-size: inherit; + font-weight: inherit; + } + + button, + input, + optgroup, + select, + textarea { + padding: 0; + line-height: inherit; + color: inherit; + } + + img, + svg, + video, + canvas, + audio, + iframe, + embed, + object { + display: block; + } + + img, + video { + max-width: 100%; + height: auto; + } + + [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { + outline: none; + box-shadow: none; + } + + select::-ms-expand { + display: none; + } + + ${yD} + `});function Lf(e,t,n,r){const i=ur(n);return C.exports.useEffect(()=>{const o=typeof e=="function"?e():e??document;if(!(!n||!o))return o.addEventListener(t,i,r),()=>{o.removeEventListener(t,i,r)}},[t,e,r,i,n]),()=>{const o=typeof e=="function"?e():e??document;o?.removeEventListener(t,i,r)}}function Ece(e){return"current"in e}var xD=()=>typeof window<"u";function Pce(){const e=navigator.userAgentData;return e?.platform??navigator.platform}var Tce=e=>xD()&&e.test(navigator.vendor),Lce=e=>xD()&&e.test(Pce()),Ace=()=>Lce(/mac|iphone|ipad|ipod/i),Ice=()=>Ace()&&Tce(/apple/i);function Mce(e){const{ref:t,elements:n,enabled:r}=e,i=()=>{var o;return((o=t.current)==null?void 0:o.ownerDocument)??document};Lf(i,"pointerdown",o=>{if(!Ice()||!r)return;const a=o.target,l=(n??[t]).some(d=>{const p=Ece(d)?d.current:d;return p?.contains(a)||p===a});i().activeElement!==a&&l&&(o.preventDefault(),a.focus())})}var Rce=wX?C.exports.useLayoutEffect:C.exports.useEffect;function AT(e,t=[]){const n=C.exports.useRef(e);return Rce(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function Oce(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function Nce(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function d5(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=AT(n),a=AT(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),[d,p]=Oce(r,s),g=Nce(i,"disclosure"),m=C.exports.useCallback(()=>{d||l(!1),a?.()},[d,a]),y=C.exports.useCallback(()=>{d||l(!0),o?.()},[d,o]),b=C.exports.useCallback(()=>{(p?m:y)()},[p,y,m]);return{isOpen:!!p,onOpen:y,onClose:m,onToggle:b,isControlled:d,getButtonProps:(S={})=>({...S,"aria-expanded":p,"aria-controls":g,onClick:CX(S.onClick,b)}),getDisclosureProps:(S={})=>({...S,hidden:!p,id:g})}}function N8(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var D8=Ee(function(t,n){const{htmlSize:r,...i}=t,o=Ai("Input",i),a=hn(i),s=A8(a),l=Rr("chakra-input",t.className);return ne.createElement(be.input,{size:r,...s,__css:o.field,ref:n,className:l})});D8.displayName="Input";D8.id="Input";var[Dce,bD]=xn({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),zce=Ee(function(t,n){const r=Ai("Input",t),{children:i,className:o,...a}=hn(t),s=Rr("chakra-input__group",o),l={},d=F4(i),p=r.field;d.forEach(m=>{!r||(p&&m.type.id==="InputLeftElement"&&(l.paddingStart=p.height??p.h),p&&m.type.id==="InputRightElement"&&(l.paddingEnd=p.height??p.h),m.type.id==="InputRightAddon"&&(l.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(l.borderStartRadius=0))});const g=d.map(m=>{var y,b;const S=N8({size:((y=m.props)==null?void 0:y.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,S):C.exports.cloneElement(m,Object.assign(S,l,m.props))});return ne.createElement(be.div,{className:s,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...a},w(Dce,{value:r,children:g}))});zce.displayName="InputGroup";var Fce={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},Bce=be("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),z8=Ee(function(t,n){const{placement:r="left",...i}=t,o=Fce[r]??{},a=bD();return w(Bce,{ref:n,...i,__css:{...a.addon,...o}})});z8.displayName="InputAddon";var SD=Ee(function(t,n){return w(z8,{ref:n,placement:"left",...t,className:Rr("chakra-input__left-addon",t.className)})});SD.displayName="InputLeftAddon";SD.id="InputLeftAddon";var wD=Ee(function(t,n){return w(z8,{ref:n,placement:"right",...t,className:Rr("chakra-input__right-addon",t.className)})});wD.displayName="InputRightAddon";wD.id="InputRightAddon";var $ce=be("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),W4=Ee(function(t,n){const{placement:r="left",...i}=t,o=bD(),a=o.field,l={[r==="left"?"insetStart":"insetEnd"]:"0",width:a?.height??a?.h,height:a?.height??a?.h,fontSize:a?.fontSize,...o.element};return w($ce,{ref:n,__css:l,...i})});W4.id="InputElement";W4.displayName="InputElement";var CD=Ee(function(t,n){const{className:r,...i}=t,o=Rr("chakra-input__left-element",r);return w(W4,{ref:n,placement:"left",className:o,...i})});CD.id="InputLeftElement";CD.displayName="InputLeftElement";var _D=Ee(function(t,n){const{className:r,...i}=t,o=Rr("chakra-input__right-element",r);return w(W4,{ref:n,placement:"right",className:o,...i})});_D.id="InputRightElement";_D.displayName="InputRightElement";function Hce(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function jc(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):Hce(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var Wce=Ee(function(e,t){const{ratio:n=4/3,children:r,className:i,...o}=e,a=C.exports.Children.only(r),s=Rr("chakra-aspect-ratio",i);return ne.createElement(be.div,{ref:t,position:"relative",className:s,_before:{height:0,content:'""',display:"block",paddingBottom:jc(n,l=>`${1/l*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...o},a)});Wce.displayName="AspectRatio";var Vce=Ee(function(t,n){const r=oo("Badge",t),{className:i,...o}=hn(t);return ne.createElement(be.span,{ref:n,className:Rr("chakra-badge",t.className),...o,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});Vce.displayName="Badge";var Pl=be("div");Pl.displayName="Box";var kD=Ee(function(t,n){const{size:r,centerContent:i=!0,...o}=t;return w(Pl,{ref:n,boxSize:r,__css:{...i?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...o})});kD.displayName="Square";var Uce=Ee(function(t,n){const{size:r,...i}=t;return w(kD,{size:r,ref:n,borderRadius:"9999px",...i})});Uce.displayName="Circle";var ED=be("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});ED.displayName="Center";var Gce={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};Ee(function(t,n){const{axis:r="both",...i}=t;return ne.createElement(be.div,{ref:n,__css:Gce[r],...i,position:"absolute"})});var jce=Ee(function(t,n){const r=oo("Code",t),{className:i,...o}=hn(t);return ne.createElement(be.code,{ref:n,className:Rr("chakra-code",t.className),...o,__css:{display:"inline-block",...r}})});jce.displayName="Code";var qce=Ee(function(t,n){const{className:r,centerContent:i,...o}=hn(t),a=oo("Container",t);return ne.createElement(be.div,{ref:n,className:Rr("chakra-container",r),...o,__css:{...a,...i&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});qce.displayName="Container";var Kce=Ee(function(t,n){const{borderLeftWidth:r,borderBottomWidth:i,borderTopWidth:o,borderRightWidth:a,borderWidth:s,borderStyle:l,borderColor:d,...p}=oo("Divider",t),{className:g,orientation:m="horizontal",__css:y,...b}=hn(t),S={vertical:{borderLeftWidth:r||a||s||"1px",height:"100%"},horizontal:{borderBottomWidth:i||o||s||"1px",width:"100%"}};return ne.createElement(be.hr,{ref:n,"aria-orientation":m,...b,__css:{...p,border:"0",borderColor:d,borderStyle:l,...S[m],...y},className:Rr("chakra-divider",g)})});Kce.displayName="Divider";var Dn=Ee(function(t,n){const{direction:r,align:i,justify:o,wrap:a,basis:s,grow:l,shrink:d,...p}=t,g={display:"flex",flexDirection:r,alignItems:i,justifyContent:o,flexWrap:a,flexBasis:s,flexGrow:l,flexShrink:d};return ne.createElement(be.div,{ref:n,__css:g,...p})});Dn.displayName="Flex";var PD=Ee(function(t,n){const{templateAreas:r,gap:i,rowGap:o,columnGap:a,column:s,row:l,autoFlow:d,autoRows:p,templateRows:g,autoColumns:m,templateColumns:y,...b}=t,S={display:"grid",gridTemplateAreas:r,gridGap:i,gridRowGap:o,gridColumnGap:a,gridAutoColumns:m,gridColumn:s,gridRow:l,gridAutoFlow:d,gridAutoRows:p,gridTemplateRows:g,gridTemplateColumns:y};return ne.createElement(be.div,{ref:n,__css:S,...b})});PD.displayName="Grid";function IT(e){return jc(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var Zce=Ee(function(t,n){const{area:r,colSpan:i,colStart:o,colEnd:a,rowEnd:s,rowSpan:l,rowStart:d,...p}=t,g=N8({gridArea:r,gridColumn:IT(i),gridRow:IT(l),gridColumnStart:o,gridColumnEnd:a,gridRowStart:d,gridRowEnd:s});return ne.createElement(be.div,{ref:n,__css:g,...p})});Zce.displayName="GridItem";var Af=Ee(function(t,n){const r=oo("Heading",t),{className:i,...o}=hn(t);return ne.createElement(be.h2,{ref:n,className:Rr("chakra-heading",t.className),...o,__css:r})});Af.displayName="Heading";Ee(function(t,n){const r=oo("Mark",t),i=hn(t);return w(Pl,{ref:n,...i,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var Yce=Ee(function(t,n){const r=oo("Kbd",t),{className:i,...o}=hn(t);return ne.createElement(be.kbd,{ref:n,className:Rr("chakra-kbd",i),...o,__css:{fontFamily:"mono",...r}})});Yce.displayName="Kbd";var jp=Ee(function(t,n){const r=oo("Link",t),{className:i,isExternal:o,...a}=hn(t);return ne.createElement(be.a,{target:o?"_blank":void 0,rel:o?"noopener":void 0,ref:n,className:Rr("chakra-link",i),...a,__css:r})});jp.displayName="Link";Ee(function(t,n){const{isExternal:r,target:i,rel:o,className:a,...s}=t;return ne.createElement(be.a,{...s,ref:n,className:Rr("chakra-linkbox__overlay",a),rel:r?"noopener noreferrer":o,target:r?"_blank":i,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});Ee(function(t,n){const{className:r,...i}=t;return ne.createElement(be.div,{ref:n,position:"relative",...i,className:Rr("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[Xce,TD]=xn({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),F8=Ee(function(t,n){const r=Ai("List",t),{children:i,styleType:o="none",stylePosition:a,spacing:s,...l}=hn(t),d=F4(i),g=s?{["& > *:not(style) ~ *:not(style)"]:{mt:s}}:{};return ne.createElement(Xce,{value:r},ne.createElement(be.ul,{ref:n,listStyleType:o,listStylePosition:a,role:"list",__css:{...r.container,...g},...l},d))});F8.displayName="List";var Qce=Ee((e,t)=>{const{as:n,...r}=e;return w(F8,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});Qce.displayName="OrderedList";var Jce=Ee(function(t,n){const{as:r,...i}=t;return w(F8,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...i})});Jce.displayName="UnorderedList";var ede=Ee(function(t,n){const r=TD();return ne.createElement(be.li,{ref:n,...t,__css:r.item})});ede.displayName="ListItem";var tde=Ee(function(t,n){const r=TD();return w(ha,{ref:n,role:"presentation",...t,__css:r.icon})});tde.displayName="ListIcon";var nde=Ee(function(t,n){const{columns:r,spacingX:i,spacingY:o,spacing:a,minChildWidth:s,...l}=t,d=E0(),p=s?ide(s,d):ode(r);return w(PD,{ref:n,gap:a,columnGap:i,rowGap:o,templateColumns:p,...l})});nde.displayName="SimpleGrid";function rde(e){return typeof e=="number"?`${e}px`:e}function ide(e,t){return jc(e,n=>{const r=aie("sizes",n,rde(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function ode(e){return jc(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var LD=be("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});LD.displayName="Spacer";var A6="& > *:not(style) ~ *:not(style)";function ade(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[A6]:jc(n,i=>r[i])}}function sde(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":jc(n,i=>r[i])}}var AD=e=>ne.createElement(be.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});AD.displayName="StackItem";var B8=Ee((e,t)=>{const{isInline:n,direction:r,align:i,justify:o,spacing:a="0.5rem",wrap:s,children:l,divider:d,className:p,shouldWrapChildren:g,...m}=e,y=n?"row":r??"column",b=C.exports.useMemo(()=>ade({direction:y,spacing:a}),[y,a]),S=C.exports.useMemo(()=>sde({spacing:a,direction:y}),[a,y]),E=!!d,P=!g&&!E,k=C.exports.useMemo(()=>{const I=F4(l);return P?I:I.map((O,N)=>{const D=typeof O.key<"u"?O.key:N,F=N+1===I.length,W=g?w(AD,{children:O},D):O;if(!E)return W;const q=C.exports.cloneElement(d,{__css:S}),pe=F?null:q;return te(C.exports.Fragment,{children:[W,pe]},D)})},[d,S,E,P,g,l]),L=Rr("chakra-stack",p);return ne.createElement(be.div,{ref:t,display:"flex",alignItems:i,justifyContent:o,flexDirection:b.flexDirection,flexWrap:s,className:L,__css:E?{}:{[A6]:b[A6]},...m},k)});B8.displayName="Stack";var lde=Ee((e,t)=>w(B8,{align:"center",...e,direction:"row",ref:t}));lde.displayName="HStack";var ude=Ee((e,t)=>w(B8,{align:"center",...e,direction:"column",ref:t}));ude.displayName="VStack";var wo=Ee(function(t,n){const r=oo("Text",t),{className:i,align:o,decoration:a,casing:s,...l}=hn(t),d=N8({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return ne.createElement(be.p,{ref:n,className:Rr("chakra-text",t.className),...d,...l,__css:r})});wo.displayName="Text";function MT(e){return typeof e=="number"?`${e}px`:e}var cde=Ee(function(t,n){const{spacing:r="0.5rem",spacingX:i,spacingY:o,children:a,justify:s,direction:l,align:d,className:p,shouldWrapChildren:g,...m}=t,y=C.exports.useMemo(()=>{const{spacingX:S=r,spacingY:E=r}={spacingX:i,spacingY:o};return{"--chakra-wrap-x-spacing":P=>jc(S,k=>MT(Bw("space",k)(P))),"--chakra-wrap-y-spacing":P=>jc(E,k=>MT(Bw("space",k)(P))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:s,alignItems:d,flexDirection:l,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,i,o,s,d,l]),b=C.exports.useMemo(()=>g?C.exports.Children.map(a,(S,E)=>w(ID,{children:S},E)):a,[a,g]);return ne.createElement(be.div,{ref:n,className:Rr("chakra-wrap",p),overflow:"hidden",...m},ne.createElement(be.ul,{className:"chakra-wrap__list",__css:y},b))});cde.displayName="Wrap";var ID=Ee(function(t,n){const{className:r,...i}=t;return ne.createElement(be.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:Rr("chakra-wrap__listitem",r),...i})});ID.displayName="WrapItem";var dde={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},MD=dde,np=()=>{},fde={document:MD,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:np,removeEventListener:np,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:np,removeListener:np}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:np,setInterval:()=>0,clearInterval:np},hde=fde,pde={window:hde,document:MD},RD=typeof window<"u"?{window,document}:pde,OD=C.exports.createContext(RD);OD.displayName="EnvironmentContext";function ND(e){const{children:t,environment:n}=e,[r,i]=C.exports.useState(null),[o,a]=C.exports.useState(!1);C.exports.useEffect(()=>a(!0),[]);const s=C.exports.useMemo(()=>{if(n)return n;const l=r?.ownerDocument,d=r?.ownerDocument.defaultView;return l?{document:l,window:d}:RD},[r,n]);return te(OD.Provider,{value:s,children:[t,!n&&o&&w("span",{id:"__chakra_env",hidden:!0,ref:l=>{C.exports.startTransition(()=>{l&&i(l)})}})]})}ND.displayName="EnvironmentProvider";var gde=e=>e?"":void 0;function mde(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((i,o,a,s)=>{e.current.set(a,{type:o,el:i,options:s}),i.addEventListener(o,a,s)},[]),r=C.exports.useCallback((i,o,a,s)=>{i.removeEventListener(o,a,s),e.current.delete(a)},[]);return C.exports.useEffect(()=>()=>{t.forEach((i,o)=>{r(i.el,i.type,o,i.options)})},[r,t]),{add:n,remove:r}}function Qb(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function vde(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:i=!0,clickOnSpace:o=!0,onMouseDown:a,onMouseUp:s,onClick:l,onKeyDown:d,onKeyUp:p,tabIndex:g,onMouseOver:m,onMouseLeave:y,...b}=e,[S,E]=C.exports.useState(!0),[P,k]=C.exports.useState(!1),L=mde(),I=Y=>{!Y||Y.tagName!=="BUTTON"&&E(!1)},O=S?g:g||0,N=n&&!r,D=C.exports.useCallback(Y=>{if(n){Y.stopPropagation(),Y.preventDefault();return}Y.currentTarget.focus(),l?.(Y)},[n,l]),F=C.exports.useCallback(Y=>{P&&Qb(Y)&&(Y.preventDefault(),Y.stopPropagation(),k(!1),L.remove(document,"keyup",F,!1))},[P,L]),U=C.exports.useCallback(Y=>{if(d?.(Y),n||Y.defaultPrevented||Y.metaKey||!Qb(Y.nativeEvent)||S)return;const V=i&&Y.key==="Enter";o&&Y.key===" "&&(Y.preventDefault(),k(!0)),V&&(Y.preventDefault(),Y.currentTarget.click()),L.add(document,"keyup",F,!1)},[n,S,d,i,o,L,F]),W=C.exports.useCallback(Y=>{if(p?.(Y),n||Y.defaultPrevented||Y.metaKey||!Qb(Y.nativeEvent)||S)return;o&&Y.key===" "&&(Y.preventDefault(),k(!1),Y.currentTarget.click())},[o,S,n,p]),q=C.exports.useCallback(Y=>{Y.button===0&&(k(!1),L.remove(document,"mouseup",q,!1))},[L]),pe=C.exports.useCallback(Y=>{if(Y.button!==0)return;if(n){Y.stopPropagation(),Y.preventDefault();return}S||k(!0),Y.currentTarget.focus({preventScroll:!0}),L.add(document,"mouseup",q,!1),a?.(Y)},[n,S,a,L,q]),fe=C.exports.useCallback(Y=>{Y.button===0&&(S||k(!1),s?.(Y))},[s,S]),ye=C.exports.useCallback(Y=>{if(n){Y.preventDefault();return}m?.(Y)},[n,m]),Pe=C.exports.useCallback(Y=>{P&&(Y.preventDefault(),k(!1)),y?.(Y)},[P,y]),xe=zn(t,I);return S?{...b,ref:xe,type:"button","aria-disabled":N?void 0:n,disabled:N,onClick:D,onMouseDown:a,onMouseUp:s,onKeyUp:p,onKeyDown:d,onMouseOver:m,onMouseLeave:y}:{...b,ref:xe,role:"button","data-active":gde(P),"aria-disabled":n?"true":void 0,tabIndex:N?void 0:O,onClick:D,onMouseDown:pe,onMouseUp:fe,onKeyUp:W,onKeyDown:U,onMouseOver:ye,onMouseLeave:Pe}}function DD(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function zD(e){if(!DD(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function yde(e){var t;return((t=FD(e))==null?void 0:t.defaultView)??window}function FD(e){return DD(e)?e.ownerDocument:document}function xde(e){return FD(e).activeElement}var BD=e=>e.hasAttribute("tabindex"),bde=e=>BD(e)&&e.tabIndex===-1;function Sde(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function $D(e){return e.parentElement&&$D(e.parentElement)?!0:e.hidden}function wde(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function HD(e){if(!zD(e)||$D(e)||Sde(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():wde(e)?!0:BD(e)}function Cde(e){return e?zD(e)&&HD(e)&&!bde(e):!1}var _de=["input:not(:disabled):not([disabled])","select:not(:disabled):not([disabled])","textarea:not(:disabled):not([disabled])","embed","iframe","object","a[href]","area[href]","button:not(:disabled):not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],kde=_de.join(),Ede=e=>e.offsetWidth>0&&e.offsetHeight>0;function WD(e){const t=Array.from(e.querySelectorAll(kde));return t.unshift(e),t.filter(n=>HD(n)&&Ede(n))}function Pde(e){const t=e.current;if(!t)return!1;const n=xde(t);return!n||t.contains(n)?!1:!!Cde(n)}function Tde(e,t){const{shouldFocus:n,visible:r,focusRef:i}=t,o=n&&!r;Gc(()=>{if(!o||Pde(e))return;const a=i?.current||e.current;a&&requestAnimationFrame(()=>{a.focus()})},[o,e,i])}var Lde={preventScroll:!0,shouldFocus:!1};function Ade(e,t=Lde){const{focusRef:n,preventScroll:r,shouldFocus:i,visible:o}=t,a=Ide(e)?e.current:e,s=i&&o,l=C.exports.useCallback(()=>{if(!(!a||!s)&&!a.contains(document.activeElement))if(n?.current)requestAnimationFrame(()=>{var d;(d=n.current)==null||d.focus({preventScroll:r})});else{const d=WD(a);d.length>0&&requestAnimationFrame(()=>{d[0].focus({preventScroll:r})})}},[s,r,a,n]);Gc(()=>{l()},[l]),Lf(a,"transitionend",l)}function Ide(e){return"current"in e}var Po="top",Ba="bottom",$a="right",To="left",$8="auto",bv=[Po,Ba,$a,To],h0="start",Vm="end",Mde="clippingParents",VD="viewport",sg="popper",Rde="reference",RT=bv.reduce(function(e,t){return e.concat([t+"-"+h0,t+"-"+Vm])},[]),UD=[].concat(bv,[$8]).reduce(function(e,t){return e.concat([t,t+"-"+h0,t+"-"+Vm])},[]),Ode="beforeRead",Nde="read",Dde="afterRead",zde="beforeMain",Fde="main",Bde="afterMain",$de="beforeWrite",Hde="write",Wde="afterWrite",Vde=[Ode,Nde,Dde,zde,Fde,Bde,$de,Hde,Wde];function wl(e){return e?(e.nodeName||"").toLowerCase():null}function Va(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function Ff(e){var t=Va(e).Element;return e instanceof t||e instanceof Element}function Da(e){var t=Va(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function H8(e){if(typeof ShadowRoot>"u")return!1;var t=Va(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Ude(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},i=t.attributes[n]||{},o=t.elements[n];!Da(o)||!wl(o)||(Object.assign(o.style,r),Object.keys(i).forEach(function(a){var s=i[a];s===!1?o.removeAttribute(a):o.setAttribute(a,s===!0?"":s)}))})}function Gde(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var i=t.elements[r],o=t.attributes[r]||{},a=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),s=a.reduce(function(l,d){return l[d]="",l},{});!Da(i)||!wl(i)||(Object.assign(i.style,s),Object.keys(o).forEach(function(l){i.removeAttribute(l)}))})}}const jde={name:"applyStyles",enabled:!0,phase:"write",fn:Ude,effect:Gde,requires:["computeStyles"]};function xl(e){return e.split("-")[0]}var If=Math.max,f5=Math.min,p0=Math.round;function I6(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function GD(){return!/^((?!chrome|android).)*safari/i.test(I6())}function g0(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),i=1,o=1;t&&Da(e)&&(i=e.offsetWidth>0&&p0(r.width)/e.offsetWidth||1,o=e.offsetHeight>0&&p0(r.height)/e.offsetHeight||1);var a=Ff(e)?Va(e):window,s=a.visualViewport,l=!GD()&&n,d=(r.left+(l&&s?s.offsetLeft:0))/i,p=(r.top+(l&&s?s.offsetTop:0))/o,g=r.width/i,m=r.height/o;return{width:g,height:m,top:p,right:d+g,bottom:p+m,left:d,x:d,y:p}}function W8(e){var t=g0(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function jD(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&H8(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function pu(e){return Va(e).getComputedStyle(e)}function qde(e){return["table","td","th"].indexOf(wl(e))>=0}function nd(e){return((Ff(e)?e.ownerDocument:e.document)||window.document).documentElement}function V4(e){return wl(e)==="html"?e:e.assignedSlot||e.parentNode||(H8(e)?e.host:null)||nd(e)}function OT(e){return!Da(e)||pu(e).position==="fixed"?null:e.offsetParent}function Kde(e){var t=/firefox/i.test(I6()),n=/Trident/i.test(I6());if(n&&Da(e)){var r=pu(e);if(r.position==="fixed")return null}var i=V4(e);for(H8(i)&&(i=i.host);Da(i)&&["html","body"].indexOf(wl(i))<0;){var o=pu(i);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return i;i=i.parentNode}return null}function Sv(e){for(var t=Va(e),n=OT(e);n&&qde(n)&&pu(n).position==="static";)n=OT(n);return n&&(wl(n)==="html"||wl(n)==="body"&&pu(n).position==="static")?t:n||Kde(e)||t}function V8(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function im(e,t,n){return If(e,f5(t,n))}function Zde(e,t,n){var r=im(e,t,n);return r>n?n:r}function qD(){return{top:0,right:0,bottom:0,left:0}}function KD(e){return Object.assign({},qD(),e)}function ZD(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var Yde=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,KD(typeof t!="number"?t:ZD(t,bv))};function Xde(e){var t,n=e.state,r=e.name,i=e.options,o=n.elements.arrow,a=n.modifiersData.popperOffsets,s=xl(n.placement),l=V8(s),d=[To,$a].indexOf(s)>=0,p=d?"height":"width";if(!(!o||!a)){var g=Yde(i.padding,n),m=W8(o),y=l==="y"?Po:To,b=l==="y"?Ba:$a,S=n.rects.reference[p]+n.rects.reference[l]-a[l]-n.rects.popper[p],E=a[l]-n.rects.reference[l],P=Sv(o),k=P?l==="y"?P.clientHeight||0:P.clientWidth||0:0,L=S/2-E/2,I=g[y],O=k-m[p]-g[b],N=k/2-m[p]/2+L,D=im(I,N,O),F=l;n.modifiersData[r]=(t={},t[F]=D,t.centerOffset=D-N,t)}}function Qde(e){var t=e.state,n=e.options,r=n.element,i=r===void 0?"[data-popper-arrow]":r;i!=null&&(typeof i=="string"&&(i=t.elements.popper.querySelector(i),!i)||!jD(t.elements.popper,i)||(t.elements.arrow=i))}const Jde={name:"arrow",enabled:!0,phase:"main",fn:Xde,effect:Qde,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function m0(e){return e.split("-")[1]}var efe={top:"auto",right:"auto",bottom:"auto",left:"auto"};function tfe(e){var t=e.x,n=e.y,r=window,i=r.devicePixelRatio||1;return{x:p0(t*i)/i||0,y:p0(n*i)/i||0}}function NT(e){var t,n=e.popper,r=e.popperRect,i=e.placement,o=e.variation,a=e.offsets,s=e.position,l=e.gpuAcceleration,d=e.adaptive,p=e.roundOffsets,g=e.isFixed,m=a.x,y=m===void 0?0:m,b=a.y,S=b===void 0?0:b,E=typeof p=="function"?p({x:y,y:S}):{x:y,y:S};y=E.x,S=E.y;var P=a.hasOwnProperty("x"),k=a.hasOwnProperty("y"),L=To,I=Po,O=window;if(d){var N=Sv(n),D="clientHeight",F="clientWidth";if(N===Va(n)&&(N=nd(n),pu(N).position!=="static"&&s==="absolute"&&(D="scrollHeight",F="scrollWidth")),N=N,i===Po||(i===To||i===$a)&&o===Vm){I=Ba;var U=g&&N===O&&O.visualViewport?O.visualViewport.height:N[D];S-=U-r.height,S*=l?1:-1}if(i===To||(i===Po||i===Ba)&&o===Vm){L=$a;var W=g&&N===O&&O.visualViewport?O.visualViewport.width:N[F];y-=W-r.width,y*=l?1:-1}}var q=Object.assign({position:s},d&&efe),pe=p===!0?tfe({x:y,y:S}):{x:y,y:S};if(y=pe.x,S=pe.y,l){var fe;return Object.assign({},q,(fe={},fe[I]=k?"0":"",fe[L]=P?"0":"",fe.transform=(O.devicePixelRatio||1)<=1?"translate("+y+"px, "+S+"px)":"translate3d("+y+"px, "+S+"px, 0)",fe))}return Object.assign({},q,(t={},t[I]=k?S+"px":"",t[L]=P?y+"px":"",t.transform="",t))}function nfe(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=r===void 0?!0:r,o=n.adaptive,a=o===void 0?!0:o,s=n.roundOffsets,l=s===void 0?!0:s,d={placement:xl(t.placement),variation:m0(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,NT(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:l})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,NT(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const rfe={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:nfe,data:{}};var Q2={passive:!0};function ife(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,o=i===void 0?!0:i,a=r.resize,s=a===void 0?!0:a,l=Va(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&d.forEach(function(p){p.addEventListener("scroll",n.update,Q2)}),s&&l.addEventListener("resize",n.update,Q2),function(){o&&d.forEach(function(p){p.removeEventListener("scroll",n.update,Q2)}),s&&l.removeEventListener("resize",n.update,Q2)}}const ofe={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:ife,data:{}};var afe={left:"right",right:"left",bottom:"top",top:"bottom"};function Jy(e){return e.replace(/left|right|bottom|top/g,function(t){return afe[t]})}var sfe={start:"end",end:"start"};function DT(e){return e.replace(/start|end/g,function(t){return sfe[t]})}function U8(e){var t=Va(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function G8(e){return g0(nd(e)).left+U8(e).scrollLeft}function lfe(e,t){var n=Va(e),r=nd(e),i=n.visualViewport,o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;var d=GD();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s+G8(e),y:l}}function ufe(e){var t,n=nd(e),r=U8(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=If(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=If(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),s=-r.scrollLeft+G8(e),l=-r.scrollTop;return pu(i||n).direction==="rtl"&&(s+=If(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function j8(e){var t=pu(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}function YD(e){return["html","body","#document"].indexOf(wl(e))>=0?e.ownerDocument.body:Da(e)&&j8(e)?e:YD(V4(e))}function om(e,t){var n;t===void 0&&(t=[]);var r=YD(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=Va(r),a=i?[o].concat(o.visualViewport||[],j8(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(om(V4(a)))}function M6(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function cfe(e,t){var n=g0(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function zT(e,t,n){return t===VD?M6(lfe(e,n)):Ff(t)?cfe(t,n):M6(ufe(nd(e)))}function dfe(e){var t=om(V4(e)),n=["absolute","fixed"].indexOf(pu(e).position)>=0,r=n&&Da(e)?Sv(e):e;return Ff(r)?t.filter(function(i){return Ff(i)&&jD(i,r)&&wl(i)!=="body"}):[]}function ffe(e,t,n,r){var i=t==="clippingParents"?dfe(e):[].concat(t),o=[].concat(i,[n]),a=o[0],s=o.reduce(function(l,d){var p=zT(e,d,r);return l.top=If(p.top,l.top),l.right=f5(p.right,l.right),l.bottom=f5(p.bottom,l.bottom),l.left=If(p.left,l.left),l},zT(e,a,r));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}function XD(e){var t=e.reference,n=e.element,r=e.placement,i=r?xl(r):null,o=r?m0(r):null,a=t.x+t.width/2-n.width/2,s=t.y+t.height/2-n.height/2,l;switch(i){case Po:l={x:a,y:t.y-n.height};break;case Ba:l={x:a,y:t.y+t.height};break;case $a:l={x:t.x+t.width,y:s};break;case To:l={x:t.x-n.width,y:s};break;default:l={x:t.x,y:t.y}}var d=i?V8(i):null;if(d!=null){var p=d==="y"?"height":"width";switch(o){case h0:l[d]=l[d]-(t[p]/2-n[p]/2);break;case Vm:l[d]=l[d]+(t[p]/2-n[p]/2);break}}return l}function Um(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=r===void 0?e.placement:r,o=n.strategy,a=o===void 0?e.strategy:o,s=n.boundary,l=s===void 0?Mde:s,d=n.rootBoundary,p=d===void 0?VD:d,g=n.elementContext,m=g===void 0?sg:g,y=n.altBoundary,b=y===void 0?!1:y,S=n.padding,E=S===void 0?0:S,P=KD(typeof E!="number"?E:ZD(E,bv)),k=m===sg?Rde:sg,L=e.rects.popper,I=e.elements[b?k:m],O=ffe(Ff(I)?I:I.contextElement||nd(e.elements.popper),l,p,a),N=g0(e.elements.reference),D=XD({reference:N,element:L,strategy:"absolute",placement:i}),F=M6(Object.assign({},L,D)),U=m===sg?F:N,W={top:O.top-U.top+P.top,bottom:U.bottom-O.bottom+P.bottom,left:O.left-U.left+P.left,right:U.right-O.right+P.right},q=e.modifiersData.offset;if(m===sg&&q){var pe=q[i];Object.keys(W).forEach(function(fe){var ye=[$a,Ba].indexOf(fe)>=0?1:-1,Pe=[Po,Ba].indexOf(fe)>=0?"y":"x";W[fe]+=pe[Pe]*ye})}return W}function hfe(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=n.boundary,o=n.rootBoundary,a=n.padding,s=n.flipVariations,l=n.allowedAutoPlacements,d=l===void 0?UD:l,p=m0(r),g=p?s?RT:RT.filter(function(b){return m0(b)===p}):bv,m=g.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=g);var y=m.reduce(function(b,S){return b[S]=Um(e,{placement:S,boundary:i,rootBoundary:o,padding:a})[xl(S)],b},{});return Object.keys(y).sort(function(b,S){return y[b]-y[S]})}function pfe(e){if(xl(e)===$8)return[];var t=Jy(e);return[DT(e),t,DT(t)]}function gfe(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!0:a,l=n.fallbackPlacements,d=n.padding,p=n.boundary,g=n.rootBoundary,m=n.altBoundary,y=n.flipVariations,b=y===void 0?!0:y,S=n.allowedAutoPlacements,E=t.options.placement,P=xl(E),k=P===E,L=l||(k||!b?[Jy(E)]:pfe(E)),I=[E].concat(L).reduce(function(Se,He){return Se.concat(xl(He)===$8?hfe(t,{placement:He,boundary:p,rootBoundary:g,padding:d,flipVariations:b,allowedAutoPlacements:S}):He)},[]),O=t.rects.reference,N=t.rects.popper,D=new Map,F=!0,U=I[0],W=0;W=0,Pe=ye?"width":"height",xe=Um(t,{placement:q,boundary:p,rootBoundary:g,altBoundary:m,padding:d}),Y=ye?fe?$a:To:fe?Ba:Po;O[Pe]>N[Pe]&&(Y=Jy(Y));var V=Jy(Y),ae=[];if(o&&ae.push(xe[pe]<=0),s&&ae.push(xe[Y]<=0,xe[V]<=0),ae.every(function(Se){return Se})){U=q,F=!1;break}D.set(q,ae)}if(F)for(var oe=b?3:1,X=function(He){var je=I.find(function(ut){var qe=D.get(ut);if(qe)return qe.slice(0,He).every(function(at){return at})});if(je)return U=je,"break"},me=oe;me>0;me--){var ve=X(me);if(ve==="break")break}t.placement!==U&&(t.modifiersData[r]._skip=!0,t.placement=U,t.reset=!0)}}const mfe={name:"flip",enabled:!0,phase:"main",fn:gfe,requiresIfExists:["offset"],data:{_skip:!1}};function FT(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function BT(e){return[Po,$a,Ba,To].some(function(t){return e[t]>=0})}function vfe(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,o=t.modifiersData.preventOverflow,a=Um(t,{elementContext:"reference"}),s=Um(t,{altBoundary:!0}),l=FT(a,r),d=FT(s,i,o),p=BT(l),g=BT(d);t.modifiersData[n]={referenceClippingOffsets:l,popperEscapeOffsets:d,isReferenceHidden:p,hasPopperEscaped:g},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":g})}const yfe={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:vfe};function xfe(e,t,n){var r=xl(e),i=[To,Po].indexOf(r)>=0?-1:1,o=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,a=o[0],s=o[1];return a=a||0,s=(s||0)*i,[To,$a].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}function bfe(e){var t=e.state,n=e.options,r=e.name,i=n.offset,o=i===void 0?[0,0]:i,a=UD.reduce(function(p,g){return p[g]=xfe(g,t.rects,o),p},{}),s=a[t.placement],l=s.x,d=s.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=a}const Sfe={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:bfe};function wfe(e){var t=e.state,n=e.name;t.modifiersData[n]=XD({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const Cfe={name:"popperOffsets",enabled:!0,phase:"read",fn:wfe,data:{}};function _fe(e){return e==="x"?"y":"x"}function kfe(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!1:a,l=n.boundary,d=n.rootBoundary,p=n.altBoundary,g=n.padding,m=n.tether,y=m===void 0?!0:m,b=n.tetherOffset,S=b===void 0?0:b,E=Um(t,{boundary:l,rootBoundary:d,padding:g,altBoundary:p}),P=xl(t.placement),k=m0(t.placement),L=!k,I=V8(P),O=_fe(I),N=t.modifiersData.popperOffsets,D=t.rects.reference,F=t.rects.popper,U=typeof S=="function"?S(Object.assign({},t.rects,{placement:t.placement})):S,W=typeof U=="number"?{mainAxis:U,altAxis:U}:Object.assign({mainAxis:0,altAxis:0},U),q=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,pe={x:0,y:0};if(!!N){if(o){var fe,ye=I==="y"?Po:To,Pe=I==="y"?Ba:$a,xe=I==="y"?"height":"width",Y=N[I],V=Y+E[ye],ae=Y-E[Pe],oe=y?-F[xe]/2:0,X=k===h0?D[xe]:F[xe],me=k===h0?-F[xe]:-D[xe],ve=t.elements.arrow,Se=y&&ve?W8(ve):{width:0,height:0},He=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:qD(),je=He[ye],ut=He[Pe],qe=im(0,D[xe],Se[xe]),at=L?D[xe]/2-oe-qe-je-W.mainAxis:X-qe-je-W.mainAxis,et=L?-D[xe]/2+oe+qe+ut+W.mainAxis:me+qe+ut+W.mainAxis,it=t.elements.arrow&&Sv(t.elements.arrow),At=it?I==="y"?it.clientTop||0:it.clientLeft||0:0,wt=(fe=q?.[I])!=null?fe:0,Le=Y+at-wt-At,ot=Y+et-wt,Et=im(y?f5(V,Le):V,Y,y?If(ae,ot):ae);N[I]=Et,pe[I]=Et-Y}if(s){var rt,pt=I==="x"?Po:To,Sn=I==="x"?Ba:$a,bt=N[O],qt=O==="y"?"height":"width",wn=bt+E[pt],pn=bt-E[Sn],Me=[Po,To].indexOf(P)!==-1,Ze=(rt=q?.[O])!=null?rt:0,Kt=Me?wn:bt-D[qt]-F[qt]-Ze+W.altAxis,Vt=Me?bt+D[qt]+F[qt]-Ze-W.altAxis:pn,_e=y&&Me?Zde(Kt,bt,Vt):im(y?Kt:wn,bt,y?Vt:pn);N[O]=_e,pe[O]=_e-bt}t.modifiersData[r]=pe}}const Efe={name:"preventOverflow",enabled:!0,phase:"main",fn:kfe,requiresIfExists:["offset"]};function Pfe(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function Tfe(e){return e===Va(e)||!Da(e)?U8(e):Pfe(e)}function Lfe(e){var t=e.getBoundingClientRect(),n=p0(t.width)/e.offsetWidth||1,r=p0(t.height)/e.offsetHeight||1;return n!==1||r!==1}function Afe(e,t,n){n===void 0&&(n=!1);var r=Da(t),i=Da(t)&&Lfe(t),o=nd(t),a=g0(e,i,n),s={scrollLeft:0,scrollTop:0},l={x:0,y:0};return(r||!r&&!n)&&((wl(t)!=="body"||j8(o))&&(s=Tfe(t)),Da(t)?(l=g0(t,!0),l.x+=t.clientLeft,l.y+=t.clientTop):o&&(l.x=G8(o))),{x:a.left+s.scrollLeft-l.x,y:a.top+s.scrollTop-l.y,width:a.width,height:a.height}}function Ife(e){var t=new Map,n=new Set,r=[];e.forEach(function(o){t.set(o.name,o)});function i(o){n.add(o.name);var a=[].concat(o.requires||[],o.requiresIfExists||[]);a.forEach(function(s){if(!n.has(s)){var l=t.get(s);l&&i(l)}}),r.push(o)}return e.forEach(function(o){n.has(o.name)||i(o)}),r}function Mfe(e){var t=Ife(e);return Vde.reduce(function(n,r){return n.concat(t.filter(function(i){return i.phase===r}))},[])}function Rfe(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function Ofe(e){var t=e.reduce(function(n,r){var i=n[r.name];return n[r.name]=i?Object.assign({},i,r,{options:Object.assign({},i.options,r.options),data:Object.assign({},i.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var $T={placement:"bottom",modifiers:[],strategy:"absolute"};function HT(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),$r={arrowShadowColor:rp("--popper-arrow-shadow-color"),arrowSize:rp("--popper-arrow-size","8px"),arrowSizeHalf:rp("--popper-arrow-size-half"),arrowBg:rp("--popper-arrow-bg"),transformOrigin:rp("--popper-transform-origin"),arrowOffset:rp("--popper-arrow-offset")};function Ffe(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var Bfe={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},$fe=e=>Bfe[e],WT={scroll:!0,resize:!0};function Hfe(e){let t;return typeof e=="object"?t={enabled:!0,options:{...WT,...e}}:t={enabled:e,options:WT},t}var Wfe={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},Vfe={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{VT(e)},effect:({state:e})=>()=>{VT(e)}},VT=e=>{e.elements.popper.style.setProperty($r.transformOrigin.var,$fe(e.placement))},Ufe={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{Gfe(e)}},Gfe=e=>{var t;if(!e.placement)return;const n=jfe(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:$r.arrowSize.varRef,height:$r.arrowSize.varRef,zIndex:-1});const r={[$r.arrowSizeHalf.var]:`calc(${$r.arrowSize.varRef} / 2)`,[$r.arrowOffset.var]:`calc(${$r.arrowSizeHalf.varRef} * -1)`};for(const i in r)e.elements.arrow.style.setProperty(i,r[i])}},jfe=e=>{if(e.startsWith("top"))return{property:"bottom",value:$r.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:$r.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:$r.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:$r.arrowOffset.varRef}},qfe={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{UT(e)},effect:({state:e})=>()=>{UT(e)}},UT=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:$r.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:Ffe(e.placement)})},Kfe={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},Zfe={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function Yfe(e,t="ltr"){var n;const r=((n=Kfe[e])==null?void 0:n[t])||e;return t==="ltr"?r:Zfe[e]??r}function QD(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:i="absolute",arrowPadding:o=8,eventListeners:a=!0,offset:s,gutter:l=8,flip:d=!0,boundary:p="clippingParents",preventOverflow:g=!0,matchWidth:m,direction:y="ltr"}=e,b=C.exports.useRef(null),S=C.exports.useRef(null),E=C.exports.useRef(null),P=Yfe(r,y),k=C.exports.useRef(()=>{}),L=C.exports.useCallback(()=>{var W;!t||!b.current||!S.current||((W=k.current)==null||W.call(k),E.current=zfe(b.current,S.current,{placement:P,modifiers:[qfe,Ufe,Vfe,{...Wfe,enabled:!!m},{name:"eventListeners",...Hfe(a)},{name:"arrow",options:{padding:o}},{name:"offset",options:{offset:s??[0,l]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!g,options:{boundary:p}},...n??[]],strategy:i}),E.current.forceUpdate(),k.current=E.current.destroy)},[P,t,n,m,a,o,s,l,d,g,p,i]);C.exports.useEffect(()=>()=>{var W;!b.current&&!S.current&&((W=E.current)==null||W.destroy(),E.current=null)},[]);const I=C.exports.useCallback(W=>{b.current=W,L()},[L]),O=C.exports.useCallback((W={},q=null)=>({...W,ref:zn(I,q)}),[I]),N=C.exports.useCallback(W=>{S.current=W,L()},[L]),D=C.exports.useCallback((W={},q=null)=>({...W,ref:zn(N,q),style:{...W.style,position:i,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[i,N,m]),F=C.exports.useCallback((W={},q=null)=>{const{size:pe,shadowColor:fe,bg:ye,style:Pe,...xe}=W;return{...xe,ref:q,"data-popper-arrow":"",style:Xfe(W)}},[]),U=C.exports.useCallback((W={},q=null)=>({...W,ref:q,"data-popper-arrow-inner":""}),[]);return{update(){var W;(W=E.current)==null||W.update()},forceUpdate(){var W;(W=E.current)==null||W.forceUpdate()},transformOrigin:$r.transformOrigin.varRef,referenceRef:I,popperRef:N,getPopperProps:D,getArrowProps:F,getArrowInnerProps:U,getReferenceProps:O}}function Xfe(e){const{size:t,shadowColor:n,bg:r,style:i}=e,o={...i,position:"absolute"};return t&&(o["--popper-arrow-size"]=t),n&&(o["--popper-arrow-shadow-color"]=n),r&&(o["--popper-arrow-bg"]=r),o}function JD(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=ur(n),a=ur(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:s,p=r!==void 0,g=C.exports.useId(),m=i??`disclosure-${g}`,y=C.exports.useCallback(()=>{p||l(!1),a?.()},[p,a]),b=C.exports.useCallback(()=>{p||l(!0),o?.()},[p,o]),S=C.exports.useCallback(()=>{d?y():b()},[d,b,y]);function E(k={}){return{...k,"aria-expanded":d,"aria-controls":m,onClick(L){var I;(I=k.onClick)==null||I.call(k,L),S()}}}function P(k={}){return{...k,hidden:!d,id:m}}return{isOpen:d,onOpen:b,onClose:y,onToggle:S,isControlled:p,getButtonProps:E,getDisclosureProps:P}}function Qfe(e){const{isOpen:t,ref:n}=e,[r,i]=C.exports.useState(t),[o,a]=C.exports.useState(!1);return C.exports.useEffect(()=>{o||(i(t),a(!0))},[t,o,r]),Lf(()=>n.current,"animationend",()=>{i(t)}),{present:!(t?!1:!r),onComplete(){var l;const d=yde(n.current),p=new d.CustomEvent("animationend",{bubbles:!0});(l=n.current)==null||l.dispatchEvent(p)}}}function ez(e){const{wasSelected:t,enabled:n,isSelected:r,mode:i="unmount"}=e;return!!(!n||r||i==="keepMounted"&&t)}var[Jfe,ehe]=xn({strict:!1,name:"PortalManagerContext"});function tz(e){const{children:t,zIndex:n}=e;return w(Jfe,{value:{zIndex:n},children:t})}tz.displayName="PortalManager";var[nz,the]=xn({strict:!1,name:"PortalContext"}),q8="chakra-portal",nhe=".chakra-portal",rhe=e=>w("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),ihe=e=>{const{appendToParentPortal:t,children:n}=e,[r,i]=C.exports.useState(null),o=C.exports.useRef(null),[,a]=C.exports.useState({});C.exports.useEffect(()=>a({}),[]);const s=the(),l=ehe();gl(()=>{if(!r)return;const p=r.ownerDocument,g=t?s??p.body:p.body;if(!g)return;o.current=p.createElement("div"),o.current.className=q8,g.appendChild(o.current),a({});const m=o.current;return()=>{g.contains(m)&&g.removeChild(m)}},[r]);const d=l?.zIndex?w(rhe,{zIndex:l?.zIndex,children:n}):n;return o.current?El.exports.createPortal(w(nz,{value:o.current,children:d}),o.current):w("span",{ref:p=>{p&&i(p)}})},ohe=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,i=n.current,o=i??(typeof window<"u"?document.body:void 0),a=C.exports.useMemo(()=>{const l=i?.ownerDocument.createElement("div");return l&&(l.className=q8),l},[i]),[,s]=C.exports.useState({});return gl(()=>s({}),[]),gl(()=>{if(!(!a||!o))return o.appendChild(a),()=>{o.removeChild(a)}},[a,o]),o&&a?El.exports.createPortal(w(nz,{value:r?a:null,children:t}),a):null};function jf(e){const{containerRef:t,...n}=e;return t?w(ohe,{containerRef:t,...n}):w(ihe,{...n})}jf.defaultProps={appendToParentPortal:!0};jf.className=q8;jf.selector=nhe;jf.displayName="Portal";var ahe=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},ip=new WeakMap,J2=new WeakMap,ey={},Jb=0,she=function(e,t,n,r){var i=Array.isArray(e)?e:[e];ey[n]||(ey[n]=new WeakMap);var o=ey[n],a=[],s=new Set,l=new Set(i),d=function(g){!g||s.has(g)||(s.add(g),d(g.parentNode))};i.forEach(d);var p=function(g){!g||l.has(g)||Array.prototype.forEach.call(g.children,function(m){if(s.has(m))p(m);else{var y=m.getAttribute(r),b=y!==null&&y!=="false",S=(ip.get(m)||0)+1,E=(o.get(m)||0)+1;ip.set(m,S),o.set(m,E),a.push(m),S===1&&b&&J2.set(m,!0),E===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return p(t),s.clear(),Jb++,function(){a.forEach(function(g){var m=ip.get(g)-1,y=o.get(g)-1;ip.set(g,m),o.set(g,y),m||(J2.has(g)||g.removeAttribute(r),J2.delete(g)),y||g.removeAttribute(n)}),Jb--,Jb||(ip=new WeakMap,ip=new WeakMap,J2=new WeakMap,ey={})}},rz=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),i=t||ahe(e);return i?(r.push.apply(r,Array.from(i.querySelectorAll("[aria-live]"))),she(r,i,n,"aria-hidden")):function(){return null}};function K8(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var An={exports:{}},lhe="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",uhe=lhe,che=uhe;function iz(){}function oz(){}oz.resetWarningCache=iz;var dhe=function(){function e(r,i,o,a,s,l){if(l!==che){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:oz,resetWarningCache:iz};return n.PropTypes=n,n};An.exports=dhe();var R6="data-focus-lock",az="data-focus-lock-disabled",fhe="data-no-focus-lock",hhe="data-autofocus-inside",phe="data-no-autofocus";function ghe(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function mhe(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var i=n.value;i!==r&&(n.value=r,n.callback(r,i))}}}})[0];return n.callback=t,n.facade}function sz(e,t){return mhe(t||null,function(n){return e.forEach(function(r){return ghe(r,n)})})}var eS={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function lz(e){return e}function uz(e,t){t===void 0&&(t=lz);var n=[],r=!1,i={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(o){var a=t(o,r);return n.push(a),function(){n=n.filter(function(s){return s!==a})}},assignSyncMedium:function(o){for(r=!0;n.length;){var a=n;n=[],a.forEach(o)}n={push:function(s){return o(s)},filter:function(){return n}}},assignMedium:function(o){r=!0;var a=[];if(n.length){var s=n;n=[],s.forEach(o),a=n}var l=function(){var p=a;a=[],p.forEach(o)},d=function(){return Promise.resolve().then(l)};d(),n={push:function(p){a.push(p),d()},filter:function(p){return a=a.filter(p),n}}}};return i}function Z8(e,t){return t===void 0&&(t=lz),uz(e,t)}function cz(e){e===void 0&&(e={});var t=uz(null);return t.options=cl({async:!0,ssr:!1},e),t}var dz=function(e){var t=e.sideCar,n=eD(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return w(r,{...cl({},n)})};dz.isSideCarExport=!0;function vhe(e,t){return e.useMedium(t),dz}var fz=Z8({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),hz=Z8(),yhe=Z8(),xhe=cz({async:!0}),bhe=[],Y8=C.exports.forwardRef(function(t,n){var r,i=C.exports.useState(),o=i[0],a=i[1],s=C.exports.useRef(),l=C.exports.useRef(!1),d=C.exports.useRef(null),p=t.children,g=t.disabled,m=t.noFocusGuards,y=t.persistentFocus,b=t.crossFrame,S=t.autoFocus;t.allowTextSelection;var E=t.group,P=t.className,k=t.whiteList,L=t.hasPositiveIndices,I=t.shards,O=I===void 0?bhe:I,N=t.as,D=N===void 0?"div":N,F=t.lockProps,U=F===void 0?{}:F,W=t.sideCar,q=t.returnFocus,pe=t.focusOptions,fe=t.onActivation,ye=t.onDeactivation,Pe=C.exports.useState({}),xe=Pe[0],Y=C.exports.useCallback(function(){d.current=d.current||document&&document.activeElement,s.current&&fe&&fe(s.current),l.current=!0},[fe]),V=C.exports.useCallback(function(){l.current=!1,ye&&ye(s.current)},[ye]);C.exports.useEffect(function(){g||(d.current=null)},[]);var ae=C.exports.useCallback(function(ut){var qe=d.current;if(qe&&qe.focus){var at=typeof q=="function"?q(qe):q;if(at){var et=typeof at=="object"?at:void 0;d.current=null,ut?Promise.resolve().then(function(){return qe.focus(et)}):qe.focus(et)}}},[q]),oe=C.exports.useCallback(function(ut){l.current&&fz.useMedium(ut)},[]),X=hz.useMedium,me=C.exports.useCallback(function(ut){s.current!==ut&&(s.current=ut,a(ut))},[]),ve=En((r={},r[az]=g&&"disabled",r[R6]=E,r),U),Se=m!==!0,He=Se&&m!=="tail",je=sz([n,me]);return te(Fn,{children:[Se&&[w("div",{"data-focus-guard":!0,tabIndex:g?-1:0,style:eS},"guard-first"),L?w("div",{"data-focus-guard":!0,tabIndex:g?-1:1,style:eS},"guard-nearest"):null],!g&&w(W,{id:xe,sideCar:xhe,observed:o,disabled:g,persistentFocus:y,crossFrame:b,autoFocus:S,whiteList:k,shards:O,onActivation:Y,onDeactivation:V,returnFocus:ae,focusOptions:pe}),w(D,{ref:je,...ve,className:P,onBlur:X,onFocus:oe,children:p}),He&&w("div",{"data-focus-guard":!0,tabIndex:g?-1:0,style:eS})]})});Y8.propTypes={};Y8.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const pz=Y8;function O6(e,t){return O6=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,i){return r.__proto__=i,r},O6(e,t)}function X8(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,O6(e,t)}function gz(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function She(e,t){function n(r){return r.displayName||r.name||"Component"}return function(i){var o=[],a;function s(){a=e(o.map(function(d){return d.props})),t(a)}var l=function(d){X8(p,d);function p(){return d.apply(this,arguments)||this}p.peek=function(){return a};var g=p.prototype;return g.componentDidMount=function(){o.push(this),s()},g.componentDidUpdate=function(){s()},g.componentWillUnmount=function(){var y=o.indexOf(this);o.splice(y,1),s()},g.render=function(){return w(i,{...this.props})},p}(C.exports.PureComponent);return gz(l,"displayName","SideEffect("+n(i)+")"),l}}var Tl=function(e){for(var t=Array(e.length),n=0;n=0}).sort(Lhe)},Ahe=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],J8=Ahe.join(","),Ihe="".concat(J8,", [data-focus-guard]"),_z=function(e,t){var n;return Tl(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,i){return r.concat(i.matches(t?Ihe:J8)?[i]:[],_z(i))},[])},e7=function(e,t){return e.reduce(function(n,r){return n.concat(_z(r,t),r.parentNode?Tl(r.parentNode.querySelectorAll(J8)).filter(function(i){return i===r}):[])},[])},Mhe=function(e){var t=e.querySelectorAll("[".concat(hhe,"]"));return Tl(t).map(function(n){return e7([n])}).reduce(function(n,r){return n.concat(r)},[])},t7=function(e,t){return Tl(e).filter(function(n){return yz(t,n)}).filter(function(n){return Ehe(n)})},GT=function(e,t){return t===void 0&&(t=new Map),Tl(e).filter(function(n){return xz(t,n)})},D6=function(e,t,n){return Cz(t7(e7(e,n),t),!0,n)},jT=function(e,t){return Cz(t7(e7(e),t),!1)},Rhe=function(e,t){return t7(Mhe(e),t)},Gm=function(e,t){return e.shadowRoot?Gm(e.shadowRoot,t):Object.getPrototypeOf(e).contains!==void 0&&Object.getPrototypeOf(e).contains.call(e,t)?!0:Tl(e.children).some(function(n){return Gm(n,t)})},Ohe=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(i),(o&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(a,s){return!t.has(s)})},kz=function(e){return e.parentNode?kz(e.parentNode):e},n7=function(e){var t=N6(e);return t.filter(Boolean).reduce(function(n,r){var i=r.getAttribute(R6);return n.push.apply(n,i?Ohe(Tl(kz(r).querySelectorAll("[".concat(R6,'="').concat(i,'"]:not([').concat(az,'="disabled"])')))):[r]),n},[])},Ez=function(e){return e.activeElement?e.activeElement.shadowRoot?Ez(e.activeElement.shadowRoot):e.activeElement:void 0},r7=function(){return document.activeElement?document.activeElement.shadowRoot?Ez(document.activeElement.shadowRoot):document.activeElement:void 0},Nhe=function(e){return e===document.activeElement},Dhe=function(e){return Boolean(Tl(e.querySelectorAll("iframe")).some(function(t){return Nhe(t)}))},Pz=function(e){var t=document&&r7();return!t||t.dataset&&t.dataset.focusGuard?!1:n7(e).some(function(n){return Gm(n,t)||Dhe(n)})},zhe=function(){var e=document&&r7();return e?Tl(document.querySelectorAll("[".concat(fhe,"]"))).some(function(t){return Gm(t,e)}):!1},Fhe=function(e,t){return t.filter(wz).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},i7=function(e,t){return wz(e)&&e.name?Fhe(e,t):e},Bhe=function(e){var t=new Set;return e.forEach(function(n){return t.add(i7(n,e))}),e.filter(function(n){return t.has(n)})},qT=function(e){return e[0]&&e.length>1?i7(e[0],e):e[0]},KT=function(e,t){return e.length>1?e.indexOf(i7(e[t],e)):t},Tz="NEW_FOCUS",$he=function(e,t,n,r){var i=e.length,o=e[0],a=e[i-1],s=Q8(n);if(!(n&&e.indexOf(n)>=0)){var l=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):l,p=r?e.indexOf(r):-1,g=l-d,m=t.indexOf(o),y=t.indexOf(a),b=Bhe(t),S=n!==void 0?b.indexOf(n):-1,E=S-(r?b.indexOf(r):l),P=KT(e,0),k=KT(e,i-1);if(l===-1||p===-1)return Tz;if(!g&&p>=0)return p;if(l<=m&&s&&Math.abs(g)>1)return k;if(l>=y&&s&&Math.abs(g)>1)return P;if(g&&Math.abs(E)>1)return p;if(l<=m)return k;if(l>y)return P;if(g)return Math.abs(g)>1?p:(i+p+g)%i}},Hhe=function(e){return function(t){var n,r=(n=bz(t))===null||n===void 0?void 0:n.autofocus;return t.autofocus||r!==void 0&&r!=="false"||e.indexOf(t)>=0}},Whe=function(e,t,n){var r=e.map(function(o){var a=o.node;return a}),i=GT(r.filter(Hhe(n)));return i&&i.length?qT(i):qT(GT(t))},z6=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&z6(e.parentNode.host||e.parentNode,t),t},tS=function(e,t){for(var n=z6(e),r=z6(t),i=0;i=0)return o}return!1},Lz=function(e,t,n){var r=N6(e),i=N6(t),o=r[0],a=!1;return i.filter(Boolean).forEach(function(s){a=tS(a||s,s)||a,n.filter(Boolean).forEach(function(l){var d=tS(o,l);d&&(!a||Gm(d,a)?a=d:a=tS(d,a))})}),a},Vhe=function(e,t){return e.reduce(function(n,r){return n.concat(Rhe(r,t))},[])},Uhe=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(The)},Ghe=function(e,t){var n=document&&r7(),r=n7(e).filter(h5),i=Lz(n||e,e,r),o=new Map,a=jT(r,o),s=D6(r,o).filter(function(m){var y=m.node;return h5(y)});if(!(!s[0]&&(s=a,!s[0]))){var l=jT([i],o).map(function(m){var y=m.node;return y}),d=Uhe(l,s),p=d.map(function(m){var y=m.node;return y}),g=$he(p,l,n,t);return g===Tz?{node:Whe(a,p,Vhe(r,o))}:g===void 0?g:d[g]}},jhe=function(e){var t=n7(e).filter(h5),n=Lz(e,e,t),r=new Map,i=D6([n],r,!0),o=D6(t,r).filter(function(a){var s=a.node;return h5(s)}).map(function(a){var s=a.node;return s});return i.map(function(a){var s=a.node,l=a.index;return{node:s,index:l,lockItem:o.indexOf(s)>=0,guard:Q8(s)}})},qhe=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},nS=0,rS=!1,Khe=function(e,t,n){n===void 0&&(n={});var r=Ghe(e,t);if(!rS&&r){if(nS>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),rS=!0,setTimeout(function(){rS=!1},1);return}nS++,qhe(r.node,n.focusOptions),nS--}};const Az=Khe;function Iz(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Zhe=function(){return document&&document.activeElement===document.body},Yhe=function(){return Zhe()||zhe()},qp=null,Lp=null,Kp=null,jm=!1,Xhe=function(){return!0},Qhe=function(t){return(qp.whiteList||Xhe)(t)},Jhe=function(t,n){Kp={observerNode:t,portaledElement:n}},epe=function(t){return Kp&&Kp.portaledElement===t};function ZT(e,t,n,r){var i=null,o=e;do{var a=r[o];if(a.guard)a.node.dataset.focusAutoGuard&&(i=a);else if(a.lockItem){if(o!==e)return;i=null}else break}while((o+=n)!==t);i&&(i.node.tabIndex=0)}var tpe=function(t){return t&&"current"in t?t.current:t},npe=function(t){return t?Boolean(jm):jm==="meanwhile"},rpe=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},ipe=function(t,n){return n.some(function(r){return rpe(t,r,r)})},p5=function(){var t=!1;if(qp){var n=qp,r=n.observed,i=n.persistentFocus,o=n.autoFocus,a=n.shards,s=n.crossFrame,l=n.focusOptions,d=r||Kp&&Kp.portaledElement,p=document&&document.activeElement;if(d){var g=[d].concat(a.map(tpe).filter(Boolean));if((!p||Qhe(p))&&(i||npe(s)||!Yhe()||!Lp&&o)&&(d&&!(Pz(g)||p&&ipe(p,g)||epe(p))&&(document&&!Lp&&p&&!o?(p.blur&&p.blur(),document.body.focus()):(t=Az(g,Lp,{focusOptions:l}),Kp={})),jm=!1,Lp=document&&document.activeElement),document){var m=document&&document.activeElement,y=jhe(g),b=y.map(function(S){var E=S.node;return E}).indexOf(m);b>-1&&(y.filter(function(S){var E=S.guard,P=S.node;return E&&P.dataset.focusAutoGuard}).forEach(function(S){var E=S.node;return E.removeAttribute("tabIndex")}),ZT(b,y.length,1,y),ZT(b,-1,-1,y))}}}return t},Mz=function(t){p5()&&t&&(t.stopPropagation(),t.preventDefault())},o7=function(){return Iz(p5)},ope=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||Jhe(r,n)},ape=function(){return null},Rz=function(){jm="just",setTimeout(function(){jm="meanwhile"},0)},spe=function(){document.addEventListener("focusin",Mz),document.addEventListener("focusout",o7),window.addEventListener("blur",Rz)},lpe=function(){document.removeEventListener("focusin",Mz),document.removeEventListener("focusout",o7),window.removeEventListener("blur",Rz)};function upe(e){return e.filter(function(t){var n=t.disabled;return!n})}function cpe(e){var t=e.slice(-1)[0];t&&!qp&&spe();var n=qp,r=n&&t&&t.id===n.id;qp=t,n&&!r&&(n.onDeactivation(),e.filter(function(i){var o=i.id;return o===n.id}).length||n.returnFocus(!t)),t?(Lp=null,(!r||n.observed!==t.observed)&&t.onActivation(),p5(),Iz(p5)):(lpe(),Lp=null)}fz.assignSyncMedium(ope);hz.assignMedium(o7);yhe.assignMedium(function(e){return e({moveFocusInside:Az,focusInside:Pz})});const dpe=She(upe,cpe)(ape);var Oz=C.exports.forwardRef(function(t,n){return w(pz,{sideCar:dpe,ref:n,...t})}),Nz=pz.propTypes||{};Nz.sideCar;K8(Nz,["sideCar"]);Oz.propTypes={};const fpe=Oz;var Dz=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:i,children:o,isDisabled:a,autoFocus:s,persistentFocus:l,lockFocusAcrossFrames:d}=e,p=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&WD(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),g=C.exports.useCallback(()=>{var y;(y=n?.current)==null||y.focus()},[n]);return w(fpe,{crossFrame:d,persistentFocus:l,autoFocus:s,disabled:a,onActivation:p,onDeactivation:g,returnFocus:i&&!n,children:o})};Dz.displayName="FocusLock";var e3="right-scroll-bar-position",t3="width-before-scroll-bar",hpe="with-scroll-bars-hidden",ppe="--removed-body-scroll-bar-size",zz=cz(),iS=function(){},U4=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:iS,onWheelCapture:iS,onTouchMoveCapture:iS}),i=r[0],o=r[1],a=e.forwardProps,s=e.children,l=e.className,d=e.removeScrollBar,p=e.enabled,g=e.shards,m=e.sideCar,y=e.noIsolation,b=e.inert,S=e.allowPinchZoom,E=e.as,P=E===void 0?"div":E,k=eD(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),L=m,I=sz([n,t]),O=cl(cl({},k),i);return te(Fn,{children:[p&&w(L,{sideCar:zz,removeScrollBar:d,shards:g,noIsolation:y,inert:b,setCallbacks:o,allowPinchZoom:!!S,lockRef:n}),a?C.exports.cloneElement(C.exports.Children.only(s),cl(cl({},O),{ref:I})):w(P,{...cl({},O,{className:l,ref:I}),children:s})]})});U4.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};U4.classNames={fullWidth:t3,zeroRight:e3};var gpe=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function mpe(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=gpe();return t&&e.setAttribute("nonce",t),e}function vpe(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function ype(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var xpe=function(){var e=0,t=null;return{add:function(n){e==0&&(t=mpe())&&(vpe(t,n),ype(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},bpe=function(){var e=xpe();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},Fz=function(){var e=bpe(),t=function(n){var r=n.styles,i=n.dynamic;return e(r,i),null};return t},Spe={left:0,top:0,right:0,gap:0},oS=function(e){return parseInt(e||"",10)||0},wpe=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],i=t[e==="padding"?"paddingRight":"marginRight"];return[oS(n),oS(r),oS(i)]},Cpe=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return Spe;var t=wpe(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},_pe=Fz(),kpe=function(e,t,n,r){var i=e.left,o=e.top,a=e.right,s=e.gap;return n===void 0&&(n="margin"),` + .`.concat(hpe,` { + overflow: hidden `).concat(r,`; + padding-right: `).concat(s,"px ").concat(r,`; + } + body { + overflow: hidden `).concat(r,`; + overscroll-behavior: contain; + `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` + padding-left: `.concat(i,`px; + padding-top: `).concat(o,`px; + padding-right: `).concat(a,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(s,"px ").concat(r,`; + `),n==="padding"&&"padding-right: ".concat(s,"px ").concat(r,";")].filter(Boolean).join(""),` + } + + .`).concat(e3,` { + right: `).concat(s,"px ").concat(r,`; + } + + .`).concat(t3,` { + margin-right: `).concat(s,"px ").concat(r,`; + } + + .`).concat(e3," .").concat(e3,` { + right: 0 `).concat(r,`; + } + + .`).concat(t3," .").concat(t3,` { + margin-right: 0 `).concat(r,`; + } + + body { + `).concat(ppe,": ").concat(s,`px; + } +`)},Epe=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,i=r===void 0?"margin":r,o=C.exports.useMemo(function(){return Cpe(i)},[i]);return w(_pe,{styles:kpe(o,!t,i,n?"":"!important")})},F6=!1;if(typeof window<"u")try{var ty=Object.defineProperty({},"passive",{get:function(){return F6=!0,!0}});window.addEventListener("test",ty,ty),window.removeEventListener("test",ty,ty)}catch{F6=!1}var op=F6?{passive:!1}:!1,Ppe=function(e){return e.tagName==="TEXTAREA"},Bz=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!Ppe(e)&&n[t]==="visible")},Tpe=function(e){return Bz(e,"overflowY")},Lpe=function(e){return Bz(e,"overflowX")},YT=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=$z(e,n);if(r){var i=Hz(e,n),o=i[1],a=i[2];if(o>a)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},Ape=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},Ipe=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},$z=function(e,t){return e==="v"?Tpe(t):Lpe(t)},Hz=function(e,t){return e==="v"?Ape(t):Ipe(t)},Mpe=function(e,t){return e==="h"&&t==="rtl"?-1:1},Rpe=function(e,t,n,r,i){var o=Mpe(e,window.getComputedStyle(t).direction),a=o*r,s=n.target,l=t.contains(s),d=!1,p=a>0,g=0,m=0;do{var y=Hz(e,s),b=y[0],S=y[1],E=y[2],P=S-E-o*b;(b||P)&&$z(e,s)&&(g+=P,m+=b),s=s.parentNode}while(!l&&s!==document.body||l&&(t.contains(s)||t===s));return(p&&(i&&g===0||!i&&a>g)||!p&&(i&&m===0||!i&&-a>m))&&(d=!0),d},ny=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},XT=function(e){return[e.deltaX,e.deltaY]},QT=function(e){return e&&"current"in e?e.current:e},Ope=function(e,t){return e[0]===t[0]&&e[1]===t[1]},Npe=function(e){return` + .block-interactivity-`.concat(e,` {pointer-events: none;} + .allow-interactivity-`).concat(e,` {pointer-events: all;} +`)},Dpe=0,ap=[];function zpe(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),i=C.exports.useState(Dpe++)[0],o=C.exports.useState(function(){return Fz()})[0],a=C.exports.useRef(e);C.exports.useEffect(function(){a.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(i));var S=w6([e.lockRef.current],(e.shards||[]).map(QT),!0).filter(Boolean);return S.forEach(function(E){return E.classList.add("allow-interactivity-".concat(i))}),function(){document.body.classList.remove("block-interactivity-".concat(i)),S.forEach(function(E){return E.classList.remove("allow-interactivity-".concat(i))})}}},[e.inert,e.lockRef.current,e.shards]);var s=C.exports.useCallback(function(S,E){if("touches"in S&&S.touches.length===2)return!a.current.allowPinchZoom;var P=ny(S),k=n.current,L="deltaX"in S?S.deltaX:k[0]-P[0],I="deltaY"in S?S.deltaY:k[1]-P[1],O,N=S.target,D=Math.abs(L)>Math.abs(I)?"h":"v";if("touches"in S&&D==="h"&&N.type==="range")return!1;var F=YT(D,N);if(!F)return!0;if(F?O=D:(O=D==="v"?"h":"v",F=YT(D,N)),!F)return!1;if(!r.current&&"changedTouches"in S&&(L||I)&&(r.current=O),!O)return!0;var U=r.current||O;return Rpe(U,E,S,U==="h"?L:I,!0)},[]),l=C.exports.useCallback(function(S){var E=S;if(!(!ap.length||ap[ap.length-1]!==o)){var P="deltaY"in E?XT(E):ny(E),k=t.current.filter(function(O){return O.name===E.type&&O.target===E.target&&Ope(O.delta,P)})[0];if(k&&k.should){E.cancelable&&E.preventDefault();return}if(!k){var L=(a.current.shards||[]).map(QT).filter(Boolean).filter(function(O){return O.contains(E.target)}),I=L.length>0?s(E,L[0]):!a.current.noIsolation;I&&E.cancelable&&E.preventDefault()}}},[]),d=C.exports.useCallback(function(S,E,P,k){var L={name:S,delta:E,target:P,should:k};t.current.push(L),setTimeout(function(){t.current=t.current.filter(function(I){return I!==L})},1)},[]),p=C.exports.useCallback(function(S){n.current=ny(S),r.current=void 0},[]),g=C.exports.useCallback(function(S){d(S.type,XT(S),S.target,s(S,e.lockRef.current))},[]),m=C.exports.useCallback(function(S){d(S.type,ny(S),S.target,s(S,e.lockRef.current))},[]);C.exports.useEffect(function(){return ap.push(o),e.setCallbacks({onScrollCapture:g,onWheelCapture:g,onTouchMoveCapture:m}),document.addEventListener("wheel",l,op),document.addEventListener("touchmove",l,op),document.addEventListener("touchstart",p,op),function(){ap=ap.filter(function(S){return S!==o}),document.removeEventListener("wheel",l,op),document.removeEventListener("touchmove",l,op),document.removeEventListener("touchstart",p,op)}},[]);var y=e.removeScrollBar,b=e.inert;return te(Fn,{children:[b?w(o,{styles:Npe(i)}):null,y?w(Epe,{gapMode:"margin"}):null]})}const Fpe=vhe(zz,zpe);var Wz=C.exports.forwardRef(function(e,t){return w(U4,{...cl({},e,{ref:t,sideCar:Fpe})})});Wz.classNames=U4.classNames;const Vz=Wz;var qf=(...e)=>e.filter(Boolean).join(" ");function _g(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Bpe=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},B6=new Bpe;function $pe(e,t){C.exports.useEffect(()=>(t&&B6.add(e),()=>{B6.remove(e)}),[t,e])}function Hpe(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:i=!0,closeOnEsc:o=!0,useInert:a=!0,onOverlayClick:s,onEsc:l}=e,d=C.exports.useRef(null),p=C.exports.useRef(null),[g,m,y]=Vpe(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Wpe(d,t&&a),$pe(d,t);const b=C.exports.useRef(null),S=C.exports.useCallback(F=>{b.current=F.target},[]),E=C.exports.useCallback(F=>{F.key==="Escape"&&(F.stopPropagation(),o&&n?.(),l?.())},[o,n,l]),[P,k]=C.exports.useState(!1),[L,I]=C.exports.useState(!1),O=C.exports.useCallback((F={},U=null)=>({role:"dialog",...F,ref:zn(U,d),id:g,tabIndex:-1,"aria-modal":!0,"aria-labelledby":P?m:void 0,"aria-describedby":L?y:void 0,onClick:_g(F.onClick,W=>W.stopPropagation())}),[y,L,g,m,P]),N=C.exports.useCallback(F=>{F.stopPropagation(),b.current===F.target&&(!B6.isTopModal(d)||(i&&n?.(),s?.()))},[n,i,s]),D=C.exports.useCallback((F={},U=null)=>({...F,ref:zn(U,p),onClick:_g(F.onClick,N),onKeyDown:_g(F.onKeyDown,E),onMouseDown:_g(F.onMouseDown,S)}),[E,S,N]);return{isOpen:t,onClose:n,headerId:m,bodyId:y,setBodyMounted:I,setHeaderMounted:k,dialogRef:d,overlayRef:p,getDialogProps:O,getDialogContainerProps:D}}function Wpe(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return rz(e.current)},[t,e,n])}function Vpe(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(i=>`${i}-${r}`),[r,t])}var[Upe,Kf]=xn({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Gpe,qc]=xn({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),v0=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m,onCloseComplete:y}=e,b=Ai("Modal",e),E={...Hpe(e),autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m};return w(Gpe,{value:E,children:w(Upe,{value:b,children:w(bu,{onExitComplete:y,children:E.isOpen&&w(jf,{...t,children:n})})})})};v0.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};v0.displayName="Modal";var g5=Ee((e,t)=>{const{className:n,...r}=e,{bodyId:i,setBodyMounted:o}=qc();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=qf("chakra-modal__body",n),s=Kf();return ne.createElement(be.div,{ref:t,className:a,id:i,...r,__css:s.body})});g5.displayName="ModalBody";var a7=Ee((e,t)=>{const{onClick:n,className:r,...i}=e,{onClose:o}=qc(),a=qf("chakra-modal__close-btn",r),s=Kf();return w(H4,{ref:t,__css:s.closeButton,className:a,onClick:_g(n,l=>{l.stopPropagation(),o()}),...i})});a7.displayName="ModalCloseButton";function Uz(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:i,blockScrollOnMount:o,allowPinchZoom:a,finalFocusRef:s,returnFocusOnClose:l,preserveScrollBarGap:d,lockFocusAcrossFrames:p}=qc(),[g,m]=x8();return C.exports.useEffect(()=>{!g&&m&&setTimeout(m)},[g,m]),w(Dz,{autoFocus:t,isDisabled:!n,initialFocusRef:i,finalFocusRef:s,restoreFocus:l,contentRef:r,lockFocusAcrossFrames:p,children:w(Vz,{removeScrollBar:!d,allowPinchZoom:a,enabled:o,forwardProps:!0,children:e.children})})}var jpe={slideInBottom:{..._6,custom:{offsetY:16,reverse:!0}},slideInRight:{..._6,custom:{offsetX:16,reverse:!0}},scale:{...rD,custom:{initialScale:.95,reverse:!0}},none:{}},qpe=be(Wa.section),Kpe=e=>jpe[e||"none"],Gz=C.exports.forwardRef((e,t)=>{const{preset:n,motionProps:r=Kpe(n),...i}=e;return w(qpe,{ref:t,...r,...i})});Gz.displayName="ModalTransition";var qm=Ee((e,t)=>{const{className:n,children:r,containerProps:i,motionProps:o,...a}=e,{getDialogProps:s,getDialogContainerProps:l}=qc(),d=s(a,t),p=l(i),g=qf("chakra-modal__content",n),m=Kf(),y={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...m.dialog},b={display:"flex",width:"100vw",height:"$100vh",position:"fixed",left:0,top:0,...m.dialogContainer},{motionPreset:S}=qc();return ne.createElement(Uz,null,ne.createElement(be.div,{...p,className:"chakra-modal__content-container",tabIndex:-1,__css:b},w(Gz,{preset:S,motionProps:o,className:g,...d,__css:y,children:r})))});qm.displayName="ModalContent";var s7=Ee((e,t)=>{const{className:n,...r}=e,i=qf("chakra-modal__footer",n),a={display:"flex",alignItems:"center",justifyContent:"flex-end",...Kf().footer};return ne.createElement(be.footer,{ref:t,...r,__css:a,className:i})});s7.displayName="ModalFooter";var l7=Ee((e,t)=>{const{className:n,...r}=e,{headerId:i,setHeaderMounted:o}=qc();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=qf("chakra-modal__header",n),l={flex:0,...Kf().header};return ne.createElement(be.header,{ref:t,className:a,id:i,...r,__css:l})});l7.displayName="ModalHeader";var Zpe=be(Wa.div),Km=Ee((e,t)=>{const{className:n,transition:r,motionProps:i,...o}=e,a=qf("chakra-modal__overlay",n),l={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...Kf().overlay},{motionPreset:d}=qc();return w(Zpe,{...i||(d==="none"?{}:nD),__css:l,ref:t,className:a,...o})});Km.displayName="ModalOverlay";function Ype(e){const{leastDestructiveRef:t,...n}=e;return w(v0,{...n,initialFocusRef:t})}var Xpe=Ee((e,t)=>w(qm,{ref:t,role:"alertdialog",...e})),[F9e,Qpe]=xn(),Jpe=be(iD),e0e=Ee((e,t)=>{const{className:n,children:r,motionProps:i,containerProps:o,...a}=e,{getDialogProps:s,getDialogContainerProps:l,isOpen:d}=qc(),p=s(a,t),g=l(o),m=qf("chakra-modal__content",n),y=Kf(),b={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...y.dialog},S={display:"flex",width:"100vw",height:"$100vh",position:"fixed",left:0,top:0,...y.dialogContainer},{placement:E}=Qpe();return ne.createElement(Uz,null,ne.createElement(be.div,{...g,className:"chakra-modal__content-container",__css:S},w(Jpe,{motionProps:i,direction:E,in:d,className:m,...p,__css:b,children:r})))});e0e.displayName="DrawerContent";function t0e(e,t){const n=ur(e);C.exports.useEffect(()=>{let r=null;const i=()=>n();return t!==null&&(r=window.setInterval(i,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var jz=(...e)=>e.filter(Boolean).join(" "),aS=e=>e?!0:void 0;function el(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var n0e=e=>w(ha,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),r0e=e=>w(ha,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function JT(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const i=e.current.ownerDocument.defaultView??window,o=Array.isArray(t)?t:[t],a=new i.MutationObserver(s=>{for(const l of s)l.type==="attributes"&&l.attributeName&&o.includes(l.attributeName)&&n(l)});return a.observe(e.current,{attributes:!0,attributeFilter:o}),()=>a.disconnect()})}var i0e=50,eL=300;function o0e(e,t){const[n,r]=C.exports.useState(!1),[i,o]=C.exports.useState(null),[a,s]=C.exports.useState(!0),l=C.exports.useRef(null),d=()=>clearTimeout(l.current);t0e(()=>{i==="increment"&&e(),i==="decrement"&&t()},n?i0e:null);const p=C.exports.useCallback(()=>{a&&e(),l.current=setTimeout(()=>{s(!1),r(!0),o("increment")},eL)},[e,a]),g=C.exports.useCallback(()=>{a&&t(),l.current=setTimeout(()=>{s(!1),r(!0),o("decrement")},eL)},[t,a]),m=C.exports.useCallback(()=>{s(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:p,down:g,stop:m,isSpinning:n}}var a0e=/^[Ee0-9+\-.]$/;function s0e(e){return a0e.test(e)}function l0e(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function u0e(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:i=Number.MIN_SAFE_INTEGER,max:o=Number.MAX_SAFE_INTEGER,step:a=1,isReadOnly:s,isDisabled:l,isRequired:d,isInvalid:p,pattern:g="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:y,id:b,onChange:S,precision:E,name:P,"aria-describedby":k,"aria-label":L,"aria-labelledby":I,onFocus:O,onBlur:N,onInvalid:D,getAriaValueText:F,isValidCharacter:U,format:W,parse:q,...pe}=e,fe=ur(O),ye=ur(N),Pe=ur(D),xe=ur(U??s0e),Y=ur(F),V=Cce(e),{update:ae,increment:oe,decrement:X}=V,[me,ve]=C.exports.useState(!1),Se=!(s||l),He=C.exports.useRef(null),je=C.exports.useRef(null),ut=C.exports.useRef(null),qe=C.exports.useRef(null),at=C.exports.useCallback(_e=>_e.split("").filter(xe).join(""),[xe]),et=C.exports.useCallback(_e=>q?.(_e)??_e,[q]),it=C.exports.useCallback(_e=>(W?.(_e)??_e).toString(),[W]);Gc(()=>{(V.valueAsNumber>o||V.valueAsNumber{if(!He.current)return;if(He.current.value!=V.value){const kt=et(He.current.value);V.setValue(at(kt))}},[et,at]);const At=C.exports.useCallback((_e=a)=>{Se&&oe(_e)},[oe,Se,a]),wt=C.exports.useCallback((_e=a)=>{Se&&X(_e)},[X,Se,a]),Le=o0e(At,wt);JT(ut,"disabled",Le.stop,Le.isSpinning),JT(qe,"disabled",Le.stop,Le.isSpinning);const ot=C.exports.useCallback(_e=>{if(_e.nativeEvent.isComposing)return;const Ne=et(_e.currentTarget.value);ae(at(Ne)),je.current={start:_e.currentTarget.selectionStart,end:_e.currentTarget.selectionEnd}},[ae,at,et]),Et=C.exports.useCallback(_e=>{var kt;fe?.(_e),je.current&&(_e.target.selectionStart=je.current.start??((kt=_e.currentTarget.value)==null?void 0:kt.length),_e.currentTarget.selectionEnd=je.current.end??_e.currentTarget.selectionStart)},[fe]),rt=C.exports.useCallback(_e=>{if(_e.nativeEvent.isComposing)return;l0e(_e,xe)||_e.preventDefault();const kt=pt(_e)*a,Ne=_e.key,nn={ArrowUp:()=>At(kt),ArrowDown:()=>wt(kt),Home:()=>ae(i),End:()=>ae(o)}[Ne];nn&&(_e.preventDefault(),nn(_e))},[xe,a,At,wt,ae,i,o]),pt=_e=>{let kt=1;return(_e.metaKey||_e.ctrlKey)&&(kt=.1),_e.shiftKey&&(kt=10),kt},Sn=C.exports.useMemo(()=>{const _e=Y?.(V.value);if(_e!=null)return _e;const kt=V.value.toString();return kt||void 0},[V.value,Y]),bt=C.exports.useCallback(()=>{let _e=V.value;if(V.value==="")return;/^[eE]/.test(V.value.toString())?V.setValue(""):(V.valueAsNumbero&&(_e=o),V.cast(_e))},[V,o,i]),qt=C.exports.useCallback(()=>{ve(!1),n&&bt()},[n,ve,bt]),wn=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var _e;(_e=He.current)==null||_e.focus()})},[t]),pn=C.exports.useCallback(_e=>{_e.preventDefault(),Le.up(),wn()},[wn,Le]),Me=C.exports.useCallback(_e=>{_e.preventDefault(),Le.down(),wn()},[wn,Le]);Lf(()=>He.current,"wheel",_e=>{var kt;const tt=(((kt=He.current)==null?void 0:kt.ownerDocument)??document).activeElement===He.current;if(!y||!tt)return;_e.preventDefault();const nn=pt(_e)*a,Mn=Math.sign(_e.deltaY);Mn===-1?At(nn):Mn===1&&wt(nn)},{passive:!1});const Ze=C.exports.useCallback((_e={},kt=null)=>{const Ne=l||r&&V.isAtMax;return{..._e,ref:zn(kt,ut),role:"button",tabIndex:-1,onPointerDown:el(_e.onPointerDown,tt=>{tt.button!==0||Ne||pn(tt)}),onPointerLeave:el(_e.onPointerLeave,Le.stop),onPointerUp:el(_e.onPointerUp,Le.stop),disabled:Ne,"aria-disabled":aS(Ne)}},[V.isAtMax,r,pn,Le.stop,l]),Kt=C.exports.useCallback((_e={},kt=null)=>{const Ne=l||r&&V.isAtMin;return{..._e,ref:zn(kt,qe),role:"button",tabIndex:-1,onPointerDown:el(_e.onPointerDown,tt=>{tt.button!==0||Ne||Me(tt)}),onPointerLeave:el(_e.onPointerLeave,Le.stop),onPointerUp:el(_e.onPointerUp,Le.stop),disabled:Ne,"aria-disabled":aS(Ne)}},[V.isAtMin,r,Me,Le.stop,l]),Vt=C.exports.useCallback((_e={},kt=null)=>({name:P,inputMode:m,type:"text",pattern:g,"aria-labelledby":I,"aria-label":L,"aria-describedby":k,id:b,disabled:l,..._e,readOnly:_e.readOnly??s,"aria-readonly":_e.readOnly??s,"aria-required":_e.required??d,required:_e.required??d,ref:zn(He,kt),value:it(V.value),role:"spinbutton","aria-valuemin":i,"aria-valuemax":o,"aria-valuenow":Number.isNaN(V.valueAsNumber)?void 0:V.valueAsNumber,"aria-invalid":aS(p??V.isOutOfRange),"aria-valuetext":Sn,autoComplete:"off",autoCorrect:"off",onChange:el(_e.onChange,ot),onKeyDown:el(_e.onKeyDown,rt),onFocus:el(_e.onFocus,Et,()=>ve(!0)),onBlur:el(_e.onBlur,ye,qt)}),[P,m,g,I,L,it,k,b,l,d,s,p,V.value,V.valueAsNumber,V.isOutOfRange,i,o,Sn,ot,rt,Et,ye,qt]);return{value:it(V.value),valueAsNumber:V.valueAsNumber,isFocused:me,isDisabled:l,isReadOnly:s,getIncrementButtonProps:Ze,getDecrementButtonProps:Kt,getInputProps:Vt,htmlProps:pe}}var[c0e,G4]=xn({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[d0e,u7]=xn({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),qz=Ee(function(t,n){const r=Ai("NumberInput",t),i=hn(t),o=I8(i),{htmlProps:a,...s}=u0e(o),l=C.exports.useMemo(()=>s,[s]);return ne.createElement(d0e,{value:l},ne.createElement(c0e,{value:r},ne.createElement(be.div,{...a,ref:n,className:jz("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});qz.displayName="NumberInput";var f0e=Ee(function(t,n){const r=G4();return ne.createElement(be.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});f0e.displayName="NumberInputStepper";var Kz=Ee(function(t,n){const{getInputProps:r}=u7(),i=r(t,n),o=G4();return ne.createElement(be.input,{...i,className:jz("chakra-numberinput__field",t.className),__css:{width:"100%",...o.field}})});Kz.displayName="NumberInputField";var Zz=be("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),Yz=Ee(function(t,n){const r=G4(),{getDecrementButtonProps:i}=u7(),o=i(t,n);return w(Zz,{...o,__css:r.stepper,children:t.children??w(n0e,{})})});Yz.displayName="NumberDecrementStepper";var Xz=Ee(function(t,n){const{getIncrementButtonProps:r}=u7(),i=r(t,n),o=G4();return w(Zz,{...i,__css:o.stepper,children:t.children??w(r0e,{})})});Xz.displayName="NumberIncrementStepper";var wv=(...e)=>e.filter(Boolean).join(" ");function h0e(e,...t){return p0e(e)?e(...t):e}var p0e=e=>typeof e=="function";function tl(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function g0e(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[m0e,Zf]=xn({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[v0e,Cv]=xn({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),sp={click:"click",hover:"hover"};function y0e(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:i,returnFocusOnClose:o=!0,autoFocus:a=!0,arrowSize:s,arrowShadowColor:l,trigger:d=sp.click,openDelay:p=200,closeDelay:g=200,isLazy:m,lazyBehavior:y="unmount",computePositionOnMount:b,...S}=e,{isOpen:E,onClose:P,onOpen:k,onToggle:L}=JD(e),I=C.exports.useRef(null),O=C.exports.useRef(null),N=C.exports.useRef(null),D=C.exports.useRef(!1),F=C.exports.useRef(!1);E&&(F.current=!0);const[U,W]=C.exports.useState(!1),[q,pe]=C.exports.useState(!1),fe=C.exports.useId(),ye=i??fe,[Pe,xe,Y,V]=["popover-trigger","popover-content","popover-header","popover-body"].map(ot=>`${ot}-${ye}`),{referenceRef:ae,getArrowProps:oe,getPopperProps:X,getArrowInnerProps:me,forceUpdate:ve}=QD({...S,enabled:E||!!b}),Se=Qfe({isOpen:E,ref:N});Mce({enabled:E,ref:O}),Tde(N,{focusRef:O,visible:E,shouldFocus:o&&d===sp.click}),Ade(N,{focusRef:r,visible:E,shouldFocus:a&&d===sp.click});const He=ez({wasSelected:F.current,enabled:m,mode:y,isSelected:Se.present}),je=C.exports.useCallback((ot={},Et=null)=>{const rt={...ot,style:{...ot.style,transformOrigin:$r.transformOrigin.varRef,[$r.arrowSize.var]:s?`${s}px`:void 0,[$r.arrowShadowColor.var]:l},ref:zn(N,Et),children:He?ot.children:null,id:xe,tabIndex:-1,role:"dialog",onKeyDown:tl(ot.onKeyDown,pt=>{n&&pt.key==="Escape"&&P()}),onBlur:tl(ot.onBlur,pt=>{const Sn=tL(pt),bt=sS(N.current,Sn),qt=sS(O.current,Sn);E&&t&&(!bt&&!qt)&&P()}),"aria-labelledby":U?Y:void 0,"aria-describedby":q?V:void 0};return d===sp.hover&&(rt.role="tooltip",rt.onMouseEnter=tl(ot.onMouseEnter,()=>{D.current=!0}),rt.onMouseLeave=tl(ot.onMouseLeave,pt=>{pt.nativeEvent.relatedTarget!==null&&(D.current=!1,setTimeout(()=>P(),g))})),rt},[He,xe,U,Y,q,V,d,n,P,E,t,g,l,s]),ut=C.exports.useCallback((ot={},Et=null)=>X({...ot,style:{visibility:E?"visible":"hidden",...ot.style}},Et),[E,X]),qe=C.exports.useCallback((ot,Et=null)=>({...ot,ref:zn(Et,I,ae)}),[I,ae]),at=C.exports.useRef(),et=C.exports.useRef(),it=C.exports.useCallback(ot=>{I.current==null&&ae(ot)},[ae]),At=C.exports.useCallback((ot={},Et=null)=>{const rt={...ot,ref:zn(O,Et,it),id:Pe,"aria-haspopup":"dialog","aria-expanded":E,"aria-controls":xe};return d===sp.click&&(rt.onClick=tl(ot.onClick,L)),d===sp.hover&&(rt.onFocus=tl(ot.onFocus,()=>{at.current===void 0&&k()}),rt.onBlur=tl(ot.onBlur,pt=>{const Sn=tL(pt),bt=!sS(N.current,Sn);E&&t&&bt&&P()}),rt.onKeyDown=tl(ot.onKeyDown,pt=>{pt.key==="Escape"&&P()}),rt.onMouseEnter=tl(ot.onMouseEnter,()=>{D.current=!0,at.current=window.setTimeout(()=>k(),p)}),rt.onMouseLeave=tl(ot.onMouseLeave,()=>{D.current=!1,at.current&&(clearTimeout(at.current),at.current=void 0),et.current=window.setTimeout(()=>{D.current===!1&&P()},g)})),rt},[Pe,E,xe,d,it,L,k,t,P,p,g]);C.exports.useEffect(()=>()=>{at.current&&clearTimeout(at.current),et.current&&clearTimeout(et.current)},[]);const wt=C.exports.useCallback((ot={},Et=null)=>({...ot,id:Y,ref:zn(Et,rt=>{W(!!rt)})}),[Y]),Le=C.exports.useCallback((ot={},Et=null)=>({...ot,id:V,ref:zn(Et,rt=>{pe(!!rt)})}),[V]);return{forceUpdate:ve,isOpen:E,onAnimationComplete:Se.onComplete,onClose:P,getAnchorProps:qe,getArrowProps:oe,getArrowInnerProps:me,getPopoverPositionerProps:ut,getPopoverProps:je,getTriggerProps:At,getHeaderProps:wt,getBodyProps:Le}}function sS(e,t){return e===t||e?.contains(t)}function tL(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function j4(e){const t=Ai("Popover",e),{children:n,...r}=hn(e),i=E0(),o=y0e({...r,direction:i.direction});return w(m0e,{value:o,children:w(v0e,{value:t,children:h0e(n,{isOpen:o.isOpen,onClose:o.onClose,forceUpdate:o.forceUpdate})})})}j4.displayName="Popover";function q4(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:i,getArrowInnerProps:o}=Zf(),a=Cv(),s=t??n??r;return ne.createElement(be.div,{...i(),className:"chakra-popover__arrow-positioner"},ne.createElement(be.div,{className:wv("chakra-popover__arrow",e.className),...o(e),__css:{...a.arrow,"--popper-arrow-bg":s?`colors.${s}, ${s}`:void 0}}))}q4.displayName="PopoverArrow";var x0e=Ee(function(t,n){const{getBodyProps:r}=Zf(),i=Cv();return ne.createElement(be.div,{...r(t,n),className:wv("chakra-popover__body",t.className),__css:i.body})});x0e.displayName="PopoverBody";var b0e=Ee(function(t,n){const{onClose:r}=Zf(),i=Cv();return w(H4,{size:"sm",onClick:r,className:wv("chakra-popover__close-btn",t.className),__css:i.closeButton,ref:n,...t})});b0e.displayName="PopoverCloseButton";function S0e(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var w0e={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},C0e=be(Wa.section),Qz=Ee(function(t,n){const{variants:r=w0e,...i}=t,{isOpen:o}=Zf();return ne.createElement(C0e,{ref:n,variants:S0e(r),initial:!1,animate:o?"enter":"exit",...i})});Qz.displayName="PopoverTransition";var K4=Ee(function(t,n){const{rootProps:r,motionProps:i,...o}=t,{getPopoverProps:a,getPopoverPositionerProps:s,onAnimationComplete:l}=Zf(),d=Cv(),p={position:"relative",display:"flex",flexDirection:"column",...d.content};return ne.createElement(be.div,{...s(r),__css:d.popper,className:"chakra-popover__popper"},w(Qz,{...i,...a(o,n),onAnimationComplete:g0e(l,o.onAnimationComplete),className:wv("chakra-popover__content",t.className),__css:p}))});K4.displayName="PopoverContent";var Jz=Ee(function(t,n){const{getHeaderProps:r}=Zf(),i=Cv();return ne.createElement(be.header,{...r(t,n),className:wv("chakra-popover__header",t.className),__css:i.header})});Jz.displayName="PopoverHeader";function Z4(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=Zf();return C.exports.cloneElement(t,n(t.props,t.ref))}Z4.displayName="PopoverTrigger";function _0e(e,t,n){return(e-t)*100/(n-t)}var k0e=cv({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}}),E0e=cv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),P0e=cv({"0%":{left:"-40%"},"100%":{left:"100%"}}),T0e=cv({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function eF(e){const{value:t=0,min:n,max:r,valueText:i,getValueText:o,isIndeterminate:a}=e,s=_0e(t,n,r);return{bind:{"data-indeterminate":a?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":a?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof o=="function"?o(t,s):i})(),role:"progressbar"},percent:s,value:t}}var tF=e=>{const{size:t,isIndeterminate:n,...r}=e;return ne.createElement(be.svg,{viewBox:"0 0 100 100",__css:{width:t,height:t,animation:n?`${E0e} 2s linear infinite`:void 0},...r})};tF.displayName="Shape";var $6=e=>ne.createElement(be.circle,{cx:50,cy:50,r:42,fill:"transparent",...e});$6.displayName="Circle";var L0e=Ee((e,t)=>{const{size:n="48px",max:r=100,min:i=0,valueText:o,getValueText:a,value:s,capIsRound:l,children:d,thickness:p="10px",color:g="#0078d4",trackColor:m="#edebe9",isIndeterminate:y,...b}=e,S=eF({min:i,max:r,value:s,valueText:o,getValueText:a,isIndeterminate:y}),E=y?void 0:(S.percent??0)*2.64,P=E==null?void 0:`${E} ${264-E}`,k=y?{css:{animation:`${k0e} 1.5s linear infinite`}}:{strokeDashoffset:66,strokeDasharray:P,transitionProperty:"stroke-dasharray, stroke",transitionDuration:"0.6s",transitionTimingFunction:"ease"},L={display:"inline-block",position:"relative",verticalAlign:"middle",fontSize:n};return ne.createElement(be.div,{ref:t,className:"chakra-progress",...S.bind,...b,__css:L},te(tF,{size:n,isIndeterminate:y,children:[w($6,{stroke:m,strokeWidth:p,className:"chakra-progress__track"}),w($6,{stroke:g,strokeWidth:p,className:"chakra-progress__indicator",strokeLinecap:l?"round":void 0,opacity:S.value===0&&!y?0:void 0,...k})]}),d)});L0e.displayName="CircularProgress";var[A0e,I0e]=xn({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),M0e=Ee((e,t)=>{const{min:n,max:r,value:i,isIndeterminate:o,...a}=e,s=eF({value:i,min:n,max:r,isIndeterminate:o}),d={height:"100%",...I0e().filledTrack};return ne.createElement(be.div,{ref:t,style:{width:`${s.percent}%`,...a.style},...s.bind,...a,__css:d})}),nF=Ee((e,t)=>{var n;const{value:r,min:i=0,max:o=100,hasStripe:a,isAnimated:s,children:l,borderRadius:d,isIndeterminate:p,"aria-label":g,"aria-labelledby":m,...y}=hn(e),b=Ai("Progress",e),S=d??((n=b.track)==null?void 0:n.borderRadius),E={animation:`${T0e} 1s linear infinite`},L={...!p&&a&&s&&E,...p&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${P0e} 1s ease infinite normal none running`}},I={overflow:"hidden",position:"relative",...b.track};return ne.createElement(be.div,{ref:t,borderRadius:S,__css:I,...y},te(A0e,{value:b,children:[w(M0e,{"aria-label":g,"aria-labelledby":m,min:i,max:o,value:r,isIndeterminate:p,css:L,borderRadius:S}),l]}))});nF.displayName="Progress";var R0e=be("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});R0e.displayName="CircularProgressLabel";var O0e=(...e)=>e.filter(Boolean).join(" "),N0e=e=>e?"":void 0;function D0e(e,t){const n={},r={};for(const[i,o]of Object.entries(e))t.includes(i)?n[i]=o:r[i]=o;return[n,r]}var rF=Ee(function(t,n){const{children:r,placeholder:i,className:o,...a}=t;return ne.createElement(be.select,{...a,ref:n,className:O0e("chakra-select",o)},i&&w("option",{value:"",children:i}),r)});rF.displayName="SelectField";var iF=Ee((e,t)=>{var n;const r=Ai("Select",e),{rootProps:i,placeholder:o,icon:a,color:s,height:l,h:d,minH:p,minHeight:g,iconColor:m,iconSize:y,...b}=hn(e),[S,E]=D0e(b,tY),P=A8(E),k={width:"100%",height:"fit-content",position:"relative",color:s},L={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return ne.createElement(be.div,{className:"chakra-select__wrapper",__css:k,...S,...i},w(rF,{ref:t,height:d??l,minH:p??g,placeholder:o,...P,__css:L,children:e.children}),w(oF,{"data-disabled":N0e(P.disabled),...(m||s)&&{color:m||s},__css:r.icon,...y&&{fontSize:y},children:a}))});iF.displayName="Select";var z0e=e=>w("svg",{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),F0e=be("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),oF=e=>{const{children:t=w(z0e,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return w(F0e,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};oF.displayName="SelectIcon";function B0e(e,t,n,r){return e.addEventListener(t,n,r),()=>{e.removeEventListener(t,n,r)}}function $0e(e){const t=W0e(e);return typeof t.PointerEvent<"u"&&e instanceof t.PointerEvent?e.pointerType==="mouse":e instanceof t.MouseEvent}function aF(e){return!!e.touches}function H0e(e){return aF(e)&&e.touches.length>1}function W0e(e){return e.view??window}function V0e(e,t="page"){const n=e.touches[0]||e.changedTouches[0];return{x:n[`${t}X`],y:n[`${t}Y`]}}function U0e(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function sF(e,t="page"){return aF(e)?V0e(e,t):U0e(e,t)}function G0e(e){return t=>{const n=$0e(t);(!n||n&&t.button===0)&&e(t)}}function j0e(e,t=!1){function n(i){e(i,{point:sF(i)})}return t?G0e(n):n}function n3(e,t,n,r){return B0e(e,t,j0e(n,t==="pointerdown"),r)}function lF(e){const t=C.exports.useRef(null);return t.current=e,t}var q0e=class{history=[];startEvent=null;lastEvent=null;lastEventInfo=null;handlers={};removeListeners=()=>{};threshold=3;win;constructor(e,t,n){if(this.win=e.view??window,H0e(e))return;this.handlers=t,n&&(this.threshold=n),e.stopPropagation(),e.preventDefault();const r={point:sF(e)},{timestamp:i}=RE();this.history=[{...r.point,timestamp:i}];const{onSessionStart:o}=t;o?.(e,lS(r,this.history)),this.removeListeners=Y0e(n3(this.win,"pointermove",this.onPointerMove),n3(this.win,"pointerup",this.onPointerUp),n3(this.win,"pointercancel",this.onPointerUp))}updatePoint=()=>{if(!(this.lastEvent&&this.lastEventInfo))return;const e=lS(this.lastEventInfo,this.history),t=this.startEvent!==null,n=X0e(e.offset,{x:0,y:0})>=this.threshold;if(!t&&!n)return;const{timestamp:r}=RE();this.history.push({...e.point,timestamp:r});const{onStart:i,onMove:o}=this.handlers;t||(i?.(this.lastEvent,e),this.startEvent=this.lastEvent),o?.(this.lastEvent,e)};onPointerMove=(e,t)=>{this.lastEvent=e,this.lastEventInfo=t,hX.update(this.updatePoint,!0)};onPointerUp=(e,t)=>{const n=lS(t,this.history),{onEnd:r,onSessionEnd:i}=this.handlers;i?.(e,n),this.end(),!(!r||!this.startEvent)&&r?.(e,n)};updateHandlers(e){this.handlers=e}end(){var e;(e=this.removeListeners)==null||e.call(this),pX.update(this.updatePoint)}};function nL(e,t){return{x:e.x-t.x,y:e.y-t.y}}function lS(e,t){return{point:e.point,delta:nL(e.point,t[t.length-1]),offset:nL(e.point,t[0]),velocity:Z0e(t,.1)}}var K0e=e=>e*1e3;function Z0e(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=e[e.length-1];for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>K0e(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function Y0e(...e){return t=>e.reduce((n,r)=>r(n),t)}function uS(e,t){return Math.abs(e-t)}function rL(e){return"x"in e&&"y"in e}function X0e(e,t){if(typeof e=="number"&&typeof t=="number")return uS(e,t);if(rL(e)&&rL(t)){const n=uS(e.x,t.x),r=uS(e.y,t.y);return Math.sqrt(n**2+r**2)}return 0}function uF(e,t){const{onPan:n,onPanStart:r,onPanEnd:i,onPanSessionStart:o,onPanSessionEnd:a,threshold:s}=t,l=Boolean(n||r||i||o||a),d=C.exports.useRef(null),p=lF({onSessionStart:o,onSessionEnd:a,onStart:r,onMove:n,onEnd(g,m){d.current=null,i?.(g,m)}});C.exports.useEffect(()=>{var g;(g=d.current)==null||g.updateHandlers(p.current)}),C.exports.useEffect(()=>{const g=e.current;if(!g||!l)return;function m(y){d.current=new q0e(y,p.current,s)}return n3(g,"pointerdown",m)},[e,l,p,s]),C.exports.useEffect(()=>()=>{var g;(g=d.current)==null||g.end(),d.current=null},[])}function Q0e(e,t){if(!e){t(void 0);return}t({width:e.offsetWidth,height:e.offsetHeight});const n=e.ownerDocument.defaultView??window,r=new n.ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const[o]=i;let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;t({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}var J0e=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect;function e1e(e,t){var n;if(!e||!e.parentElement)return;const r=((n=e.ownerDocument)==null?void 0:n.defaultView)??window,i=new r.MutationObserver(()=>{t()});return i.observe(e.parentElement,{childList:!0}),()=>{i.disconnect()}}function cF({getNodes:e,observeMutation:t=!0}){const[n,r]=C.exports.useState([]),[i,o]=C.exports.useState(0);return J0e(()=>{const a=e(),s=a.map((l,d)=>Q0e(l,p=>{r(g=>[...g.slice(0,d),p,...g.slice(d+1)])}));if(t){const l=a[0];s.push(e1e(l,()=>{o(d=>d+1)}))}return()=>{s.forEach(l=>{l?.()})}},[i]),n}function t1e(e){return typeof e=="object"&&e!==null&&"current"in e}function n1e(e){const[t]=cF({observeMutation:!1,getNodes(){return[t1e(e)?e.current:e]}});return t}var r1e=Object.getOwnPropertyNames,i1e=(e,t)=>function(){return e&&(t=(0,e[r1e(e)[0]])(e=0)),t},rd=i1e({"../../../react-shim.js"(){}});rd();rd();rd();var Aa=e=>e?"":void 0,Zp=e=>e?!0:void 0,id=(...e)=>e.filter(Boolean).join(" ");rd();function Yp(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}rd();rd();function o1e(e){return{root:`slider-root-${e}`,getThumb:t=>`slider-thumb-${e}-${t}`,getInput:t=>`slider-input-${e}-${t}`,track:`slider-track-${e}`,innerTrack:`slider-filled-track-${e}`,getMarker:t=>`slider-marker-${e}-${t}`,output:`slider-output-${e}`}}function kg(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}var r3={width:0,height:0},ry=e=>e||r3;function dF(e){const{orientation:t,thumbPercents:n,thumbRects:r,isReversed:i}=e,o=S=>{const E=r[S]??r3;return{position:"absolute",userSelect:"none",WebkitUserSelect:"none",MozUserSelect:"none",msUserSelect:"none",touchAction:"none",...kg({orientation:t,vertical:{bottom:`calc(${n[S]}% - ${E.height/2}px)`},horizontal:{left:`calc(${n[S]}% - ${E.width/2}px)`}})}},a=t==="vertical"?r.reduce((S,E)=>ry(S).height>ry(E).height?S:E,r3):r.reduce((S,E)=>ry(S).width>ry(E).width?S:E,r3),s={position:"relative",touchAction:"none",WebkitTapHighlightColor:"rgba(0,0,0,0)",userSelect:"none",outline:0,...kg({orientation:t,vertical:a?{paddingLeft:a.width/2,paddingRight:a.width/2}:{},horizontal:a?{paddingTop:a.height/2,paddingBottom:a.height/2}:{}})},l={position:"absolute",...kg({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",height:"100%"},horizontal:{top:"50%",transform:"translateY(-50%)",width:"100%"}})},d=n.length===1,p=[0,i?100-n[0]:n[0]],g=d?p:n;let m=g[0];!d&&i&&(m=100-m);const y=Math.abs(g[g.length-1]-g[0]),b={...l,...kg({orientation:t,vertical:i?{height:`${y}%`,top:`${m}%`}:{height:`${y}%`,bottom:`${m}%`},horizontal:i?{width:`${y}%`,right:`${m}%`}:{width:`${y}%`,left:`${m}%`}})};return{trackStyle:l,innerTrackStyle:b,rootStyle:s,getThumbStyle:o}}function fF(e){const{isReversed:t,direction:n,orientation:r}=e;return n==="ltr"||r==="vertical"?t:!t}function a1e(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:S,"aria-valuetext":E,"aria-label":P,"aria-labelledby":k,name:L,focusThumbOnChange:I=!0,minStepsBetweenThumbs:O=0,...N}=e,D=ur(m),F=ur(y),U=ur(S),W=fF({isReversed:a,direction:s,orientation:l}),[q,pe]=w4({value:i,defaultValue:o??[25,75],onChange:r});if(!Array.isArray(q))throw new TypeError(`[range-slider] You passed an invalid value for \`value\` or \`defaultValue\`, expected \`Array\` but got \`${typeof q}\``);const[fe,ye]=C.exports.useState(!1),[Pe,xe]=C.exports.useState(!1),[Y,V]=C.exports.useState(-1),ae=!(p||g),oe=C.exports.useRef(q),X=q.map(Fe=>Gp(Fe,t,n)),me=O*b,ve=s1e(X,t,n,me),Se=C.exports.useRef({eventSource:null,value:[],valueBounds:[]});Se.current.value=X,Se.current.valueBounds=ve;const He=X.map(Fe=>n-Fe+t),ut=(W?He:X).map(Fe=>c5(Fe,t,n)),qe=l==="vertical",at=C.exports.useRef(null),et=C.exports.useRef(null),it=cF({getNodes(){const Fe=et.current,lt=Fe?.querySelectorAll("[role=slider]");return lt?Array.from(lt):[]}}),At=C.exports.useId(),Le=o1e(d??At),ot=C.exports.useCallback(Fe=>{var lt;if(!at.current)return;Se.current.eventSource="pointer";const Xe=at.current.getBoundingClientRect(),{clientX:Lt,clientY:Zt}=((lt=Fe.touches)==null?void 0:lt[0])??Fe,Zn=qe?Xe.bottom-Zt:Lt-Xe.left,ao=qe?Xe.height:Xe.width;let ui=Zn/ao;return W&&(ui=1-ui),mD(ui,t,n)},[qe,W,n,t]),Et=(n-t)/10,rt=b||(n-t)/100,pt=C.exports.useMemo(()=>({setValueAtIndex(Fe,lt){if(!ae)return;const Xe=Se.current.valueBounds[Fe];lt=parseFloat(L6(lt,Xe.min,rt)),lt=Gp(lt,Xe.min,Xe.max);const Lt=[...Se.current.value];Lt[Fe]=lt,pe(Lt)},setActiveIndex:V,stepUp(Fe,lt=rt){const Xe=Se.current.value[Fe],Lt=W?Xe-lt:Xe+lt;pt.setValueAtIndex(Fe,Lt)},stepDown(Fe,lt=rt){const Xe=Se.current.value[Fe],Lt=W?Xe+lt:Xe-lt;pt.setValueAtIndex(Fe,Lt)},reset(){pe(oe.current)}}),[rt,W,pe,ae]),Sn=C.exports.useCallback(Fe=>{const lt=Fe.key,Lt={ArrowRight:()=>pt.stepUp(Y),ArrowUp:()=>pt.stepUp(Y),ArrowLeft:()=>pt.stepDown(Y),ArrowDown:()=>pt.stepDown(Y),PageUp:()=>pt.stepUp(Y,Et),PageDown:()=>pt.stepDown(Y,Et),Home:()=>{const{min:Zt}=ve[Y];pt.setValueAtIndex(Y,Zt)},End:()=>{const{max:Zt}=ve[Y];pt.setValueAtIndex(Y,Zt)}}[lt];Lt&&(Fe.preventDefault(),Fe.stopPropagation(),Lt(Fe),Se.current.eventSource="keyboard")},[pt,Y,Et,ve]),{getThumbStyle:bt,rootStyle:qt,trackStyle:wn,innerTrackStyle:pn}=C.exports.useMemo(()=>dF({isReversed:W,orientation:l,thumbRects:it,thumbPercents:ut}),[W,l,ut,it]),Me=C.exports.useCallback(Fe=>{var lt;const Xe=Fe??Y;if(Xe!==-1&&I){const Lt=Le.getThumb(Xe),Zt=(lt=et.current)==null?void 0:lt.ownerDocument.getElementById(Lt);Zt&&setTimeout(()=>Zt.focus())}},[I,Y,Le]);Gc(()=>{Se.current.eventSource==="keyboard"&&F?.(Se.current.value)},[X,F]);const Ze=Fe=>{const lt=ot(Fe)||0,Xe=Se.current.value.map(ui=>Math.abs(ui-lt)),Lt=Math.min(...Xe);let Zt=Xe.indexOf(Lt);const Zn=Xe.filter(ui=>ui===Lt);Zn.length>1&<>Se.current.value[Zt]&&(Zt=Zt+Zn.length-1),V(Zt),pt.setValueAtIndex(Zt,lt),Me(Zt)},Kt=Fe=>{if(Y==-1)return;const lt=ot(Fe)||0;V(Y),pt.setValueAtIndex(Y,lt),Me(Y)};uF(et,{onPanSessionStart(Fe){!ae||(ye(!0),Ze(Fe),D?.(Se.current.value))},onPanSessionEnd(){!ae||(ye(!1),F?.(Se.current.value))},onPan(Fe){!ae||Kt(Fe)}});const Vt=C.exports.useCallback((Fe={},lt=null)=>({...Fe,...N,id:Le.root,ref:zn(lt,et),tabIndex:-1,"aria-disabled":Zp(p),"data-focused":Aa(Pe),style:{...Fe.style,...qt}}),[N,p,Pe,qt,Le]),_e=C.exports.useCallback((Fe={},lt=null)=>({...Fe,ref:zn(lt,at),id:Le.track,"data-disabled":Aa(p),style:{...Fe.style,...wn}}),[p,wn,Le]),kt=C.exports.useCallback((Fe={},lt=null)=>({...Fe,ref:lt,id:Le.innerTrack,style:{...Fe.style,...pn}}),[pn,Le]),Ne=C.exports.useCallback((Fe,lt=null)=>{const{index:Xe,...Lt}=Fe,Zt=X[Xe];if(Zt==null)throw new TypeError(`[range-slider > thumb] Cannot find value at index \`${Xe}\`. The \`value\` or \`defaultValue\` length is : ${X.length}`);const Zn=ve[Xe];return{...Lt,ref:lt,role:"slider",tabIndex:ae?0:void 0,id:Le.getThumb(Xe),"data-active":Aa(fe&&Y===Xe),"aria-valuetext":U?.(Zt)??E?.[Xe],"aria-valuemin":Zn.min,"aria-valuemax":Zn.max,"aria-valuenow":Zt,"aria-orientation":l,"aria-disabled":Zp(p),"aria-readonly":Zp(g),"aria-label":P?.[Xe],"aria-labelledby":P?.[Xe]?void 0:k?.[Xe],style:{...Fe.style,...bt(Xe)},onKeyDown:Yp(Fe.onKeyDown,Sn),onFocus:Yp(Fe.onFocus,()=>{xe(!0),V(Xe)}),onBlur:Yp(Fe.onBlur,()=>{xe(!1),V(-1)})}},[Le,X,ve,ae,fe,Y,U,E,l,p,g,P,k,bt,Sn,xe]),tt=C.exports.useCallback((Fe={},lt=null)=>({...Fe,ref:lt,id:Le.output,htmlFor:X.map((Xe,Lt)=>Le.getThumb(Lt)).join(" "),"aria-live":"off"}),[Le,X]),nn=C.exports.useCallback((Fe,lt=null)=>{const{value:Xe,...Lt}=Fe,Zt=!(Xen),Zn=Xe>=X[0]&&Xe<=X[X.length-1];let ao=c5(Xe,t,n);ao=W?100-ao:ao;const ui={position:"absolute",pointerEvents:"none",...kg({orientation:l,vertical:{bottom:`${ao}%`},horizontal:{left:`${ao}%`}})};return{...Lt,ref:lt,id:Le.getMarker(Fe.value),role:"presentation","aria-hidden":!0,"data-disabled":Aa(p),"data-invalid":Aa(!Zt),"data-highlighted":Aa(Zn),style:{...Fe.style,...ui}}},[p,W,n,t,l,X,Le]),Mn=C.exports.useCallback((Fe,lt=null)=>{const{index:Xe,...Lt}=Fe;return{...Lt,ref:lt,id:Le.getInput(Xe),type:"hidden",value:X[Xe],name:Array.isArray(L)?L[Xe]:`${L}-${Xe}`}},[L,X,Le]);return{state:{value:X,isFocused:Pe,isDragging:fe,getThumbPercent:Fe=>ut[Fe],getThumbMinValue:Fe=>ve[Fe].min,getThumbMaxValue:Fe=>ve[Fe].max},actions:pt,getRootProps:Vt,getTrackProps:_e,getInnerTrackProps:kt,getThumbProps:Ne,getMarkerProps:nn,getInputProps:Mn,getOutputProps:tt}}function s1e(e,t,n,r){return e.map((i,o)=>{const a=o===0?t:e[o-1]+r,s=o===e.length-1?n:e[o+1]-r;return{min:a,max:s}})}var[l1e,Y4]=xn({name:"SliderContext",errorMessage:"useSliderContext: `context` is undefined. Seems you forgot to wrap all slider components within "}),[u1e,c7]=xn({name:"RangeSliderStylesContext",errorMessage:`useRangeSliderStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),hF=Ee(function(t,n){const r=Ai("Slider",t),i=hn(t),{direction:o}=E0();i.direction=o;const{getRootProps:a,...s}=a1e(i),l=C.exports.useMemo(()=>({...s,name:t.name}),[s,t.name]);return ne.createElement(l1e,{value:l},ne.createElement(u1e,{value:r},ne.createElement(be.div,{...a({},n),className:"chakra-slider",__css:r.container},t.children)))});hF.defaultProps={orientation:"horizontal"};hF.displayName="RangeSlider";var c1e=Ee(function(t,n){const{getThumbProps:r,getInputProps:i,name:o}=Y4(),a=c7(),s=r(t,n);return ne.createElement(be.div,{...s,className:id("chakra-slider__thumb",t.className),__css:a.thumb},s.children,o&&w("input",{...i({index:t.index})}))});c1e.displayName="RangeSliderThumb";var d1e=Ee(function(t,n){const{getTrackProps:r}=Y4(),i=c7(),o=r(t,n);return ne.createElement(be.div,{...o,className:id("chakra-slider__track",t.className),__css:i.track,"data-testid":"chakra-range-slider-track"})});d1e.displayName="RangeSliderTrack";var f1e=Ee(function(t,n){const{getInnerTrackProps:r}=Y4(),i=c7(),o=r(t,n);return ne.createElement(be.div,{...o,className:"chakra-slider__filled-track",__css:i.filledTrack})});f1e.displayName="RangeSliderFilledTrack";var h1e=Ee(function(t,n){const{getMarkerProps:r}=Y4(),i=r(t,n);return ne.createElement(be.div,{...i,className:id("chakra-slider__marker",t.className)})});h1e.displayName="RangeSliderMark";rd();rd();function p1e(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:S,"aria-valuetext":E,"aria-label":P,"aria-labelledby":k,name:L,focusThumbOnChange:I=!0,...O}=e,N=ur(m),D=ur(y),F=ur(S),U=fF({isReversed:a,direction:s,orientation:l}),[W,q]=w4({value:i,defaultValue:o??m1e(t,n),onChange:r}),[pe,fe]=C.exports.useState(!1),[ye,Pe]=C.exports.useState(!1),xe=!(p||g),Y=(n-t)/10,V=b||(n-t)/100,ae=Gp(W,t,n),oe=n-ae+t,me=c5(U?oe:ae,t,n),ve=l==="vertical",Se=lF({min:t,max:n,step:b,isDisabled:p,value:ae,isInteractive:xe,isReversed:U,isVertical:ve,eventSource:null,focusThumbOnChange:I,orientation:l}),He=C.exports.useRef(null),je=C.exports.useRef(null),ut=C.exports.useRef(null),qe=C.exports.useId(),at=d??qe,[et,it]=[`slider-thumb-${at}`,`slider-track-${at}`],At=C.exports.useCallback(Ne=>{var tt;if(!He.current)return;const nn=Se.current;nn.eventSource="pointer";const Mn=He.current.getBoundingClientRect(),{clientX:Fe,clientY:lt}=((tt=Ne.touches)==null?void 0:tt[0])??Ne,Xe=ve?Mn.bottom-lt:Fe-Mn.left,Lt=ve?Mn.height:Mn.width;let Zt=Xe/Lt;U&&(Zt=1-Zt);let Zn=mD(Zt,nn.min,nn.max);return nn.step&&(Zn=parseFloat(L6(Zn,nn.min,nn.step))),Zn=Gp(Zn,nn.min,nn.max),Zn},[ve,U,Se]),wt=C.exports.useCallback(Ne=>{const tt=Se.current;!tt.isInteractive||(Ne=parseFloat(L6(Ne,tt.min,V)),Ne=Gp(Ne,tt.min,tt.max),q(Ne))},[V,q,Se]),Le=C.exports.useMemo(()=>({stepUp(Ne=V){const tt=U?ae-Ne:ae+Ne;wt(tt)},stepDown(Ne=V){const tt=U?ae+Ne:ae-Ne;wt(tt)},reset(){wt(o||0)},stepTo(Ne){wt(Ne)}}),[wt,U,ae,V,o]),ot=C.exports.useCallback(Ne=>{const tt=Se.current,Mn={ArrowRight:()=>Le.stepUp(),ArrowUp:()=>Le.stepUp(),ArrowLeft:()=>Le.stepDown(),ArrowDown:()=>Le.stepDown(),PageUp:()=>Le.stepUp(Y),PageDown:()=>Le.stepDown(Y),Home:()=>wt(tt.min),End:()=>wt(tt.max)}[Ne.key];Mn&&(Ne.preventDefault(),Ne.stopPropagation(),Mn(Ne),tt.eventSource="keyboard")},[Le,wt,Y,Se]),Et=F?.(ae)??E,rt=n1e(je),{getThumbStyle:pt,rootStyle:Sn,trackStyle:bt,innerTrackStyle:qt}=C.exports.useMemo(()=>{const Ne=Se.current,tt=rt??{width:0,height:0};return dF({isReversed:U,orientation:Ne.orientation,thumbRects:[tt],thumbPercents:[me]})},[U,rt,me,Se]),wn=C.exports.useCallback(()=>{Se.current.focusThumbOnChange&&setTimeout(()=>{var tt;return(tt=je.current)==null?void 0:tt.focus()})},[Se]);Gc(()=>{const Ne=Se.current;wn(),Ne.eventSource==="keyboard"&&D?.(Ne.value)},[ae,D]);function pn(Ne){const tt=At(Ne);tt!=null&&tt!==Se.current.value&&q(tt)}uF(ut,{onPanSessionStart(Ne){const tt=Se.current;!tt.isInteractive||(fe(!0),wn(),pn(Ne),N?.(tt.value))},onPanSessionEnd(){const Ne=Se.current;!Ne.isInteractive||(fe(!1),D?.(Ne.value))},onPan(Ne){!Se.current.isInteractive||pn(Ne)}});const Me=C.exports.useCallback((Ne={},tt=null)=>({...Ne,...O,ref:zn(tt,ut),tabIndex:-1,"aria-disabled":Zp(p),"data-focused":Aa(ye),style:{...Ne.style,...Sn}}),[O,p,ye,Sn]),Ze=C.exports.useCallback((Ne={},tt=null)=>({...Ne,ref:zn(tt,He),id:it,"data-disabled":Aa(p),style:{...Ne.style,...bt}}),[p,it,bt]),Kt=C.exports.useCallback((Ne={},tt=null)=>({...Ne,ref:tt,style:{...Ne.style,...qt}}),[qt]),Vt=C.exports.useCallback((Ne={},tt=null)=>({...Ne,ref:zn(tt,je),role:"slider",tabIndex:xe?0:void 0,id:et,"data-active":Aa(pe),"aria-valuetext":Et,"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":ae,"aria-orientation":l,"aria-disabled":Zp(p),"aria-readonly":Zp(g),"aria-label":P,"aria-labelledby":P?void 0:k,style:{...Ne.style,...pt(0)},onKeyDown:Yp(Ne.onKeyDown,ot),onFocus:Yp(Ne.onFocus,()=>Pe(!0)),onBlur:Yp(Ne.onBlur,()=>Pe(!1))}),[xe,et,pe,Et,t,n,ae,l,p,g,P,k,pt,ot]),_e=C.exports.useCallback((Ne,tt=null)=>{const nn=!(Ne.valuen),Mn=ae>=Ne.value,Fe=c5(Ne.value,t,n),lt={position:"absolute",pointerEvents:"none",...g1e({orientation:l,vertical:{bottom:U?`${100-Fe}%`:`${Fe}%`},horizontal:{left:U?`${100-Fe}%`:`${Fe}%`}})};return{...Ne,ref:tt,role:"presentation","aria-hidden":!0,"data-disabled":Aa(p),"data-invalid":Aa(!nn),"data-highlighted":Aa(Mn),style:{...Ne.style,...lt}}},[p,U,n,t,l,ae]),kt=C.exports.useCallback((Ne={},tt=null)=>({...Ne,ref:tt,type:"hidden",value:ae,name:L}),[L,ae]);return{state:{value:ae,isFocused:ye,isDragging:pe},actions:Le,getRootProps:Me,getTrackProps:Ze,getInnerTrackProps:Kt,getThumbProps:Vt,getMarkerProps:_e,getInputProps:kt}}function g1e(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}function m1e(e,t){return t"}),[y1e,Q4]=xn({name:"SliderStylesContext",hookName:"useSliderStyles",providerName:""}),d7=Ee((e,t)=>{const n=Ai("Slider",e),r=hn(e),{direction:i}=E0();r.direction=i;const{getInputProps:o,getRootProps:a,...s}=p1e(r),l=a(),d=o({},t);return ne.createElement(v1e,{value:s},ne.createElement(y1e,{value:n},ne.createElement(be.div,{...l,className:id("chakra-slider",e.className),__css:n.container},e.children,w("input",{...d}))))});d7.defaultProps={orientation:"horizontal"};d7.displayName="Slider";var pF=Ee((e,t)=>{const{getThumbProps:n}=X4(),r=Q4(),i=n(e,t);return ne.createElement(be.div,{...i,className:id("chakra-slider__thumb",e.className),__css:r.thumb})});pF.displayName="SliderThumb";var gF=Ee((e,t)=>{const{getTrackProps:n}=X4(),r=Q4(),i=n(e,t);return ne.createElement(be.div,{...i,className:id("chakra-slider__track",e.className),__css:r.track})});gF.displayName="SliderTrack";var mF=Ee((e,t)=>{const{getInnerTrackProps:n}=X4(),r=Q4(),i=n(e,t);return ne.createElement(be.div,{...i,className:id("chakra-slider__filled-track",e.className),__css:r.filledTrack})});mF.displayName="SliderFilledTrack";var x1e=Ee((e,t)=>{const{getMarkerProps:n}=X4(),r=Q4(),i=n(e,t);return ne.createElement(be.div,{...i,className:id("chakra-slider__marker",e.className),__css:r.mark})});x1e.displayName="SliderMark";var b1e=(...e)=>e.filter(Boolean).join(" "),iL=e=>e?"":void 0,f7=Ee(function(t,n){const r=Ai("Switch",t),{spacing:i="0.5rem",children:o,...a}=hn(t),{state:s,getInputProps:l,getCheckboxProps:d,getRootProps:p,getLabelProps:g}=pD(a),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),y=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:i,...r.label}),[i,r.label]);return ne.createElement(be.label,{...p(),className:b1e("chakra-switch",t.className),__css:m},w("input",{className:"chakra-switch__input",...l({},n)}),ne.createElement(be.span,{...d(),className:"chakra-switch__track",__css:y},ne.createElement(be.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":iL(s.isChecked),"data-hover":iL(s.isHovered)})),o&&ne.createElement(be.span,{className:"chakra-switch__label",...g(),__css:b},o))});f7.displayName="Switch";var R0=(...e)=>e.filter(Boolean).join(" ");function H6(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[S1e,vF,w1e,C1e]=kO();function _1e(e){const{defaultIndex:t,onChange:n,index:r,isManual:i,isLazy:o,lazyBehavior:a="unmount",orientation:s="horizontal",direction:l="ltr",...d}=e,[p,g]=C.exports.useState(t??0),[m,y]=w4({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&g(r)},[r]);const b=w1e(),S=C.exports.useId();return{id:`tabs-${e.id??S}`,selectedIndex:m,focusedIndex:p,setSelectedIndex:y,setFocusedIndex:g,isManual:i,isLazy:o,lazyBehavior:a,orientation:s,descendants:b,direction:l,htmlProps:d}}var[k1e,_v]=xn({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function E1e(e){const{focusedIndex:t,orientation:n,direction:r}=_v(),i=vF(),o=C.exports.useCallback(a=>{const s=()=>{var k;const L=i.nextEnabled(t);L&&((k=L.node)==null||k.focus())},l=()=>{var k;const L=i.prevEnabled(t);L&&((k=L.node)==null||k.focus())},d=()=>{var k;const L=i.firstEnabled();L&&((k=L.node)==null||k.focus())},p=()=>{var k;const L=i.lastEnabled();L&&((k=L.node)==null||k.focus())},g=n==="horizontal",m=n==="vertical",y=a.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",S=r==="ltr"?"ArrowRight":"ArrowLeft",P={[b]:()=>g&&l(),[S]:()=>g&&s(),ArrowDown:()=>m&&s(),ArrowUp:()=>m&&l(),Home:d,End:p}[y];P&&(a.preventDefault(),P(a))},[i,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:H6(e.onKeyDown,o)}}function P1e(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:i,isManual:o,id:a,setFocusedIndex:s,selectedIndex:l}=_v(),{index:d,register:p}=C1e({disabled:t&&!n}),g=d===l,m=()=>{i(d)},y=()=>{s(d),!o&&!(t&&n)&&i(d)},b=vde({...r,ref:zn(p,e.ref),isDisabled:t,isFocusable:n,onClick:H6(e.onClick,m)}),S="button";return{...b,id:yF(a,d),role:"tab",tabIndex:g?0:-1,type:S,"aria-selected":g,"aria-controls":xF(a,d),onFocus:t?void 0:H6(e.onFocus,y)}}var[T1e,L1e]=xn({});function A1e(e){const t=_v(),{id:n,selectedIndex:r}=t,o=F4(e.children).map((a,s)=>C.exports.createElement(T1e,{key:s,value:{isSelected:s===r,id:xF(n,s),tabId:yF(n,s),selectedIndex:r}},a));return{...e,children:o}}function I1e(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:i}=_v(),{isSelected:o,id:a,tabId:s}=L1e(),l=C.exports.useRef(!1);o&&(l.current=!0);const d=ez({wasSelected:l.current,isSelected:o,enabled:r,mode:i});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":s,hidden:!o,id:a}}function M1e(){const e=_v(),t=vF(),{selectedIndex:n,orientation:r}=e,i=r==="horizontal",o=r==="vertical",[a,s]=C.exports.useState(()=>{if(i)return{left:0,width:0};if(o)return{top:0,height:0}}),[l,d]=C.exports.useState(!1);return gl(()=>{if(n==null)return;const p=t.item(n);if(p==null)return;i&&s({left:p.node.offsetLeft,width:p.node.offsetWidth}),o&&s({top:p.node.offsetTop,height:p.node.offsetHeight});const g=requestAnimationFrame(()=>{d(!0)});return()=>{g&&cancelAnimationFrame(g)}},[n,i,o,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:l?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...a}}function yF(e,t){return`${e}--tab-${t}`}function xF(e,t){return`${e}--tabpanel-${t}`}var[R1e,kv]=xn({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),bF=Ee(function(t,n){const r=Ai("Tabs",t),{children:i,className:o,...a}=hn(t),{htmlProps:s,descendants:l,...d}=_1e(a),p=C.exports.useMemo(()=>d,[d]),{isFitted:g,...m}=s;return ne.createElement(S1e,{value:l},ne.createElement(k1e,{value:p},ne.createElement(R1e,{value:r},ne.createElement(be.div,{className:R0("chakra-tabs",o),ref:n,...m,__css:r.root},i))))});bF.displayName="Tabs";var O1e=Ee(function(t,n){const r=M1e(),i={...t.style,...r},o=kv();return ne.createElement(be.div,{ref:n,...t,className:R0("chakra-tabs__tab-indicator",t.className),style:i,__css:o.indicator})});O1e.displayName="TabIndicator";var N1e=Ee(function(t,n){const r=E1e({...t,ref:n}),o={display:"flex",...kv().tablist};return ne.createElement(be.div,{...r,className:R0("chakra-tabs__tablist",t.className),__css:o})});N1e.displayName="TabList";var SF=Ee(function(t,n){const r=I1e({...t,ref:n}),i=kv();return ne.createElement(be.div,{outline:"0",...r,className:R0("chakra-tabs__tab-panel",t.className),__css:i.tabpanel})});SF.displayName="TabPanel";var wF=Ee(function(t,n){const r=A1e(t),i=kv();return ne.createElement(be.div,{...r,width:"100%",ref:n,className:R0("chakra-tabs__tab-panels",t.className),__css:i.tabpanels})});wF.displayName="TabPanels";var CF=Ee(function(t,n){const r=kv(),i=P1e({...t,ref:n}),o={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return ne.createElement(be.button,{...i,className:R0("chakra-tabs__tab",t.className),__css:o})});CF.displayName="Tab";var D1e=(...e)=>e.filter(Boolean).join(" ");function z1e(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var F1e=["h","minH","height","minHeight"],_F=Ee((e,t)=>{const n=oo("Textarea",e),{className:r,rows:i,...o}=hn(e),a=A8(o),s=i?z1e(n,F1e):n;return ne.createElement(be.textarea,{ref:t,rows:i,...a,className:D1e("chakra-textarea",r),__css:s})});_F.displayName="Textarea";function B1e(e,t){const n=ur(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function W6(e,...t){return $1e(e)?e(...t):e}var $1e=e=>typeof e=="function";function H1e(e,t){const n=e??"bottom",i={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return i?.[t]??n}var W1e=(e,t)=>e.find(n=>n.id===t);function oL(e,t){const n=kF(e,t),r=n?e[n].findIndex(i=>i.id===t):-1;return{position:n,index:r}}function kF(e,t){for(const[n,r]of Object.entries(e))if(W1e(r,t))return n}function V1e(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function U1e(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,i=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,o=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",a=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:i,right:o,left:a}}var G1e={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},dl=j1e(G1e);function j1e(e){let t=e;const n=new Set,r=i=>{t=i(t),n.forEach(o=>o())};return{getState:()=>t,subscribe:i=>(n.add(i),()=>{r(()=>e),n.delete(i)}),removeToast:(i,o)=>{r(a=>({...a,[o]:a[o].filter(s=>s.id!=i)}))},notify:(i,o)=>{const a=q1e(i,o),{position:s,id:l}=a;return r(d=>{const g=s.includes("top")?[a,...d[s]??[]]:[...d[s]??[],a];return{...d,[s]:g}}),l},update:(i,o)=>{!i||r(a=>{const s={...a},{position:l,index:d}=oL(s,i);return l&&d!==-1&&(s[l][d]={...s[l][d],...o,message:EF(o)}),s})},closeAll:({positions:i}={})=>{r(o=>(i??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((l,d)=>(l[d]=o[d].map(p=>({...p,requestClose:!0})),l),{...o}))},close:i=>{r(o=>{const a=kF(o,i);return a?{...o,[a]:o[a].map(s=>s.id==i?{...s,requestClose:!0}:s)}:o})},isActive:i=>Boolean(oL(dl.getState(),i).position)}}var aL=0;function q1e(e,t={}){aL+=1;const n=t.id??aL,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>dl.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var K1e=e=>{const{status:t,variant:n="solid",id:r,title:i,isClosable:o,onClose:a,description:s,icon:l}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return ne.createElement(aD,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},w(lD,{children:l}),ne.createElement(be.div,{flex:"1",maxWidth:"100%"},i&&w(uD,{id:d?.title,children:i}),s&&w(sD,{id:d?.description,display:"block",children:s})),o&&w(H4,{size:"sm",onClick:a,position:"absolute",insetEnd:1,top:1}))};function EF(e={}){const{render:t,toastComponent:n=K1e}=e;return i=>typeof t=="function"?t({...i,...e}):w(n,{...i,...e})}function Z1e(e,t){const n=i=>({...t,...i,position:H1e(i?.position??t?.position,e)}),r=i=>{const o=n(i),a=EF(o);return dl.notify(a,o)};return r.update=(i,o)=>{dl.update(i,n(o))},r.promise=(i,o)=>{const a=r({...o.loading,status:"loading",duration:null});i.then(s=>r.update(a,{status:"success",duration:5e3,...W6(o.success,s)})).catch(s=>r.update(a,{status:"error",duration:5e3,...W6(o.error,s)}))},r.closeAll=dl.closeAll,r.close=dl.close,r.isActive=dl.isActive,r}function od(e){const{theme:t}=wO();return C.exports.useMemo(()=>Z1e(t.direction,e),[e,t.direction])}var Y1e={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},PF=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:i,requestClose:o=!1,position:a="bottom",duration:s=5e3,containerStyle:l,motionVariants:d=Y1e,toastSpacing:p="0.5rem"}=e,[g,m]=C.exports.useState(s),y=Kae();Gc(()=>{y||r?.()},[y]),Gc(()=>{m(s)},[s]);const b=()=>m(null),S=()=>m(s),E=()=>{y&&i()};C.exports.useEffect(()=>{y&&o&&i()},[y,o,i]),B1e(E,g);const P=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:p,...l}),[l,p]),k=C.exports.useMemo(()=>V1e(a),[a]);return ne.createElement(Wa.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:S,custom:{position:a},style:k},ne.createElement(be.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:P},W6(n,{id:t,onClose:E})))});PF.displayName="ToastComponent";var X1e=e=>{const t=C.exports.useSyncExternalStore(dl.subscribe,dl.getState,dl.getState),{children:n,motionVariants:r,component:i=PF,portalProps:o}=e,s=Object.keys(t).map(l=>{const d=t[l];return w("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${l}`,style:U1e(l),children:w(bu,{initial:!1,children:d.map(p=>w(i,{motionVariants:r,...p},p.id))})},l)});return te(Fn,{children:[n,w(jf,{...o,children:s})]})};function Q1e(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function J1e(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var ege={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function lg(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var m5=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},V6=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function tge(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:i,closeOnScroll:o,closeOnPointerDown:a=i,closeOnEsc:s=!0,onOpen:l,onClose:d,placement:p,id:g,isOpen:m,defaultIsOpen:y,arrowSize:b=10,arrowShadowColor:S,arrowPadding:E,modifiers:P,isDisabled:k,gutter:L,offset:I,direction:O,...N}=e,{isOpen:D,onOpen:F,onClose:U}=JD({isOpen:m,defaultIsOpen:y,onOpen:l,onClose:d}),{referenceRef:W,getPopperProps:q,getArrowInnerProps:pe,getArrowProps:fe}=QD({enabled:D,placement:p,arrowPadding:E,modifiers:P,gutter:L,offset:I,direction:O}),ye=C.exports.useId(),xe=`tooltip-${g??ye}`,Y=C.exports.useRef(null),V=C.exports.useRef(),ae=C.exports.useRef(),oe=C.exports.useCallback(()=>{ae.current&&(clearTimeout(ae.current),ae.current=void 0),U()},[U]),X=nge(Y,oe),me=C.exports.useCallback(()=>{if(!k&&!V.current){X();const et=V6(Y);V.current=et.setTimeout(F,t)}},[X,k,F,t]),ve=C.exports.useCallback(()=>{V.current&&(clearTimeout(V.current),V.current=void 0);const et=V6(Y);ae.current=et.setTimeout(oe,n)},[n,oe]),Se=C.exports.useCallback(()=>{D&&r&&ve()},[r,ve,D]),He=C.exports.useCallback(()=>{D&&a&&ve()},[a,ve,D]),je=C.exports.useCallback(et=>{D&&et.key==="Escape"&&ve()},[D,ve]);Lf(()=>m5(Y),"keydown",s?je:void 0),Lf(()=>m5(Y),"scroll",()=>{D&&o&&oe()}),C.exports.useEffect(()=>()=>{clearTimeout(V.current),clearTimeout(ae.current)},[]),Lf(()=>Y.current,"pointerleave",ve);const ut=C.exports.useCallback((et={},it=null)=>({...et,ref:zn(Y,it,W),onPointerEnter:lg(et.onPointerEnter,wt=>{wt.pointerType!=="touch"&&me()}),onClick:lg(et.onClick,Se),onPointerDown:lg(et.onPointerDown,He),onFocus:lg(et.onFocus,me),onBlur:lg(et.onBlur,ve),"aria-describedby":D?xe:void 0}),[me,ve,He,D,xe,Se,W]),qe=C.exports.useCallback((et={},it=null)=>q({...et,style:{...et.style,[$r.arrowSize.var]:b?`${b}px`:void 0,[$r.arrowShadowColor.var]:S}},it),[q,b,S]),at=C.exports.useCallback((et={},it=null)=>{const At={...et.style,position:"relative",transformOrigin:$r.transformOrigin.varRef};return{ref:it,...N,...et,id:xe,role:"tooltip",style:At}},[N,xe]);return{isOpen:D,show:me,hide:ve,getTriggerProps:ut,getTooltipProps:at,getTooltipPositionerProps:qe,getArrowProps:fe,getArrowInnerProps:pe}}var cS="chakra-ui:close-tooltip";function nge(e,t){return C.exports.useEffect(()=>{const n=m5(e);return n.addEventListener(cS,t),()=>n.removeEventListener(cS,t)},[t,e]),()=>{const n=m5(e),r=V6(e);n.dispatchEvent(new r.CustomEvent(cS))}}var rge=be(Wa.div),Xr=Ee((e,t)=>{const n=oo("Tooltip",e),r=hn(e),i=E0(),{children:o,label:a,shouldWrapChildren:s,"aria-label":l,hasArrow:d,bg:p,portalProps:g,background:m,backgroundColor:y,bgColor:b,motionProps:S,...E}=r,P=m??y??p??b;if(P){n.bg=P;const U=gY(i,"colors",P);n[$r.arrowBg.var]=U}const k=tge({...E,direction:i.direction}),L=typeof o=="string"||s;let I;if(L)I=ne.createElement(be.span,{display:"inline-block",tabIndex:0,...k.getTriggerProps()},o);else{const U=C.exports.Children.only(o);I=C.exports.cloneElement(U,k.getTriggerProps(U.props,U.ref))}const O=!!l,N=k.getTooltipProps({},t),D=O?Q1e(N,["role","id"]):N,F=J1e(N,["role","id"]);return a?te(Fn,{children:[I,w(bu,{children:k.isOpen&&ne.createElement(jf,{...g},ne.createElement(be.div,{...k.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},te(rge,{variants:ege,initial:"exit",animate:"enter",exit:"exit",...S,...D,__css:n,children:[a,O&&ne.createElement(be.span,{srOnly:!0,...F},l),d&&ne.createElement(be.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},ne.createElement(be.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):w(Fn,{children:o})});Xr.displayName="Tooltip";var ige=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:i=!0,theme:o={},environment:a,cssVarsRoot:s}=e,l=w(ND,{environment:a,children:t});return w(sie,{theme:o,cssVarsRoot:s,children:te(_R,{colorModeManager:n,options:o.config,children:[i?w(kce,{}):w(_ce,{}),w(uie,{}),r?w(tz,{zIndex:r,children:l}):l]})})};function oge({children:e,theme:t=bO,toastOptions:n,...r}){return te(ige,{theme:t,...r,children:[e,w(X1e,{...n})]})}function vs(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:h7(e)?2:p7(e)?3:0}function Xp(e,t){return O0(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function age(e,t){return O0(e)===2?e.get(t):e[t]}function TF(e,t,n){var r=O0(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function LF(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function h7(e){return fge&&e instanceof Map}function p7(e){return hge&&e instanceof Set}function of(e){return e.o||e.t}function g7(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=IF(e);delete t[er];for(var n=Qp(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=sge),Object.freeze(e),t&&Bf(e,function(n,r){return m7(r,!0)},!0)),e}function sge(){vs(2)}function v7(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function bl(e){var t=q6[e];return t||vs(18,e),t}function lge(e,t){q6[e]||(q6[e]=t)}function U6(){return Zm}function dS(e,t){t&&(bl("Patches"),e.u=[],e.s=[],e.v=t)}function v5(e){G6(e),e.p.forEach(uge),e.p=null}function G6(e){e===Zm&&(Zm=e.l)}function sL(e){return Zm={p:[],l:Zm,h:e,m:!0,_:0}}function uge(e){var t=e[er];t.i===0||t.i===1?t.j():t.O=!0}function fS(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||bl("ES5").S(t,e,r),r?(n[er].P&&(v5(t),vs(4)),gu(e)&&(e=y5(t,e),t.l||x5(t,e)),t.u&&bl("Patches").M(n[er].t,e,t.u,t.s)):e=y5(t,n,[]),v5(t),t.u&&t.v(t.u,t.s),e!==AF?e:void 0}function y5(e,t,n){if(v7(t))return t;var r=t[er];if(!r)return Bf(t,function(o,a){return lL(e,r,t,o,a,n)},!0),t;if(r.A!==e)return t;if(!r.P)return x5(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=r.i===4||r.i===5?r.o=g7(r.k):r.o;Bf(r.i===3?new Set(i):i,function(o,a){return lL(e,r,i,o,a,n)}),x5(e,i,!1),n&&e.u&&bl("Patches").R(r,n,e.u,e.s)}return r.o}function lL(e,t,n,r,i,o){if(Kc(i)){var a=y5(e,i,o&&t&&t.i!==3&&!Xp(t.D,r)?o.concat(r):void 0);if(TF(n,r,a),!Kc(a))return;e.m=!1}if(gu(i)&&!v7(i)){if(!e.h.F&&e._<1)return;y5(e,i),t&&t.A.l||x5(e,i)}}function x5(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&m7(t,n)}function hS(e,t){var n=e[er];return(n?of(n):e)[t]}function uL(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function kc(e){e.P||(e.P=!0,e.l&&kc(e.l))}function pS(e){e.o||(e.o=g7(e.t))}function j6(e,t,n){var r=h7(t)?bl("MapSet").N(t,n):p7(t)?bl("MapSet").T(t,n):e.g?function(i,o){var a=Array.isArray(i),s={i:a?1:0,A:o?o.A:U6(),P:!1,I:!1,D:{},l:o,t:i,k:null,o:null,j:null,C:!1},l=s,d=Ym;a&&(l=[s],d=Eg);var p=Proxy.revocable(l,d),g=p.revoke,m=p.proxy;return s.k=m,s.j=g,m}(t,n):bl("ES5").J(t,n);return(n?n.A:U6()).p.push(r),r}function cge(e){return Kc(e)||vs(22,e),function t(n){if(!gu(n))return n;var r,i=n[er],o=O0(n);if(i){if(!i.P&&(i.i<4||!bl("ES5").K(i)))return i.t;i.I=!0,r=cL(n,o),i.I=!1}else r=cL(n,o);return Bf(r,function(a,s){i&&age(i.t,a)===s||TF(r,a,t(s))}),o===3?new Set(r):r}(e)}function cL(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return g7(e)}function dge(){function e(o,a){var s=i[o];return s?s.enumerable=a:i[o]=s={configurable:!0,enumerable:a,get:function(){var l=this[er];return Ym.get(l,o)},set:function(l){var d=this[er];Ym.set(d,o,l)}},s}function t(o){for(var a=o.length-1;a>=0;a--){var s=o[a][er];if(!s.P)switch(s.i){case 5:r(s)&&kc(s);break;case 4:n(s)&&kc(s)}}}function n(o){for(var a=o.t,s=o.k,l=Qp(s),d=l.length-1;d>=0;d--){var p=l[d];if(p!==er){var g=a[p];if(g===void 0&&!Xp(a,p))return!0;var m=s[p],y=m&&m[er];if(y?y.t!==g:!LF(m,g))return!0}}var b=!!a[er];return l.length!==Qp(a).length+(b?0:1)}function r(o){var a=o.k;if(a.length!==o.t.length)return!0;var s=Object.getOwnPropertyDescriptor(a,a.length-1);if(s&&!s.get)return!0;for(var l=0;l1?P-1:0),L=1;L1?p-1:0),m=1;m=0;i--){var o=r[i];if(o.path.length===0&&o.op==="replace"){n=o.value;break}}i>-1&&(r=r.slice(i+1));var a=bl("Patches").$;return Kc(n)?a(n,r):this.produce(n,function(s){return a(s,r)})},e}(),sa=new gge,MF=sa.produce;sa.produceWithPatches.bind(sa);sa.setAutoFreeze.bind(sa);sa.setUseProxies.bind(sa);sa.applyPatches.bind(sa);sa.createDraft.bind(sa);sa.finishDraft.bind(sa);function pL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function gL(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(zi(1));return n(x7)(e,t)}if(typeof e!="function")throw new Error(zi(2));var i=e,o=t,a=[],s=a,l=!1;function d(){s===a&&(s=a.slice())}function p(){if(l)throw new Error(zi(3));return o}function g(S){if(typeof S!="function")throw new Error(zi(4));if(l)throw new Error(zi(5));var E=!0;return d(),s.push(S),function(){if(!!E){if(l)throw new Error(zi(6));E=!1,d();var k=s.indexOf(S);s.splice(k,1),a=null}}}function m(S){if(!mge(S))throw new Error(zi(7));if(typeof S.type>"u")throw new Error(zi(8));if(l)throw new Error(zi(9));try{l=!0,o=i(o,S)}finally{l=!1}for(var E=a=s,P=0;P"u")throw new Error(zi(12));if(typeof n(void 0,{type:b5.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(zi(13))})}function RF(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(zi(14));g[y]=E,p=p||E!==S}return p=p||o.length!==Object.keys(l).length,p?g:l}}function S5(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[l];return l>0&&(n.splice(l,1),n.unshift(d)),d.value}return w5}function i(s,l){r(s)===w5&&(n.unshift({key:s,value:l}),n.length>e&&n.pop())}function o(){return n}function a(){n=[]}return{get:r,put:i,getEntries:o,clear:a}}var Sge=function(t,n){return t===n};function wge(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var i=n.length,o=0;o1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?Kge:qge;FF.useSyncExternalStore=y0.useSyncExternalStore!==void 0?y0.useSyncExternalStore:Zge;(function(e){e.exports=FF})(zF);var BF={exports:{}},$F={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var ex=C.exports,Yge=zF.exports;function Xge(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var Qge=typeof Object.is=="function"?Object.is:Xge,Jge=Yge.useSyncExternalStore,eme=ex.useRef,tme=ex.useEffect,nme=ex.useMemo,rme=ex.useDebugValue;$F.useSyncExternalStoreWithSelector=function(e,t,n,r,i){var o=eme(null);if(o.current===null){var a={hasValue:!1,value:null};o.current=a}else a=o.current;o=nme(function(){function l(y){if(!d){if(d=!0,p=y,y=r(y),i!==void 0&&a.hasValue){var b=a.value;if(i(b,y))return g=b}return g=y}if(b=g,Qge(p,y))return b;var S=r(y);return i!==void 0&&i(b,S)?b:(p=y,g=S)}var d=!1,p,g,m=n===void 0?null:n;return[function(){return l(t())},m===null?void 0:function(){return l(m())}]},[t,n,r,i]);var s=Jge(e,o[0],o[1]);return tme(function(){a.hasValue=!0,a.value=s},[s]),rme(s),s};(function(e){e.exports=$F})(BF);function ime(e){e()}let HF=ime;const ome=e=>HF=e,ame=()=>HF,Zc=C.exports.createContext(null);function WF(){return C.exports.useContext(Zc)}const sme=()=>{throw new Error("uSES not initialized!")};let VF=sme;const lme=e=>{VF=e},ume=(e,t)=>e===t;function cme(e=Zc){const t=e===Zc?WF:()=>C.exports.useContext(e);return function(r,i=ume){const{store:o,subscription:a,getServerState:s}=t(),l=VF(a.addNestedSub,o.getState,s||o.getState,r,i);return C.exports.useDebugValue(l),l}}const dme=cme();var fme={exports:{}},Ln={};/** + * @license React + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var S7=Symbol.for("react.element"),w7=Symbol.for("react.portal"),tx=Symbol.for("react.fragment"),nx=Symbol.for("react.strict_mode"),rx=Symbol.for("react.profiler"),ix=Symbol.for("react.provider"),ox=Symbol.for("react.context"),hme=Symbol.for("react.server_context"),ax=Symbol.for("react.forward_ref"),sx=Symbol.for("react.suspense"),lx=Symbol.for("react.suspense_list"),ux=Symbol.for("react.memo"),cx=Symbol.for("react.lazy"),pme=Symbol.for("react.offscreen"),UF;UF=Symbol.for("react.module.reference");function Ua(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case S7:switch(e=e.type,e){case tx:case rx:case nx:case sx:case lx:return e;default:switch(e=e&&e.$$typeof,e){case hme:case ox:case ax:case cx:case ux:case ix:return e;default:return t}}case w7:return t}}}Ln.ContextConsumer=ox;Ln.ContextProvider=ix;Ln.Element=S7;Ln.ForwardRef=ax;Ln.Fragment=tx;Ln.Lazy=cx;Ln.Memo=ux;Ln.Portal=w7;Ln.Profiler=rx;Ln.StrictMode=nx;Ln.Suspense=sx;Ln.SuspenseList=lx;Ln.isAsyncMode=function(){return!1};Ln.isConcurrentMode=function(){return!1};Ln.isContextConsumer=function(e){return Ua(e)===ox};Ln.isContextProvider=function(e){return Ua(e)===ix};Ln.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===S7};Ln.isForwardRef=function(e){return Ua(e)===ax};Ln.isFragment=function(e){return Ua(e)===tx};Ln.isLazy=function(e){return Ua(e)===cx};Ln.isMemo=function(e){return Ua(e)===ux};Ln.isPortal=function(e){return Ua(e)===w7};Ln.isProfiler=function(e){return Ua(e)===rx};Ln.isStrictMode=function(e){return Ua(e)===nx};Ln.isSuspense=function(e){return Ua(e)===sx};Ln.isSuspenseList=function(e){return Ua(e)===lx};Ln.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===tx||e===rx||e===nx||e===sx||e===lx||e===pme||typeof e=="object"&&e!==null&&(e.$$typeof===cx||e.$$typeof===ux||e.$$typeof===ix||e.$$typeof===ox||e.$$typeof===ax||e.$$typeof===UF||e.getModuleId!==void 0)};Ln.typeOf=Ua;(function(e){e.exports=Ln})(fme);function gme(){const e=ame();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],i=t;for(;i;)r.push(i),i=i.next;return r},subscribe(r){let i=!0,o=n={callback:r,next:null,prev:n};return o.prev?o.prev.next=o:t=o,function(){!i||t===null||(i=!1,o.next?o.next.prev=o.prev:n=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}const bL={notify(){},get:()=>[]};function mme(e,t){let n,r=bL;function i(g){return l(),r.subscribe(g)}function o(){r.notify()}function a(){p.onStateChange&&p.onStateChange()}function s(){return Boolean(n)}function l(){n||(n=t?t.addNestedSub(a):e.subscribe(a),r=gme())}function d(){n&&(n(),n=void 0,r.clear(),r=bL)}const p={addNestedSub:i,notifyNestedSubs:o,handleChangeWrapper:a,isSubscribed:s,trySubscribe:l,tryUnsubscribe:d,getListeners:()=>r};return p}const vme=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",yme=vme?C.exports.useLayoutEffect:C.exports.useEffect;function xme({store:e,context:t,children:n,serverState:r}){const i=C.exports.useMemo(()=>{const s=mme(e);return{store:e,subscription:s,getServerState:r?()=>r:void 0}},[e,r]),o=C.exports.useMemo(()=>e.getState(),[e]);return yme(()=>{const{subscription:s}=i;return s.onStateChange=s.notifyNestedSubs,s.trySubscribe(),o!==e.getState()&&s.notifyNestedSubs(),()=>{s.tryUnsubscribe(),s.onStateChange=void 0}},[i,o]),w((t||Zc).Provider,{value:i,children:n})}function GF(e=Zc){const t=e===Zc?WF:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const bme=GF();function Sme(e=Zc){const t=e===Zc?bme:GF(e);return function(){return t().dispatch}}const wme=Sme();lme(BF.exports.useSyncExternalStoreWithSelector);ome(El.exports.unstable_batchedUpdates);var C7="persist:",jF="persist/FLUSH",_7="persist/REHYDRATE",qF="persist/PAUSE",KF="persist/PERSIST",ZF="persist/PURGE",YF="persist/REGISTER",Cme=-1;function i3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?i3=function(n){return typeof n}:i3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},i3(e)}function SL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function _me(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function Nme(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var Dme=5e3;function o3(e,t){var n=e.version!==void 0?e.version:Cme;e.debug;var r=e.stateReconciler===void 0?Eme:e.stateReconciler,i=e.getStoredState||Lme,o=e.timeout!==void 0?e.timeout:Dme,a=null,s=!1,l=!0,d=function(g){return g._persist.rehydrated&&a&&!l&&a.update(g),g};return function(p,g){var m=p||{},y=m._persist,b=Ome(m,["_persist"]),S=b;if(g.type===KF){var E=!1,P=function(F,U){E||(g.rehydrate(e.key,F,U),E=!0)};if(o&&setTimeout(function(){!E&&P(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},o),l=!1,a||(a=Pme(e)),y)return Ql({},t(S,g),{_persist:y});if(typeof g.rehydrate!="function"||typeof g.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return g.register(e.key),i(e).then(function(D){var F=e.migrate||function(U,W){return Promise.resolve(U)};F(D,n).then(function(U){P(U)},function(U){P(void 0,U)})},function(D){P(void 0,D)}),Ql({},t(S,g),{_persist:{version:n,rehydrated:!1}})}else{if(g.type===ZF)return s=!0,g.result(Ime(e)),Ql({},t(S,g),{_persist:y});if(g.type===jF)return g.result(a&&a.flush()),Ql({},t(S,g),{_persist:y});if(g.type===qF)l=!0;else if(g.type===_7){if(s)return Ql({},S,{_persist:Ql({},y,{rehydrated:!0})});if(g.key===e.key){var k=t(S,g),L=g.payload,I=r!==!1&&L!==void 0?r(L,p,k,e):k,O=Ql({},I,{_persist:Ql({},y,{rehydrated:!0})});return d(O)}}}if(!y)return t(p,g);var N=t(S,g);return N===S?p:d(Ql({},N,{_persist:y}))}}function CL(e){return Bme(e)||Fme(e)||zme()}function zme(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function Fme(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function Bme(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:XF,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case YF:return Z6({},t,{registry:[].concat(CL(t.registry),[n.key])});case _7:var r=t.registry.indexOf(n.key),i=CL(t.registry);return i.splice(r,1),Z6({},t,{registry:i,bootstrapped:i.length===0});default:return t}};function Wme(e,t,n){var r=n||!1,i=x7(Hme,XF,t&&t.enhancer?t.enhancer:void 0),o=function(d){i.dispatch({type:YF,key:d})},a=function(d,p,g){var m={type:_7,payload:p,err:g,key:d};e.dispatch(m),i.dispatch(m),r&&s.getState().bootstrapped&&(r(),r=!1)},s=Z6({},i,{purge:function(){var d=[];return e.dispatch({type:ZF,result:function(g){d.push(g)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:jF,result:function(g){d.push(g)}}),Promise.all(d)},pause:function(){e.dispatch({type:qF})},persist:function(){e.dispatch({type:KF,register:o,rehydrate:a})}});return t&&t.manualPersist||s.persist(),s}var k7={},E7={};E7.__esModule=!0;E7.default=Gme;function a3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?a3=function(n){return typeof n}:a3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},a3(e)}function vS(){}var Vme={getItem:vS,setItem:vS,removeItem:vS};function Ume(e){if((typeof self>"u"?"undefined":a3(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function Gme(e){var t="".concat(e,"Storage");return Ume(t)?self[t]:Vme}k7.__esModule=!0;k7.default=Kme;var jme=qme(E7);function qme(e){return e&&e.__esModule?e:{default:e}}function Kme(e){var t=(0,jme.default)(e);return{getItem:function(r){return new Promise(function(i,o){i(t.getItem(r))})},setItem:function(r,i){return new Promise(function(o,a){o(t.setItem(r,i))})},removeItem:function(r){return new Promise(function(i,o){i(t.removeItem(r))})}}}var Ev=void 0,Zme=Yme(k7);function Yme(e){return e&&e.__esModule?e:{default:e}}var Xme=(0,Zme.default)("local");Ev=Xme;const s3=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),Qme=e=>{const r=e.split(",").map(i=>i.split(":")).map(i=>({seed:Number(i[0]),weight:Number(i[1])}));return P7(r)?r:!1},P7=e=>Boolean(typeof e=="string"?Qme(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,i=!isNaN(parseInt(n.toString(),10)),o=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(i&&o)})),_5=e=>e.reduce((t,n,r,i)=>{const{seed:o,weight:a}=n;return t+=`${o}:${a}`,r!==i.length-1&&(t+=","),t},""),Jme=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]);var la={exports:{}};/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */(function(e,t){(function(){var n,r="4.17.21",i=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function",s="Invalid `variable` option passed into `_.template`",l="__lodash_hash_undefined__",d=500,p="__lodash_placeholder__",g=1,m=2,y=4,b=1,S=2,E=1,P=2,k=4,L=8,I=16,O=32,N=64,D=128,F=256,U=512,W=30,q="...",pe=800,fe=16,ye=1,Pe=2,xe=3,Y=1/0,V=9007199254740991,ae=17976931348623157e292,oe=0/0,X=4294967295,me=X-1,ve=X>>>1,Se=[["ary",D],["bind",E],["bindKey",P],["curry",L],["curryRight",I],["flip",U],["partial",O],["partialRight",N],["rearg",F]],He="[object Arguments]",je="[object Array]",ut="[object AsyncFunction]",qe="[object Boolean]",at="[object Date]",et="[object DOMException]",it="[object Error]",At="[object Function]",wt="[object GeneratorFunction]",Le="[object Map]",ot="[object Number]",Et="[object Null]",rt="[object Object]",pt="[object Promise]",Sn="[object Proxy]",bt="[object RegExp]",qt="[object Set]",wn="[object String]",pn="[object Symbol]",Me="[object Undefined]",Ze="[object WeakMap]",Kt="[object WeakSet]",Vt="[object ArrayBuffer]",_e="[object DataView]",kt="[object Float32Array]",Ne="[object Float64Array]",tt="[object Int8Array]",nn="[object Int16Array]",Mn="[object Int32Array]",Fe="[object Uint8Array]",lt="[object Uint8ClampedArray]",Xe="[object Uint16Array]",Lt="[object Uint32Array]",Zt=/\b__p \+= '';/g,Zn=/\b(__p \+=) '' \+/g,ao=/(__e\(.*?\)|\b__t\)) \+\n'';/g,ui=/&(?:amp|lt|gt|quot|#39);/g,Ps=/[&<>"']/g,W0=RegExp(ui.source),pa=RegExp(Ps.source),rh=/<%-([\s\S]+?)%>/g,V0=/<%([\s\S]+?)%>/g,Pu=/<%=([\s\S]+?)%>/g,ih=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,oh=/^\w*$/,Io=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,dd=/[\\^$.*+?()[\]{}|]/g,U0=RegExp(dd.source),Tu=/^\s+/,fd=/\s/,G0=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Ts=/\{\n\/\* \[wrapped with (.+)\] \*/,Lu=/,? & /,j0=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,q0=/[()=,{}\[\]\/\s]/,K0=/\\(\\)?/g,Z0=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ja=/\w*$/,Y0=/^[-+]0x[0-9a-f]+$/i,X0=/^0b[01]+$/i,Q0=/^\[object .+?Constructor\]$/,J0=/^0o[0-7]+$/i,e1=/^(?:0|[1-9]\d*)$/,t1=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ls=/($^)/,n1=/['\n\r\u2028\u2029\\]/g,qa="\\ud800-\\udfff",Al="\\u0300-\\u036f",Il="\\ufe20-\\ufe2f",As="\\u20d0-\\u20ff",Ml=Al+Il+As,ah="\\u2700-\\u27bf",Au="a-z\\xdf-\\xf6\\xf8-\\xff",Is="\\xac\\xb1\\xd7\\xf7",Mo="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Cn="\\u2000-\\u206f",gn=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ro="A-Z\\xc0-\\xd6\\xd8-\\xde",Cr="\\ufe0e\\ufe0f",Vr=Is+Mo+Cn+gn,Oo="['\u2019]",Ms="["+qa+"]",Ur="["+Vr+"]",Ka="["+Ml+"]",hd="\\d+",Rl="["+ah+"]",Za="["+Au+"]",pd="[^"+qa+Vr+hd+ah+Au+Ro+"]",ci="\\ud83c[\\udffb-\\udfff]",sh="(?:"+Ka+"|"+ci+")",lh="[^"+qa+"]",gd="(?:\\ud83c[\\udde6-\\uddff]){2}",Rs="[\\ud800-\\udbff][\\udc00-\\udfff]",so="["+Ro+"]",Os="\\u200d",Ol="(?:"+Za+"|"+pd+")",r1="(?:"+so+"|"+pd+")",Iu="(?:"+Oo+"(?:d|ll|m|re|s|t|ve))?",Mu="(?:"+Oo+"(?:D|LL|M|RE|S|T|VE))?",md=sh+"?",Ru="["+Cr+"]?",ga="(?:"+Os+"(?:"+[lh,gd,Rs].join("|")+")"+Ru+md+")*",vd="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Nl="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",zt=Ru+md+ga,uh="(?:"+[Rl,gd,Rs].join("|")+")"+zt,Ou="(?:"+[lh+Ka+"?",Ka,gd,Rs,Ms].join("|")+")",Nu=RegExp(Oo,"g"),ch=RegExp(Ka,"g"),No=RegExp(ci+"(?="+ci+")|"+Ou+zt,"g"),$n=RegExp([so+"?"+Za+"+"+Iu+"(?="+[Ur,so,"$"].join("|")+")",r1+"+"+Mu+"(?="+[Ur,so+Ol,"$"].join("|")+")",so+"?"+Ol+"+"+Iu,so+"+"+Mu,Nl,vd,hd,uh].join("|"),"g"),yd=RegExp("["+Os+qa+Ml+Cr+"]"),dh=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,xd=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],fh=-1,rn={};rn[kt]=rn[Ne]=rn[tt]=rn[nn]=rn[Mn]=rn[Fe]=rn[lt]=rn[Xe]=rn[Lt]=!0,rn[He]=rn[je]=rn[Vt]=rn[qe]=rn[_e]=rn[at]=rn[it]=rn[At]=rn[Le]=rn[ot]=rn[rt]=rn[bt]=rn[qt]=rn[wn]=rn[Ze]=!1;var Ft={};Ft[He]=Ft[je]=Ft[Vt]=Ft[_e]=Ft[qe]=Ft[at]=Ft[kt]=Ft[Ne]=Ft[tt]=Ft[nn]=Ft[Mn]=Ft[Le]=Ft[ot]=Ft[rt]=Ft[bt]=Ft[qt]=Ft[wn]=Ft[pn]=Ft[Fe]=Ft[lt]=Ft[Xe]=Ft[Lt]=!0,Ft[it]=Ft[At]=Ft[Ze]=!1;var hh={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},i1={"&":"&","<":"<",">":">",'"':""","'":"'"},H={"&":"&","<":"<",">":">",""":'"',"'":"'"},Z={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},ue=parseFloat,Ge=parseInt,Mt=typeof nu=="object"&&nu&&nu.Object===Object&&nu,ln=typeof self=="object"&&self&&self.Object===Object&&self,dt=Mt||ln||Function("return this")(),St=t&&!t.nodeType&&t,Bt=St&&!0&&e&&!e.nodeType&&e,Or=Bt&&Bt.exports===St,pr=Or&&Mt.process,un=function(){try{var Q=Bt&&Bt.require&&Bt.require("util").types;return Q||pr&&pr.binding&&pr.binding("util")}catch{}}(),Gr=un&&un.isArrayBuffer,lo=un&&un.isDate,Wi=un&&un.isMap,ma=un&&un.isRegExp,Ns=un&&un.isSet,o1=un&&un.isTypedArray;function di(Q,ge,de){switch(de.length){case 0:return Q.call(ge);case 1:return Q.call(ge,de[0]);case 2:return Q.call(ge,de[0],de[1]);case 3:return Q.call(ge,de[0],de[1],de[2])}return Q.apply(ge,de)}function a1(Q,ge,de,Ve){for(var yt=-1,Yt=Q==null?0:Q.length;++yt-1}function ph(Q,ge,de){for(var Ve=-1,yt=Q==null?0:Q.length;++Ve-1;);return de}function Ya(Q,ge){for(var de=Q.length;de--&&Fu(ge,Q[de],0)>-1;);return de}function l1(Q,ge){for(var de=Q.length,Ve=0;de--;)Q[de]===ge&&++Ve;return Ve}var zv=Cd(hh),Xa=Cd(i1);function zs(Q){return"\\"+Z[Q]}function mh(Q,ge){return Q==null?n:Q[ge]}function zl(Q){return yd.test(Q)}function vh(Q){return dh.test(Q)}function Fv(Q){for(var ge,de=[];!(ge=Q.next()).done;)de.push(ge.value);return de}function yh(Q){var ge=-1,de=Array(Q.size);return Q.forEach(function(Ve,yt){de[++ge]=[yt,Ve]}),de}function xh(Q,ge){return function(de){return Q(ge(de))}}function Fo(Q,ge){for(var de=-1,Ve=Q.length,yt=0,Yt=[];++de-1}function r2(u,h){var x=this.__data__,A=kr(x,u);return A<0?(++this.size,x.push([u,h])):x[A][1]=h,this}Bo.prototype.clear=t2,Bo.prototype.delete=n2,Bo.prototype.get=C1,Bo.prototype.has=_1,Bo.prototype.set=r2;function $o(u){var h=-1,x=u==null?0:u.length;for(this.clear();++h=h?u:h)),u}function ti(u,h,x,A,R,B){var G,K=h&g,ie=h&m,we=h&y;if(x&&(G=R?x(u,A,R,B):x(u)),G!==n)return G;if(!ar(u))return u;var Ce=Tt(u);if(Ce){if(G=YH(u),!K)return vi(u,G)}else{var Te=ii(u),We=Te==At||Te==wt;if(fc(u))return Ks(u,K);if(Te==rt||Te==He||We&&!R){if(G=ie||We?{}:m_(u),!K)return ie?W1(u,nc(G,u)):mo(u,Ke(G,u))}else{if(!Ft[Te])return R?u:{};G=XH(u,Te,K)}}B||(B=new mr);var st=B.get(u);if(st)return st;B.set(u,G),G_(u)?u.forEach(function(ht){G.add(ti(ht,h,x,ht,u,B))}):V_(u)&&u.forEach(function(ht,Ht){G.set(Ht,ti(ht,h,x,Ht,u,B))});var ft=we?ie?ce:Go:ie?yo:oi,Nt=Ce?n:ft(u);return Hn(Nt||u,function(ht,Ht){Nt&&(Ht=ht,ht=u[Ht]),$s(G,Ht,ti(ht,h,x,Ht,u,B))}),G}function Ph(u){var h=oi(u);return function(x){return Th(x,u,h)}}function Th(u,h,x){var A=x.length;if(u==null)return!A;for(u=on(u);A--;){var R=x[A],B=h[R],G=u[R];if(G===n&&!(R in u)||!B(G))return!1}return!0}function T1(u,h,x){if(typeof u!="function")throw new fi(a);return q1(function(){u.apply(n,x)},h)}function rc(u,h,x,A){var R=-1,B=Ii,G=!0,K=u.length,ie=[],we=h.length;if(!K)return ie;x&&(h=On(h,_r(x))),A?(B=ph,G=!1):h.length>=i&&(B=$u,G=!1,h=new ba(h));e:for(;++RR?0:R+x),A=A===n||A>R?R:It(A),A<0&&(A+=R),A=x>A?0:q_(A);x0&&x(K)?h>1?Er(K,h-1,x,A,R):va(R,K):A||(R[R.length]=K)}return R}var Ah=Zs(),ho=Zs(!0);function Uo(u,h){return u&&Ah(u,h,oi)}function po(u,h){return u&&ho(u,h,oi)}function Ih(u,h){return co(h,function(x){return jl(u[x])})}function Hs(u,h){h=qs(h,u);for(var x=0,A=h.length;u!=null&&xh}function Rh(u,h){return u!=null&&Qt.call(u,h)}function Oh(u,h){return u!=null&&h in on(u)}function Nh(u,h,x){return u>=qr(h,x)&&u=120&&Ce.length>=120)?new ba(G&&Ce):n}Ce=u[0];var Te=-1,We=K[0];e:for(;++Te-1;)K!==u&&Id.call(K,ie,1),Id.call(u,ie,1);return u}function $d(u,h){for(var x=u?h.length:0,A=x-1;x--;){var R=h[x];if(x==A||R!==B){var B=R;Gl(R)?Id.call(u,R,1):Gh(u,R)}}return u}function Hd(u,h){return u+Bl(v1()*(h-u+1))}function Gs(u,h,x,A){for(var R=-1,B=gr(Od((h-u)/(x||1)),0),G=de(B);B--;)G[A?B:++R]=u,u+=x;return G}function uc(u,h){var x="";if(!u||h<1||h>V)return x;do h%2&&(x+=u),h=Bl(h/2),h&&(u+=u);while(h);return x}function vt(u,h){return $x(x_(u,h,xo),u+"")}function $h(u){return tc(Qh(u))}function Wd(u,h){var x=Qh(u);return d2(x,Hl(h,0,x.length))}function Vl(u,h,x,A){if(!ar(u))return u;h=qs(h,u);for(var R=-1,B=h.length,G=B-1,K=u;K!=null&&++RR?0:R+h),x=x>R?R:x,x<0&&(x+=R),R=h>x?0:x-h>>>0,h>>>=0;for(var B=de(R);++A>>1,G=u[B];G!==null&&!jo(G)&&(x?G<=h:G=i){var we=h?null:$(u);if(we)return Pd(we);G=!1,R=$u,ie=new ba}else ie=h?[]:K;e:for(;++A=A?u:Tr(u,h,x)}var F1=Vv||function(u){return dt.clearTimeout(u)};function Ks(u,h){if(h)return u.slice();var x=u.length,A=Gu?Gu(x):new u.constructor(x);return u.copy(A),A}function B1(u){var h=new u.constructor(u.byteLength);return new hi(h).set(new hi(u)),h}function Ul(u,h){var x=h?B1(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.byteLength)}function s2(u){var h=new u.constructor(u.source,ja.exec(u));return h.lastIndex=u.lastIndex,h}function Wn(u){return Dd?on(Dd.call(u)):{}}function l2(u,h){var x=h?B1(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.length)}function $1(u,h){if(u!==h){var x=u!==n,A=u===null,R=u===u,B=jo(u),G=h!==n,K=h===null,ie=h===h,we=jo(h);if(!K&&!we&&!B&&u>h||B&&G&&ie&&!K&&!we||A&&G&&ie||!x&&ie||!R)return 1;if(!A&&!B&&!we&&u=K)return ie;var we=x[A];return ie*(we=="desc"?-1:1)}}return u.index-h.index}function u2(u,h,x,A){for(var R=-1,B=u.length,G=x.length,K=-1,ie=h.length,we=gr(B-G,0),Ce=de(ie+we),Te=!A;++K1?x[R-1]:n,G=R>2?x[2]:n;for(B=u.length>3&&typeof B=="function"?(R--,B):n,G&&Ki(x[0],x[1],G)&&(B=R<3?n:B,R=1),h=on(h);++A-1?R[B?h[G]:G]:n}}function U1(u){return Xn(function(h){var x=h.length,A=x,R=Ui.prototype.thru;for(u&&h.reverse();A--;){var B=h[A];if(typeof B!="function")throw new fi(a);if(R&&!G&&he(B)=="wrapper")var G=new Ui([],!0)}for(A=G?A:x;++A1&&Xt.reverse(),Ce&&ieK))return!1;var we=B.get(u),Ce=B.get(h);if(we&&Ce)return we==h&&Ce==u;var Te=-1,We=!0,st=x&S?new ba:n;for(B.set(u,h),B.set(h,u);++Te1?"& ":"")+h[A],h=h.join(x>2?", ":" "),u.replace(G0,`{ +/* [wrapped with `+h+`] */ +`)}function JH(u){return Tt(u)||Yd(u)||!!(g1&&u&&u[g1])}function Gl(u,h){var x=typeof u;return h=h??V,!!h&&(x=="number"||x!="symbol"&&e1.test(u))&&u>-1&&u%1==0&&u0){if(++h>=pe)return arguments[0]}else h=0;return u.apply(n,arguments)}}function d2(u,h){var x=-1,A=u.length,R=A-1;for(h=h===n?A:h;++x1?u[h-1]:n;return x=typeof x=="function"?(u.pop(),x):n,I_(u,x)});function M_(u){var h=z(u);return h.__chain__=!0,h}function cV(u,h){return h(u),u}function f2(u,h){return h(u)}var dV=Xn(function(u){var h=u.length,x=h?u[0]:0,A=this.__wrapped__,R=function(B){return Eh(B,u)};return h>1||this.__actions__.length||!(A instanceof $t)||!Gl(x)?this.thru(R):(A=A.slice(x,+x+(h?1:0)),A.__actions__.push({func:f2,args:[R],thisArg:n}),new Ui(A,this.__chain__).thru(function(B){return h&&!B.length&&B.push(n),B}))});function fV(){return M_(this)}function hV(){return new Ui(this.value(),this.__chain__)}function pV(){this.__values__===n&&(this.__values__=j_(this.value()));var u=this.__index__>=this.__values__.length,h=u?n:this.__values__[this.__index__++];return{done:u,value:h}}function gV(){return this}function mV(u){for(var h,x=this;x instanceof zd;){var A=k_(x);A.__index__=0,A.__values__=n,h?R.__wrapped__=A:h=A;var R=A;x=x.__wrapped__}return R.__wrapped__=u,h}function vV(){var u=this.__wrapped__;if(u instanceof $t){var h=u;return this.__actions__.length&&(h=new $t(this)),h=h.reverse(),h.__actions__.push({func:f2,args:[Hx],thisArg:n}),new Ui(h,this.__chain__)}return this.thru(Hx)}function yV(){return js(this.__wrapped__,this.__actions__)}var xV=qh(function(u,h,x){Qt.call(u,x)?++u[x]:Ho(u,x,1)});function bV(u,h,x){var A=Tt(u)?Rn:L1;return x&&Ki(u,h,x)&&(h=n),A(u,ke(h,3))}function SV(u,h){var x=Tt(u)?co:Vo;return x(u,ke(h,3))}var wV=V1(E_),CV=V1(P_);function _V(u,h){return Er(h2(u,h),1)}function kV(u,h){return Er(h2(u,h),Y)}function EV(u,h,x){return x=x===n?1:It(x),Er(h2(u,h),x)}function R_(u,h){var x=Tt(u)?Hn:es;return x(u,ke(h,3))}function O_(u,h){var x=Tt(u)?uo:Lh;return x(u,ke(h,3))}var PV=qh(function(u,h,x){Qt.call(u,x)?u[x].push(h):Ho(u,x,[h])});function TV(u,h,x,A){u=vo(u)?u:Qh(u),x=x&&!A?It(x):0;var R=u.length;return x<0&&(x=gr(R+x,0)),y2(u)?x<=R&&u.indexOf(h,x)>-1:!!R&&Fu(u,h,x)>-1}var LV=vt(function(u,h,x){var A=-1,R=typeof h=="function",B=vo(u)?de(u.length):[];return es(u,function(G){B[++A]=R?di(h,G,x):ts(G,h,x)}),B}),AV=qh(function(u,h,x){Ho(u,x,h)});function h2(u,h){var x=Tt(u)?On:yr;return x(u,ke(h,3))}function IV(u,h,x,A){return u==null?[]:(Tt(h)||(h=h==null?[]:[h]),x=A?n:x,Tt(x)||(x=x==null?[]:[x]),gi(u,h,x))}var MV=qh(function(u,h,x){u[x?0:1].push(h)},function(){return[[],[]]});function RV(u,h,x){var A=Tt(u)?bd:gh,R=arguments.length<3;return A(u,ke(h,4),x,R,es)}function OV(u,h,x){var A=Tt(u)?Rv:gh,R=arguments.length<3;return A(u,ke(h,4),x,R,Lh)}function NV(u,h){var x=Tt(u)?co:Vo;return x(u,m2(ke(h,3)))}function DV(u){var h=Tt(u)?tc:$h;return h(u)}function zV(u,h,x){(x?Ki(u,h,x):h===n)?h=1:h=It(h);var A=Tt(u)?ei:Wd;return A(u,h)}function FV(u){var h=Tt(u)?Mx:ri;return h(u)}function BV(u){if(u==null)return 0;if(vo(u))return y2(u)?ya(u):u.length;var h=ii(u);return h==Le||h==qt?u.size:Pr(u).length}function $V(u,h,x){var A=Tt(u)?Du:go;return x&&Ki(u,h,x)&&(h=n),A(u,ke(h,3))}var HV=vt(function(u,h){if(u==null)return[];var x=h.length;return x>1&&Ki(u,h[0],h[1])?h=[]:x>2&&Ki(h[0],h[1],h[2])&&(h=[h[0]]),gi(u,Er(h,1),[])}),p2=Uv||function(){return dt.Date.now()};function WV(u,h){if(typeof h!="function")throw new fi(a);return u=It(u),function(){if(--u<1)return h.apply(this,arguments)}}function N_(u,h,x){return h=x?n:h,h=u&&h==null?u.length:h,le(u,D,n,n,n,n,h)}function D_(u,h){var x;if(typeof h!="function")throw new fi(a);return u=It(u),function(){return--u>0&&(x=h.apply(this,arguments)),u<=1&&(h=n),x}}var Vx=vt(function(u,h,x){var A=E;if(x.length){var R=Fo(x,Be(Vx));A|=O}return le(u,A,h,x,R)}),z_=vt(function(u,h,x){var A=E|P;if(x.length){var R=Fo(x,Be(z_));A|=O}return le(h,A,u,x,R)});function F_(u,h,x){h=x?n:h;var A=le(u,L,n,n,n,n,n,h);return A.placeholder=F_.placeholder,A}function B_(u,h,x){h=x?n:h;var A=le(u,I,n,n,n,n,n,h);return A.placeholder=B_.placeholder,A}function $_(u,h,x){var A,R,B,G,K,ie,we=0,Ce=!1,Te=!1,We=!0;if(typeof u!="function")throw new fi(a);h=Ca(h)||0,ar(x)&&(Ce=!!x.leading,Te="maxWait"in x,B=Te?gr(Ca(x.maxWait)||0,h):B,We="trailing"in x?!!x.trailing:We);function st(Ar){var as=A,Kl=R;return A=R=n,we=Ar,G=u.apply(Kl,as),G}function ft(Ar){return we=Ar,K=q1(Ht,h),Ce?st(Ar):G}function Nt(Ar){var as=Ar-ie,Kl=Ar-we,ok=h-as;return Te?qr(ok,B-Kl):ok}function ht(Ar){var as=Ar-ie,Kl=Ar-we;return ie===n||as>=h||as<0||Te&&Kl>=B}function Ht(){var Ar=p2();if(ht(Ar))return Xt(Ar);K=q1(Ht,Nt(Ar))}function Xt(Ar){return K=n,We&&A?st(Ar):(A=R=n,G)}function qo(){K!==n&&F1(K),we=0,A=ie=R=K=n}function Zi(){return K===n?G:Xt(p2())}function Ko(){var Ar=p2(),as=ht(Ar);if(A=arguments,R=this,ie=Ar,as){if(K===n)return ft(ie);if(Te)return F1(K),K=q1(Ht,h),st(ie)}return K===n&&(K=q1(Ht,h)),G}return Ko.cancel=qo,Ko.flush=Zi,Ko}var VV=vt(function(u,h){return T1(u,1,h)}),UV=vt(function(u,h,x){return T1(u,Ca(h)||0,x)});function GV(u){return le(u,U)}function g2(u,h){if(typeof u!="function"||h!=null&&typeof h!="function")throw new fi(a);var x=function(){var A=arguments,R=h?h.apply(this,A):A[0],B=x.cache;if(B.has(R))return B.get(R);var G=u.apply(this,A);return x.cache=B.set(R,G)||B,G};return x.cache=new(g2.Cache||$o),x}g2.Cache=$o;function m2(u){if(typeof u!="function")throw new fi(a);return function(){var h=arguments;switch(h.length){case 0:return!u.call(this);case 1:return!u.call(this,h[0]);case 2:return!u.call(this,h[0],h[1]);case 3:return!u.call(this,h[0],h[1],h[2])}return!u.apply(this,h)}}function jV(u){return D_(2,u)}var qV=Nx(function(u,h){h=h.length==1&&Tt(h[0])?On(h[0],_r(ke())):On(Er(h,1),_r(ke()));var x=h.length;return vt(function(A){for(var R=-1,B=qr(A.length,x);++R=h}),Yd=zh(function(){return arguments}())?zh:function(u){return xr(u)&&Qt.call(u,"callee")&&!p1.call(u,"callee")},Tt=de.isArray,lU=Gr?_r(Gr):I1;function vo(u){return u!=null&&v2(u.length)&&!jl(u)}function Lr(u){return xr(u)&&vo(u)}function uU(u){return u===!0||u===!1||xr(u)&&ni(u)==qe}var fc=Gv||tb,cU=lo?_r(lo):M1;function dU(u){return xr(u)&&u.nodeType===1&&!K1(u)}function fU(u){if(u==null)return!0;if(vo(u)&&(Tt(u)||typeof u=="string"||typeof u.splice=="function"||fc(u)||Xh(u)||Yd(u)))return!u.length;var h=ii(u);if(h==Le||h==qt)return!u.size;if(j1(u))return!Pr(u).length;for(var x in u)if(Qt.call(u,x))return!1;return!0}function hU(u,h){return oc(u,h)}function pU(u,h,x){x=typeof x=="function"?x:n;var A=x?x(u,h):n;return A===n?oc(u,h,n,x):!!A}function Gx(u){if(!xr(u))return!1;var h=ni(u);return h==it||h==et||typeof u.message=="string"&&typeof u.name=="string"&&!K1(u)}function gU(u){return typeof u=="number"&&wh(u)}function jl(u){if(!ar(u))return!1;var h=ni(u);return h==At||h==wt||h==ut||h==Sn}function W_(u){return typeof u=="number"&&u==It(u)}function v2(u){return typeof u=="number"&&u>-1&&u%1==0&&u<=V}function ar(u){var h=typeof u;return u!=null&&(h=="object"||h=="function")}function xr(u){return u!=null&&typeof u=="object"}var V_=Wi?_r(Wi):Ox;function mU(u,h){return u===h||ac(u,h,xt(h))}function vU(u,h,x){return x=typeof x=="function"?x:n,ac(u,h,xt(h),x)}function yU(u){return U_(u)&&u!=+u}function xU(u){if(nW(u))throw new yt(o);return Fh(u)}function bU(u){return u===null}function SU(u){return u==null}function U_(u){return typeof u=="number"||xr(u)&&ni(u)==ot}function K1(u){if(!xr(u)||ni(u)!=rt)return!1;var h=ju(u);if(h===null)return!0;var x=Qt.call(h,"constructor")&&h.constructor;return typeof x=="function"&&x instanceof x&&rr.call(x)==Jr}var jx=ma?_r(ma):ir;function wU(u){return W_(u)&&u>=-V&&u<=V}var G_=Ns?_r(Ns):Rt;function y2(u){return typeof u=="string"||!Tt(u)&&xr(u)&&ni(u)==wn}function jo(u){return typeof u=="symbol"||xr(u)&&ni(u)==pn}var Xh=o1?_r(o1):Nr;function CU(u){return u===n}function _U(u){return xr(u)&&ii(u)==Ze}function kU(u){return xr(u)&&ni(u)==Kt}var EU=_(Ws),PU=_(function(u,h){return u<=h});function j_(u){if(!u)return[];if(vo(u))return y2(u)?Mi(u):vi(u);if(qu&&u[qu])return Fv(u[qu]());var h=ii(u),x=h==Le?yh:h==qt?Pd:Qh;return x(u)}function ql(u){if(!u)return u===0?u:0;if(u=Ca(u),u===Y||u===-Y){var h=u<0?-1:1;return h*ae}return u===u?u:0}function It(u){var h=ql(u),x=h%1;return h===h?x?h-x:h:0}function q_(u){return u?Hl(It(u),0,X):0}function Ca(u){if(typeof u=="number")return u;if(jo(u))return oe;if(ar(u)){var h=typeof u.valueOf=="function"?u.valueOf():u;u=ar(h)?h+"":h}if(typeof u!="string")return u===0?u:+u;u=Vi(u);var x=X0.test(u);return x||J0.test(u)?Ge(u.slice(2),x?2:8):Y0.test(u)?oe:+u}function K_(u){return Sa(u,yo(u))}function TU(u){return u?Hl(It(u),-V,V):u===0?u:0}function vn(u){return u==null?"":ji(u)}var LU=qi(function(u,h){if(j1(h)||vo(h)){Sa(h,oi(h),u);return}for(var x in h)Qt.call(h,x)&&$s(u,x,h[x])}),Z_=qi(function(u,h){Sa(h,yo(h),u)}),x2=qi(function(u,h,x,A){Sa(h,yo(h),u,A)}),AU=qi(function(u,h,x,A){Sa(h,oi(h),u,A)}),IU=Xn(Eh);function MU(u,h){var x=$l(u);return h==null?x:Ke(x,h)}var RU=vt(function(u,h){u=on(u);var x=-1,A=h.length,R=A>2?h[2]:n;for(R&&Ki(h[0],h[1],R)&&(A=1);++x1),B}),Sa(u,ce(u),x),A&&(x=ti(x,g|m|y,Ct));for(var R=h.length;R--;)Gh(x,h[R]);return x});function XU(u,h){return X_(u,m2(ke(h)))}var QU=Xn(function(u,h){return u==null?{}:N1(u,h)});function X_(u,h){if(u==null)return{};var x=On(ce(u),function(A){return[A]});return h=ke(h),Bh(u,x,function(A,R){return h(A,R[0])})}function JU(u,h,x){h=qs(h,u);var A=-1,R=h.length;for(R||(R=1,u=n);++Ah){var A=u;u=h,h=A}if(x||u%1||h%1){var R=v1();return qr(u+R*(h-u+ue("1e-"+((R+"").length-1))),h)}return Hd(u,h)}var cG=Ys(function(u,h,x){return h=h.toLowerCase(),u+(x?ek(h):h)});function ek(u){return Zx(vn(u).toLowerCase())}function tk(u){return u=vn(u),u&&u.replace(t1,zv).replace(ch,"")}function dG(u,h,x){u=vn(u),h=ji(h);var A=u.length;x=x===n?A:Hl(It(x),0,A);var R=x;return x-=h.length,x>=0&&u.slice(x,R)==h}function fG(u){return u=vn(u),u&&pa.test(u)?u.replace(Ps,Xa):u}function hG(u){return u=vn(u),u&&U0.test(u)?u.replace(dd,"\\$&"):u}var pG=Ys(function(u,h,x){return u+(x?"-":"")+h.toLowerCase()}),gG=Ys(function(u,h,x){return u+(x?" ":"")+h.toLowerCase()}),mG=Zh("toLowerCase");function vG(u,h,x){u=vn(u),h=It(h);var A=h?ya(u):0;if(!h||A>=h)return u;var R=(h-A)/2;return c(Bl(R),x)+u+c(Od(R),x)}function yG(u,h,x){u=vn(u),h=It(h);var A=h?ya(u):0;return h&&A>>0,x?(u=vn(u),u&&(typeof h=="string"||h!=null&&!jx(h))&&(h=ji(h),!h&&zl(u))?rs(Mi(u),0,x):u.split(h,x)):[]}var kG=Ys(function(u,h,x){return u+(x?" ":"")+Zx(h)});function EG(u,h,x){return u=vn(u),x=x==null?0:Hl(It(x),0,u.length),h=ji(h),u.slice(x,x+h.length)==h}function PG(u,h,x){var A=z.templateSettings;x&&Ki(u,h,x)&&(h=n),u=vn(u),h=x2({},h,A,Oe);var R=x2({},h.imports,A.imports,Oe),B=oi(R),G=Ed(R,B),K,ie,we=0,Ce=h.interpolate||Ls,Te="__p += '",We=Ld((h.escape||Ls).source+"|"+Ce.source+"|"+(Ce===Pu?Z0:Ls).source+"|"+(h.evaluate||Ls).source+"|$","g"),st="//# sourceURL="+(Qt.call(h,"sourceURL")?(h.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++fh+"]")+` +`;u.replace(We,function(ht,Ht,Xt,qo,Zi,Ko){return Xt||(Xt=qo),Te+=u.slice(we,Ko).replace(n1,zs),Ht&&(K=!0,Te+=`' + +__e(`+Ht+`) + +'`),Zi&&(ie=!0,Te+=`'; +`+Zi+`; +__p += '`),Xt&&(Te+=`' + +((__t = (`+Xt+`)) == null ? '' : __t) + +'`),we=Ko+ht.length,ht}),Te+=`'; +`;var ft=Qt.call(h,"variable")&&h.variable;if(!ft)Te=`with (obj) { +`+Te+` +} +`;else if(q0.test(ft))throw new yt(s);Te=(ie?Te.replace(Zt,""):Te).replace(Zn,"$1").replace(ao,"$1;"),Te="function("+(ft||"obj")+`) { +`+(ft?"":`obj || (obj = {}); +`)+"var __t, __p = ''"+(K?", __e = _.escape":"")+(ie?`, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +`:`; +`)+Te+`return __p +}`;var Nt=rk(function(){return Yt(B,st+"return "+Te).apply(n,G)});if(Nt.source=Te,Gx(Nt))throw Nt;return Nt}function TG(u){return vn(u).toLowerCase()}function LG(u){return vn(u).toUpperCase()}function AG(u,h,x){if(u=vn(u),u&&(x||h===n))return Vi(u);if(!u||!(h=ji(h)))return u;var A=Mi(u),R=Mi(h),B=zo(A,R),G=Ya(A,R)+1;return rs(A,B,G).join("")}function IG(u,h,x){if(u=vn(u),u&&(x||h===n))return u.slice(0,c1(u)+1);if(!u||!(h=ji(h)))return u;var A=Mi(u),R=Ya(A,Mi(h))+1;return rs(A,0,R).join("")}function MG(u,h,x){if(u=vn(u),u&&(x||h===n))return u.replace(Tu,"");if(!u||!(h=ji(h)))return u;var A=Mi(u),R=zo(A,Mi(h));return rs(A,R).join("")}function RG(u,h){var x=W,A=q;if(ar(h)){var R="separator"in h?h.separator:R;x="length"in h?It(h.length):x,A="omission"in h?ji(h.omission):A}u=vn(u);var B=u.length;if(zl(u)){var G=Mi(u);B=G.length}if(x>=B)return u;var K=x-ya(A);if(K<1)return A;var ie=G?rs(G,0,K).join(""):u.slice(0,K);if(R===n)return ie+A;if(G&&(K+=ie.length-K),jx(R)){if(u.slice(K).search(R)){var we,Ce=ie;for(R.global||(R=Ld(R.source,vn(ja.exec(R))+"g")),R.lastIndex=0;we=R.exec(Ce);)var Te=we.index;ie=ie.slice(0,Te===n?K:Te)}}else if(u.indexOf(ji(R),K)!=K){var We=ie.lastIndexOf(R);We>-1&&(ie=ie.slice(0,We))}return ie+A}function OG(u){return u=vn(u),u&&W0.test(u)?u.replace(ui,Hv):u}var NG=Ys(function(u,h,x){return u+(x?" ":"")+h.toUpperCase()}),Zx=Zh("toUpperCase");function nk(u,h,x){return u=vn(u),h=x?n:h,h===n?vh(u)?Td(u):s1(u):u.match(h)||[]}var rk=vt(function(u,h){try{return di(u,n,h)}catch(x){return Gx(x)?x:new yt(x)}}),DG=Xn(function(u,h){return Hn(h,function(x){x=Xs(x),Ho(u,x,Vx(u[x],u))}),u});function zG(u){var h=u==null?0:u.length,x=ke();return u=h?On(u,function(A){if(typeof A[1]!="function")throw new fi(a);return[x(A[0]),A[1]]}):[],vt(function(A){for(var R=-1;++RV)return[];var x=X,A=qr(u,X);h=ke(h),u-=X;for(var R=kd(A,h);++x0||h<0)?new $t(x):(u<0?x=x.takeRight(-u):u&&(x=x.drop(u)),h!==n&&(h=It(h),x=h<0?x.dropRight(-h):x.take(h-u)),x)},$t.prototype.takeRightWhile=function(u){return this.reverse().takeWhile(u).reverse()},$t.prototype.toArray=function(){return this.take(X)},Uo($t.prototype,function(u,h){var x=/^(?:filter|find|map|reject)|While$/.test(h),A=/^(?:head|last)$/.test(h),R=z[A?"take"+(h=="last"?"Right":""):h],B=A||/^find/.test(h);!R||(z.prototype[h]=function(){var G=this.__wrapped__,K=A?[1]:arguments,ie=G instanceof $t,we=K[0],Ce=ie||Tt(G),Te=function(Ht){var Xt=R.apply(z,va([Ht],K));return A&&We?Xt[0]:Xt};Ce&&x&&typeof we=="function"&&we.length!=1&&(ie=Ce=!1);var We=this.__chain__,st=!!this.__actions__.length,ft=B&&!We,Nt=ie&&!st;if(!B&&Ce){G=Nt?G:new $t(this);var ht=u.apply(G,K);return ht.__actions__.push({func:f2,args:[Te],thisArg:n}),new Ui(ht,We)}return ft&&Nt?u.apply(this,K):(ht=this.thru(Te),ft?A?ht.value()[0]:ht.value():ht)})}),Hn(["pop","push","shift","sort","splice","unshift"],function(u){var h=Wu[u],x=/^(?:push|sort|unshift)$/.test(u)?"tap":"thru",A=/^(?:pop|shift)$/.test(u);z.prototype[u]=function(){var R=arguments;if(A&&!this.__chain__){var B=this.value();return h.apply(Tt(B)?B:[],R)}return this[x](function(G){return h.apply(Tt(G)?G:[],R)})}}),Uo($t.prototype,function(u,h){var x=z[h];if(x){var A=x.name+"";Qt.call(Qa,A)||(Qa[A]=[]),Qa[A].push({name:h,func:x})}}),Qa[qd(n,P).name]=[{name:"wrapper",func:n}],$t.prototype.clone=Ri,$t.prototype.reverse=pi,$t.prototype.value=Yv,z.prototype.at=dV,z.prototype.chain=fV,z.prototype.commit=hV,z.prototype.next=pV,z.prototype.plant=mV,z.prototype.reverse=vV,z.prototype.toJSON=z.prototype.valueOf=z.prototype.value=yV,z.prototype.first=z.prototype.head,qu&&(z.prototype[qu]=gV),z},xa=fo();Bt?((Bt.exports=xa)._=xa,St._=xa):dt._=xa}).call(nu)})(la,la.exports);const Wt=la.exports;var yS=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function xS(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function QF(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function eve(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,i=!0,o=0;o=0&&Jn.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&Jn.splice(0,Jn.length),(t===93||t===224)&&(t=91),t in _i){_i[t]=!1;for(var r in Yc)Yc[r]===t&&(ea[r]=!1)}}function ave(e){if(typeof e>"u")Object.keys(Fr).forEach(function(a){return delete Fr[a]});else if(Array.isArray(e))e.forEach(function(a){a.key&&bS(a)});else if(typeof e=="object")e.key&&bS(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?QF(Yc,d):[];Fr[m]=Fr[m].filter(function(b){var S=i?b.method===i:!0;return!(S&&b.scope===r&&eve(b.mods,y))})}})};function EL(e,t,n,r){if(t.element===r){var i;if(t.scope===n||t.scope==="all"){i=t.mods.length>0;for(var o in _i)Object.prototype.hasOwnProperty.call(_i,o)&&(!_i[o]&&t.mods.indexOf(+o)>-1||_i[o]&&t.mods.indexOf(+o)===-1)&&(i=!1);(t.mods.length===0&&!_i[16]&&!_i[18]&&!_i[17]&&!_i[91]||i||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function PL(e,t){var n=Fr["*"],r=e.keyCode||e.which||e.charCode;if(!!ea.filter.call(this,e)){if((r===93||r===224)&&(r=91),Jn.indexOf(r)===-1&&r!==229&&Jn.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var S=Y6[b];e[b]&&Jn.indexOf(S)===-1?Jn.push(S):!e[b]&&Jn.indexOf(S)>-1?Jn.splice(Jn.indexOf(S),1):b==="metaKey"&&e[b]&&Jn.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(Jn=Jn.slice(Jn.indexOf(S))))}),r in _i){_i[r]=!0;for(var i in Yc)Yc[i]===r&&(ea[i]=!0);if(!n)return}for(var o in _i)Object.prototype.hasOwnProperty.call(_i,o)&&(_i[o]=e[Y6[o]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(Jn.indexOf(17)===-1&&Jn.push(17),Jn.indexOf(18)===-1&&Jn.push(18),_i[17]=!0,_i[18]=!0);var a=Qm();if(n)for(var s=0;s-1}function ea(e,t,n){Jn=[];var r=JF(e),i=[],o="all",a=document,s=0,l=!1,d=!0,p="+",g=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(o=t.scope),t.element&&(a=t.element),t.keyup&&(l=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(g=t.capture),typeof t.splitKey=="string"&&(p=t.splitKey)),typeof t=="string"&&(o=t);s1&&(i=QF(Yc,e)),e=e[e.length-1],e=e==="*"?"*":dx(e),e in Fr||(Fr[e]=[]),Fr[e].push({keyup:l,keydown:d,scope:o,mods:i,shortcut:r[s],method:n,key:r[s],splitKey:p,element:a});typeof a<"u"&&!sve(a)&&window&&(tB.push(a),xS(a,"keydown",function(m){PL(m,a)},g),kL||(kL=!0,xS(window,"focus",function(){Jn=[]},g)),xS(a,"keyup",function(m){PL(m,a),ove(m)},g))}function lve(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(Fr).forEach(function(n){var r=Fr[n].find(function(i){return i.scope===t&&i.shortcut===e});r&&r.method&&r.method()})}var SS={setScope:nB,getScope:Qm,deleteScope:ive,getPressedKeyCodes:tve,isPressed:rve,filter:nve,trigger:lve,unbind:ave,keyMap:T7,modifier:Yc,modifierMap:Y6};for(var wS in SS)Object.prototype.hasOwnProperty.call(SS,wS)&&(ea[wS]=SS[wS]);if(typeof window<"u"){var uve=window.hotkeys;ea.noConflict=function(e){return e&&window.hotkeys===ea&&(window.hotkeys=uve),ea},window.hotkeys=ea}ea.filter=function(){return!0};var rB=function(t,n){var r=t.target,i=r&&r.tagName;return Boolean(i&&n&&n.includes(i))},cve=function(t){return rB(t,["INPUT","TEXTAREA","SELECT"])};function Dt(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var i=n||{},o=i.enableOnTags,a=i.filter,s=i.keyup,l=i.keydown,d=i.filterPreventDefault,p=d===void 0?!0:d,g=i.enabled,m=g===void 0?!0:g,y=i.enableOnContentEditable,b=y===void 0?!1:y,S=C.exports.useRef(null),E=C.exports.useCallback(function(P,k){var L,I;return a&&!a(P)?!p:cve(P)&&!rB(P,o)||(L=P.target)!=null&&L.isContentEditable&&!b?!0:S.current===null||document.activeElement===S.current||(I=S.current)!=null&&I.contains(document.activeElement)?(t(P,k),!0):!1},r?[S,o,a].concat(r):[S,o,a]);return C.exports.useEffect(function(){if(!m){ea.unbind(e,E);return}return s&&l!==!0&&(n.keydown=!1),ea(e,n||{},E),function(){return ea.unbind(e,E)}},[E,e,m]),S}ea.isPressed;function dve(){return te("div",{className:"work-in-progress nodes-work-in-progress",children:[w("h1",{children:"Nodes"}),w("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function fve(){return te("div",{className:"work-in-progress outpainting-work-in-progress",children:[w("h1",{children:"Outpainting"}),w("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const hve=()=>te("div",{className:"work-in-progress post-processing-work-in-progress",children:[w("h1",{children:"Post Processing"}),w("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image and Image To Image tabs. You can also process images directly, using the image action buttons above the main image display."}),w("p",{children:"A dedicated UI will be released soon to facilitate more advanced post processing workflows."}),w("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen."})]}),pve=nt({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:w("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),gve=nt({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),mve=nt({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),vve=nt({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),yve=nt({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),xve=nt({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:w("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:w("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var Ji=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(Ji||{});const bve={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN or Codeformer, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher strength values will apply a stronger corrective pressure on outputs, resulting in more appealing faces. With Codeformer, a higher fidelity will attempt to preserve the original image, at the expense of face correction strength.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},Su=e=>{const{label:t,isDisabled:n=!1,width:r="auto",formControlProps:i,formLabelProps:o,styleClass:a,...s}=e;return w(td,{isDisabled:n,width:r,className:`invokeai__switch-form-control ${a}`,...i,children:te(Gf,{className:"invokeai__switch-form-label",whiteSpace:"nowrap",...o,children:[t,w(f7,{className:"invokeai__switch-root",...s})]})})};function L7(){const e=$e(i=>i.system.isGFPGANAvailable),t=$e(i=>i.options.shouldRunFacetool),n=ct();return te(Dn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Restore Face"}),w(Su,{isDisabled:!e,isChecked:t,onChange:i=>n(Gwe(i.target.checked))})]})}const TL=/^-?(0\.)?\.?$/,no=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:i=!0,width:o,textAlign:a,isInvalid:s,value:l,onChange:d,min:p,max:g,isInteger:m=!0,formControlProps:y,formLabelProps:b,numberInputFieldProps:S,numberInputStepperProps:E,tooltipProps:P,...k}=e,[L,I]=C.exports.useState(String(l));C.exports.useEffect(()=>{!L.match(TL)&&l!==Number(L)&&I(String(l))},[l,L]);const O=D=>{I(D),D.match(TL)||d(m?Math.floor(Number(D)):Number(D))},N=D=>{const F=Wt.clamp(m?Math.floor(Number(D.target.value)):Number(D.target.value),p,g);I(String(F)),d(F)};return w(Xr,{...P,children:te(td,{isDisabled:r,isInvalid:s,className:n?`invokeai__number-input-form-control ${n}`:"invokeai__number-input-form-control",...y,children:[w(Gf,{className:"invokeai__number-input-form-label",style:{display:t?"block":"none"},...b,children:t}),te(qz,{className:"invokeai__number-input-root",value:L,keepWithinRange:!0,clampValueOnBlur:!1,onChange:O,onBlur:N,width:o,...k,children:[w(Kz,{className:"invokeai__number-input-field",textAlign:a,...S}),te("div",{className:"invokeai__number-input-stepper",style:i?{display:"block"}:{display:"none"},children:[w(Xz,{...E,className:"invokeai__number-input-stepper-button"}),w(Yz,{...E,className:"invokeai__number-input-stepper-button"})]})]})]})})},N0=e=>{const{label:t,isDisabled:n,validValues:r,size:i="sm",fontSize:o="md",styleClass:a,...s}=e;return te(td,{isDisabled:n,className:`invokeai__select ${a}`,onClick:l=>{l.stopPropagation(),l.nativeEvent.stopImmediatePropagation(),l.nativeEvent.stopPropagation(),l.nativeEvent.cancelBubble=!0},children:[w(Gf,{fontSize:o,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"invokeai__select-label",children:t}),w(iF,{fontSize:o,size:i,...s,className:"invokeai__select-picker",children:r.map(l=>typeof l=="string"||typeof l=="number"?w("option",{value:l,className:"invokeai__select-option",children:l},l):w("option",{value:l.value,children:l.key},l.value))})]})},Sve=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],wve=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],Cve=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],_ve=[{key:"2x",value:2},{key:"4x",value:4}],A7=0,I7=4294967295,kve=["gfpgan","codeformer"],Eve=[{key:"None",value:"none"},{key:"Fast",value:"latents"},{key:"Accurate",value:"full-res"}],Pve=jt(e=>e.options,e=>({facetoolStrength:e.facetoolStrength,facetoolType:e.facetoolType,codeformerFidelity:e.codeformerFidelity}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),Tve=jt(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),fx=()=>{const e=ct(),{facetoolStrength:t,facetoolType:n,codeformerFidelity:r}=$e(Pve),{isGFPGANAvailable:i}=$e(Tve),o=l=>e(h3(l)),a=l=>e(gH(l)),s=l=>e(p3(l.target.value));return te(Dn,{direction:"column",gap:2,children:[w(N0,{label:"Type",validValues:kve.concat(),value:n,onChange:s}),w(no,{isDisabled:!i,label:"Strength",step:.05,min:0,max:1,onChange:o,value:t,width:"90px",isInteger:!1}),n==="codeformer"&&w(no,{isDisabled:!i,label:"Fidelity",step:.05,min:0,max:1,onChange:a,value:r,width:"90px",isInteger:!1})]})};function Lve(){const e=ct(),t=$e(r=>r.options.shouldFitToWidthHeight);return w(Su,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(mH(r.target.checked))})}function iB(e){const{label:t="Strength",styleClass:n}=e,r=$e(a=>a.options.img2imgStrength),i=ct();return w(no,{label:t,step:.01,min:.01,max:.99,onChange:a=>i(pH(a)),value:r,width:"100%",isInteger:!1,styleClass:n})}const oB=()=>w(Pl,{flex:"1",textAlign:"left",children:"Other Options"}),Ave=()=>{const e=ct(),t=$e(r=>r.options.hiresFix);return w(Dn,{gap:2,direction:"column",children:w(Su,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(hH(r.target.checked))})})},Ive=()=>{const e=ct(),t=$e(r=>r.options.seamless);return w(Dn,{gap:2,direction:"column",children:w(Su,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(fH(r.target.checked))})})},aB=()=>te(Dn,{gap:2,direction:"column",children:[w(Ive,{}),w(Ave,{})]}),M7=()=>w(Pl,{flex:"1",textAlign:"left",children:"Seed"});function Mve(){const e=ct(),t=$e(r=>r.options.shouldRandomizeSeed);return w(Su,{label:"Randomize Seed",isChecked:t,onChange:r=>e(qwe(r.target.checked))})}function Rve(){const e=$e(o=>o.options.seed),t=$e(o=>o.options.shouldRandomizeSeed),n=$e(o=>o.options.shouldGenerateVariations),r=ct(),i=o=>r(Iv(o));return w(no,{label:"Seed",step:1,precision:0,flexGrow:1,min:A7,max:I7,isDisabled:t,isInvalid:e<0&&n,onChange:i,value:e,width:"10rem"})}const sB=(e,t)=>Math.floor(Math.random()*(t-e+1)+e);function Ove(){const e=ct(),t=$e(r=>r.options.shouldRandomizeSeed);return w(Na,{size:"sm",isDisabled:t,onClick:()=>e(Iv(sB(A7,I7))),children:w("p",{children:"Shuffle"})})}function Nve(){const e=ct(),t=$e(r=>r.options.threshold);return w(no,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e($we(r)),value:t,isInteger:!1})}function Dve(){const e=ct(),t=$e(r=>r.options.perlin);return w(no,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(Hwe(r)),value:t,isInteger:!1})}const R7=()=>te(Dn,{gap:2,direction:"column",children:[w(Mve,{}),te(Dn,{gap:2,children:[w(Rve,{}),w(Ove,{})]}),w(Dn,{gap:2,children:w(Nve,{})}),w(Dn,{gap:2,children:w(Dve,{})})]});function O7(){const e=$e(i=>i.system.isESRGANAvailable),t=$e(i=>i.options.shouldRunESRGAN),n=ct();return te(Dn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Upscale"}),w(Su,{isDisabled:!e,isChecked:t,onChange:i=>n(jwe(i.target.checked))})]})}const zve=jt(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),Fve=jt(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),hx=()=>{const e=ct(),{upscalingLevel:t,upscalingStrength:n}=$e(zve),{isESRGANAvailable:r}=$e(Fve);return te("div",{className:"upscale-options",children:[w(N0,{isDisabled:!r,label:"Scale",value:t,onChange:a=>e(TC(Number(a.target.value))),validValues:_ve}),w(no,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:a=>e(LC(a)),value:n,isInteger:!1})]})};function Bve(){const e=$e(r=>r.options.shouldGenerateVariations),t=ct();return w(Su,{isChecked:e,width:"auto",onChange:r=>t(Wwe(r.target.checked))})}function N7(){return te(Dn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Variations"}),w(Bve,{})]})}function $ve(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:i="1rem",width:o,isInvalid:a,...s}=e;return te(td,{className:`input ${n}`,isInvalid:a,isDisabled:r,flexGrow:1,children:[w(Gf,{fontSize:i,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),w(D8,{...s,className:"input-entry",size:"sm",width:o})]})}function Hve(){const e=$e(i=>i.options.seedWeights),t=$e(i=>i.options.shouldGenerateVariations),n=ct(),r=i=>n(vH(i.target.value));return w($ve,{label:"Seed Weights",value:e,isInvalid:t&&!(P7(e)||e===""),isDisabled:!t,onChange:r})}function Wve(){const e=$e(i=>i.options.variationAmount),t=$e(i=>i.options.shouldGenerateVariations),n=ct();return w(no,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:i=>n(Vwe(i)),isInteger:!1})}const D7=()=>te(Dn,{gap:2,direction:"column",children:[w(Wve,{}),w(Hve,{})]}),Jm=e=>{const{label:t,styleClass:n,...r}=e;return w(gD,{className:`invokeai__checkbox ${n}`,...r,children:t})};function z7(){const e=$e(r=>r.options.showAdvancedOptions),t=ct();return w(Jm,{label:"Advanced Options",styleClass:"advanced-options-checkbox",onChange:r=>t(Kwe(r.target.checked)),isChecked:e})}function Vve(){const e=ct(),t=$e(r=>r.options.cfgScale);return w(no,{label:"CFG Scale",step:.5,min:1.01,max:30,onChange:r=>e(lH(r)),value:t,width:F7,fontSize:D0,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}const Ga=jt(e=>e.options,e=>Av[e.activeTab],{memoizeOptions:{equalityCheck:Wt.isEqual}});function Uve(){const{height:e}=$e(i=>i.options),t=$e(Ga),n=ct();return w(N0,{isDisabled:t==="inpainting",label:"Height",value:e,flexGrow:1,onChange:i=>n(uH(Number(i.target.value))),validValues:Cve,fontSize:D0,styleClass:"main-option-block"})}function Gve(){const e=ct(),t=$e(r=>r.options.iterations);return w(no,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(Bwe(r)),value:t,width:F7,fontSize:D0,styleClass:"main-option-block",textAlign:"center"})}function jve(){const e=$e(r=>r.options.sampler),t=ct();return w(N0,{label:"Sampler",value:e,onChange:r=>t(dH(r.target.value)),validValues:Sve,fontSize:D0,styleClass:"main-option-block"})}function qve(){const e=ct(),t=$e(r=>r.options.steps);return w(no,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(sH(r)),value:t,width:F7,fontSize:D0,styleClass:"main-option-block",textAlign:"center"})}function Kve(){const{width:e,activeTab:t}=$e(i=>i.options),n=ct(),r=i=>n(cH(Number(i.target.value)));return w(N0,{isDisabled:Av[t]==="inpainting",label:"Width",value:e,flexGrow:1,onChange:r,validValues:wve,fontSize:D0,styleClass:"main-option-block"})}const D0="0.9rem",F7="auto";function B7(){return w("div",{className:"main-options",children:te("div",{className:"main-options-list",children:[te("div",{className:"main-options-row",children:[w(Gve,{}),w(qve,{}),w(Vve,{})]}),te("div",{className:"main-options-row",children:[w(Kve,{}),w(Uve,{}),w(jve,{})]})]})})}const Zve={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgressType:"none",shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",model_list:{},hasError:!1,wasErrorSeen:!0,isCancelable:!0},Yve=Zve,lB=J4({name:"system",initialState:Yve,reducers:{setShouldDisplayInProgressType:(e,t)=>{e.shouldDisplayInProgressType=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:i}=t.payload,a={timestamp:n,message:r,level:i||"info"};e.log.push(a)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"},setModelList:(e,t)=>{e.model_list=t.payload},setIsCancelable:(e,t)=>{e.isCancelable=t.payload},modelChangeRequested:e=>{e.currentStatus="Loading Model",e.isCancelable=!1,e.isProcessing=!0,e.currentStatusHasSteps=!1}}}),{setShouldDisplayInProgressType:Xve,setIsProcessing:Jp,addLogEntry:Si,setShouldShowLogViewer:LL,setIsConnected:AL,setSocketId:B9e,setShouldConfirmOnDelete:uB,setOpenAccordions:Qve,setSystemStatus:Jve,setCurrentStatus:CS,setSystemConfig:e2e,setShouldDisplayGuides:t2e,processingCanceled:n2e,errorOccurred:X6,errorSeen:cB,setModelList:IL,setIsCancelable:ML,modelChangeRequested:r2e}=lB.actions,i2e=lB.reducer;var dB={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},RL=ne.createContext&&ne.createContext(dB),Hc=globalThis&&globalThis.__assign||function(){return Hc=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),b2e=({children:e,feature:t})=>{const n=$e(x2e),{text:r}=bve[t];return n?te(j4,{trigger:"hover",children:[w(Z4,{children:w(Pl,{children:e})}),te(K4,{className:"guide-popover-content",maxWidth:"400px",onClick:i=>i.preventDefault(),cursor:"initial",children:[w(q4,{className:"guide-popover-arrow"}),w("div",{className:"guide-popover-guide-content",children:r})]})]}):null},S2e=Ee(({feature:e,icon:t=hB},n)=>w(b2e,{feature:e,children:w(Pl,{ref:n,children:w(ha,{as:t})})}));function w2e(e){const{header:t,feature:n,options:r}=e;return te(Sf,{className:"advanced-settings-item",children:[w("h2",{children:te(xf,{className:"advanced-settings-header",children:[t,w(S2e,{feature:n}),w(bf,{})]})}),w(wf,{className:"advanced-settings-panel",children:r})]})}const $7=e=>{const{accordionInfo:t}=e,n=$e(a=>a.system.openAccordions),r=ct();return w(N4,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:a=>r(Qve(a)),className:"advanced-settings",children:(()=>{const a=[];return t&&Object.keys(t).forEach(s=>{a.push(w(w2e,{header:t[s].header,feature:t[s].feature,options:t[s].options},s))}),a})()})};function C2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function _2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function k2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function E2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function P2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function T2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function L2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function gB(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function A2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"}}]})(e)}function I2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function M2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z"}}]})(e)}function R2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function O2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function mB(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"}}]})(e)}function N2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"}}]})(e)}function D2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"}}]})(e)}function z2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function F2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"}}]})(e)}function B2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z"}}]})(e)}function $2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function H2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function W2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function V2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"}}]})(e)}function U2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"}}]})(e)}function G2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}function j2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"}}]})(e)}function q2e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"}}]})(e)}const vB=jt([e=>e.options,e=>e.system,e=>e.inpainting,Ga],(e,t,n,r)=>{const{prompt:i,shouldGenerateVariations:o,seedWeights:a,maskPath:s,initialImage:l,seed:d}=e,{isProcessing:p,isConnected:g}=t,{imageToInpaint:m}=n;return!(!i||Boolean(i.match(/^[\s\r\n]+$/))||r==="img2img"&&!l||r==="inpainting"&&!m||s&&!l||p||!g||o&&(!(P7(a)||a==="")||d===-1))},{memoizeOptions:{equalityCheck:Wt.isEqual,resultEqualityCheck:Wt.isEqual}}),Q6=Hi("socketio/generateImage"),K2e=Hi("socketio/runESRGAN"),Z2e=Hi("socketio/runFacetool"),Y2e=Hi("socketio/deleteImage"),J6=Hi("socketio/requestImages"),OL=Hi("socketio/requestNewImages"),X2e=Hi("socketio/cancelProcessing"),NL=Hi("socketio/uploadImage");Hi("socketio/uploadMaskImage");const Q2e=Hi("socketio/requestSystemConfig"),J2e=Hi("socketio/requestModelChange"),k5=e=>{const{label:t,tooltip:n="",styleClass:r,...i}=e;return w(Xr,{label:n,children:w(Na,{className:r||"",...i,children:t})})},sn=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",styleClass:r,onClick:i,cursor:o,...a}=e;return w(Xr,{label:t,hasArrow:!0,placement:n,children:w(Bi,{className:`icon-button ${r}`,...a,cursor:o||(i?"pointer":"unset"),onClick:i})})};function yB(e){const{iconButton:t=!1,...n}=e,r=ct(),i=$e(vB),o=$e(Ga),a=()=>{r(Q6(o))};return Dt("ctrl+enter, cmd+enter",()=>{i&&r(Q6(o))},[i,o]),t?w(sn,{"aria-label":"Invoke",type:"submit",icon:w(D2e,{}),isDisabled:!i,onClick:a,className:"invoke-btn invoke",tooltip:"Invoke",tooltipPlacement:"bottom",...n}):w(k5,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!i,onClick:a,className:"invoke-btn",...n})}const eye=jt(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isCancelable:e.isCancelable}),{memoizeOptions:{resultEqualityCheck:Wt.isEqual}});function xB(e){const{...t}=e,n=ct(),{isProcessing:r,isConnected:i,isCancelable:o}=$e(eye),a=()=>n(X2e());return Dt("shift+x",()=>{(i||r)&&o&&a()},[i,r,o]),w(sn,{icon:w(y2e,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!i||!r||!o,onClick:a,styleClass:"cancel-btn",...t})}const tye=jt(e=>e.options,e=>e.shouldLoopback),bB=()=>{const e=ct(),t=$e(tye);return w(sn,{"aria-label":"Loopback",tooltip:"Loopback","data-selected":t,icon:w(F2e,{}),onClick:()=>{e(n6e(!t))}})},H7=()=>te("div",{className:"process-buttons",children:[w(yB,{}),w(bB,{}),w(xB,{})]}),nye=jt([e=>e.options,Ga],(e,t)=>({prompt:e.prompt,activeTabName:t}),{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),W7=()=>{const e=ct(),{prompt:t,activeTabName:n}=$e(nye),r=$e(vB),i=C.exports.useRef(null),o=s=>{e(d_(s.target.value))};Dt("alt+a",()=>{i.current?.focus()},[]);const a=s=>{s.key==="Enter"&&s.shiftKey===!1&&r&&(s.preventDefault(),e(Q6(n)))};return w("div",{className:"prompt-bar",children:w(td,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),children:w(_F,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:o,onKeyDown:a,resize:"vertical",height:30,ref:i})})})};function SB(e){return mt({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146z"}}]})(e)}function wB(e){return mt({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146zm.122 2.112v-.002.002zm0-.002v.002a.5.5 0 0 1-.122.51L6.293 6.878a.5.5 0 0 1-.511.12H5.78l-.014-.004a4.507 4.507 0 0 0-.288-.076 4.922 4.922 0 0 0-.765-.116c-.422-.028-.836.008-1.175.15l5.51 5.509c.141-.34.177-.753.149-1.175a4.924 4.924 0 0 0-.192-1.054l-.004-.013v-.001a.5.5 0 0 1 .12-.512l3.536-3.535a.5.5 0 0 1 .532-.115l.096.022c.087.017.208.034.344.034.114 0 .23-.011.343-.04L9.927 2.028c-.029.113-.04.23-.04.343a1.779 1.779 0 0 0 .062.46z"}}]})(e)}function rye(e,t){return e.classList?!!t&&e.classList.contains(t):(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")!==-1}function iye(e,t){e.classList?e.classList.add(t):rye(e,t)||(typeof e.className=="string"?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))}function DL(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function oye(e,t){e.classList?e.classList.remove(t):typeof e.className=="string"?e.className=DL(e.className,t):e.setAttribute("class",DL(e.className&&e.className.baseVal||"",t))}const zL={disabled:!1},CB=ne.createContext(null);var _B=function(t){return t.scrollTop},Pg="unmounted",af="exited",sf="entering",hp="entered",eC="exiting",wu=function(e){X8(t,e);function t(r,i){var o;o=e.call(this,r,i)||this;var a=i,s=a&&!a.isMounting?r.enter:r.appear,l;return o.appearStatus=null,r.in?s?(l=af,o.appearStatus=sf):l=hp:r.unmountOnExit||r.mountOnEnter?l=Pg:l=af,o.state={status:l},o.nextCallback=null,o}t.getDerivedStateFromProps=function(i,o){var a=i.in;return a&&o.status===Pg?{status:af}:null};var n=t.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(i){var o=null;if(i!==this.props){var a=this.state.status;this.props.in?a!==sf&&a!==hp&&(o=sf):(a===sf||a===hp)&&(o=eC)}this.updateStatus(!1,o)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var i=this.props.timeout,o,a,s;return o=a=s=i,i!=null&&typeof i!="number"&&(o=i.exit,a=i.enter,s=i.appear!==void 0?i.appear:a),{exit:o,enter:a,appear:s}},n.updateStatus=function(i,o){if(i===void 0&&(i=!1),o!==null)if(this.cancelNextCallback(),o===sf){if(this.props.unmountOnExit||this.props.mountOnEnter){var a=this.props.nodeRef?this.props.nodeRef.current:z2.findDOMNode(this);a&&_B(a)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===af&&this.setState({status:Pg})},n.performEnter=function(i){var o=this,a=this.props.enter,s=this.context?this.context.isMounting:i,l=this.props.nodeRef?[s]:[z2.findDOMNode(this),s],d=l[0],p=l[1],g=this.getTimeouts(),m=s?g.appear:g.enter;if(!i&&!a||zL.disabled){this.safeSetState({status:hp},function(){o.props.onEntered(d)});return}this.props.onEnter(d,p),this.safeSetState({status:sf},function(){o.props.onEntering(d,p),o.onTransitionEnd(m,function(){o.safeSetState({status:hp},function(){o.props.onEntered(d,p)})})})},n.performExit=function(){var i=this,o=this.props.exit,a=this.getTimeouts(),s=this.props.nodeRef?void 0:z2.findDOMNode(this);if(!o||zL.disabled){this.safeSetState({status:af},function(){i.props.onExited(s)});return}this.props.onExit(s),this.safeSetState({status:eC},function(){i.props.onExiting(s),i.onTransitionEnd(a.exit,function(){i.safeSetState({status:af},function(){i.props.onExited(s)})})})},n.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(i,o){o=this.setNextCallback(o),this.setState(i,o)},n.setNextCallback=function(i){var o=this,a=!0;return this.nextCallback=function(s){a&&(a=!1,o.nextCallback=null,i(s))},this.nextCallback.cancel=function(){a=!1},this.nextCallback},n.onTransitionEnd=function(i,o){this.setNextCallback(o);var a=this.props.nodeRef?this.props.nodeRef.current:z2.findDOMNode(this),s=i==null&&!this.props.addEndListener;if(!a||s){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var l=this.props.nodeRef?[this.nextCallback]:[a,this.nextCallback],d=l[0],p=l[1];this.props.addEndListener(d,p)}i!=null&&setTimeout(this.nextCallback,i)},n.render=function(){var i=this.state.status;if(i===Pg)return null;var o=this.props,a=o.children;o.in,o.mountOnEnter,o.unmountOnExit,o.appear,o.enter,o.exit,o.timeout,o.addEndListener,o.onEnter,o.onEntering,o.onEntered,o.onExit,o.onExiting,o.onExited,o.nodeRef;var s=K8(o,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return w(CB.Provider,{value:null,children:typeof a=="function"?a(i,s):ne.cloneElement(ne.Children.only(a),s)})},t}(ne.Component);wu.contextType=CB;wu.propTypes={};function lp(){}wu.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:lp,onEntering:lp,onEntered:lp,onExit:lp,onExiting:lp,onExited:lp};wu.UNMOUNTED=Pg;wu.EXITED=af;wu.ENTERING=sf;wu.ENTERED=hp;wu.EXITING=eC;const aye=wu;var sye=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return iye(t,r)})},_S=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return oye(t,r)})},V7=function(e){X8(t,e);function t(){for(var r,i=arguments.length,o=new Array(i),a=0;a{C.exports.useEffect(()=>{function r(i){e.current&&!e.current.contains(i.target)&&t()}return n&&document.addEventListener("mousedown",r),()=>{n&&document.removeEventListener("mousedown",r)}},[e,n,t])},Ea=(e,t)=>Math.floor(e/t)*t,FL=(e,t)=>Math.round(e/t)*t,lye={tool:"brush",brushSize:50,maskColor:{r:255,g:90,b:90,a:.5},canvasDimensions:{width:0,height:0},boundingBoxDimensions:{width:512,height:512},boundingBoxCoordinate:{x:0,y:0},boundingBoxPreviewFill:{r:0,g:0,b:0,a:.7},shouldShowBoundingBox:!0,shouldShowBoundingBoxFill:!0,cursorPosition:null,lines:[],pastLines:[],futureLines:[],shouldShowMask:!0,shouldInvertMask:!1,shouldShowCheckboardTransparency:!1,shouldShowBrush:!0,shouldShowBrushPreview:!1,needsCache:!1,isDrawing:!1,stageScale:1,shouldUseInpaintReplace:!1,inpaintReplace:1,shouldLockBoundingBox:!0},uye=lye,PB=J4({name:"inpainting",initialState:uye,reducers:{setTool:(e,t)=>{e.tool=t.payload},toggleTool:e=>{e.tool=e.tool==="brush"?"eraser":"brush"},setBrushSize:(e,t)=>{e.brushSize=t.payload},addLine:(e,t)=>{e.pastLines.push(e.lines),e.lines.push(t.payload),e.futureLines=[]},addPointToCurrentLine:(e,t)=>{e.lines[e.lines.length-1].points.push(...t.payload)},undo:e=>{if(e.pastLines.length===0)return;const t=e.pastLines.pop();!t||(e.futureLines.unshift(e.lines),e.lines=t)},redo:e=>{if(e.futureLines.length===0)return;const t=e.futureLines.shift();!t||(e.pastLines.push(e.lines),e.lines=t)},clearMask:e=>{e.pastLines.push(e.lines),e.lines=[],e.futureLines=[],e.shouldInvertMask=!1},toggleShouldInvertMask:e=>{e.shouldInvertMask=!e.shouldInvertMask},toggleShouldShowMask:e=>{e.shouldShowMask=!e.shouldShowMask},setShouldInvertMask:(e,t)=>{e.shouldInvertMask=t.payload},setShouldShowMask:(e,t)=>{e.shouldShowMask=t.payload,t.payload||(e.shouldInvertMask=!1)},setShouldShowCheckboardTransparency:(e,t)=>{e.shouldShowCheckboardTransparency=t.payload},setShouldShowBrushPreview:(e,t)=>{e.shouldShowBrushPreview=t.payload},setShouldShowBrush:(e,t)=>{e.shouldShowBrush=t.payload},setMaskColor:(e,t)=>{e.maskColor=t.payload},setCursorPosition:(e,t)=>{e.cursorPosition=t.payload},clearImageToInpaint:e=>{e.imageToInpaint=void 0},setImageToInpaint:(e,t)=>{const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,{x:a,y:s}=e.boundingBoxCoordinate,l={x:a,y:s},d={width:i,height:o};i+a>n&&(i>n&&(d.width=Ea(n,64)),l.x=n-d.width),o+s>r&&(o>r&&(d.height=Ea(r,64)),l.y=r-d.height),e.boundingBoxDimensions=d,e.boundingBoxCoordinate=l,e.canvasDimensions={width:n,height:r},e.imageToInpaint=t.payload,e.needsCache=!0},setCanvasDimensions:(e,t)=>{e.canvasDimensions=t.payload;const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,a=Ea(Wt.clamp(i,64,n),64),s=Ea(Wt.clamp(o,64,r),64);e.boundingBoxDimensions={width:a,height:s}},setBoundingBoxDimensions:(e,t)=>{e.boundingBoxDimensions=t.payload;const{width:n,height:r}=t.payload,{x:i,y:o}=e.boundingBoxCoordinate,{width:a,height:s}=e.canvasDimensions,l=Ea(a,64),d=Ea(s,64),p=Ea(n,64),g=Ea(r,64),m=i+n-a,y=o+r-s,b=Wt.clamp(p,64,l),S=Wt.clamp(g,64,d),E=m>0?i-m:i,P=y>0?o-y:o,k=Wt.clamp(E,0,l-b),L=Wt.clamp(P,0,d-S);e.boundingBoxDimensions={width:b,height:S},e.boundingBoxCoordinate={x:k,y:L}},setBoundingBoxCoordinate:(e,t)=>{e.boundingBoxCoordinate=t.payload},setBoundingBoxPreviewFill:(e,t)=>{e.boundingBoxPreviewFill=t.payload},setNeedsCache:(e,t)=>{e.needsCache=t.payload},setStageScale:(e,t)=>{e.stageScale=t.payload,e.needsCache=!1},setShouldShowBoundingBoxFill:(e,t)=>{e.shouldShowBoundingBoxFill=t.payload},setIsDrawing:(e,t)=>{e.isDrawing=t.payload},setClearBrushHistory:e=>{e.pastLines=[],e.futureLines=[]},setShouldUseInpaintReplace:(e,t)=>{e.shouldUseInpaintReplace=t.payload},setInpaintReplace:(e,t)=>{e.inpaintReplace=t.payload},setShouldLockBoundingBox:(e,t)=>{e.shouldLockBoundingBox=t.payload},toggleShouldLockBoundingBox:e=>{e.shouldLockBoundingBox=!e.shouldLockBoundingBox},setShouldShowBoundingBox:(e,t)=>{e.shouldShowBoundingBox=t.payload}}}),{setTool:BL,setBrushSize:cye,addLine:$L,addPointToCurrentLine:HL,setShouldInvertMask:dye,setShouldShowMask:fye,setShouldShowCheckboardTransparency:$9e,setShouldShowBrushPreview:kS,setMaskColor:hye,clearMask:pye,clearImageToInpaint:U7,undo:gye,redo:mye,setCursorPosition:WL,setCanvasDimensions:H9e,setImageToInpaint:E5,setBoundingBoxDimensions:Tg,setBoundingBoxCoordinate:VL,setBoundingBoxPreviewFill:W9e,setNeedsCache:Cf,setStageScale:vye,toggleTool:yye,setShouldShowBoundingBox:xye,setShouldShowBoundingBoxFill:bye,setIsDrawing:Lg,setShouldShowBrush:V9e,setClearBrushHistory:Sye,setShouldUseInpaintReplace:wye,setInpaintReplace:Cye,setShouldLockBoundingBox:TB,toggleShouldLockBoundingBox:_ye}=PB.actions,kye=PB.reducer,LB=""+new URL("logo.13003d72.png",import.meta.url).href,Eye=jt(e=>e.options,e=>{const{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}=e;return{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),G7=e=>{const t=ct(),{shouldShowOptionsPanel:n,shouldHoldOptionsPanelOpen:r,shouldPinOptionsPanel:i}=$e(Eye),o=C.exports.useRef(null),a=C.exports.useRef(null),s=C.exports.useRef(null),{children:l}=e;Dt("o",()=>{t(MC(!n))},[n]),Dt("shift+o",()=>{m()},[i]);const d=C.exports.useCallback(()=>{i||(t(e6e(a.current?a.current.scrollTop:0)),t(MC(!1)),t(t6e(!1)))},[t,i]);EB(o,d,!i);const p=()=>{s.current=window.setTimeout(()=>d(),500)},g=()=>{s.current&&window.clearTimeout(s.current)},m=()=>{t(Jwe(!i)),t(Cf(!0))};return w(kB,{nodeRef:o,in:n||r&&!i,unmountOnExit:!0,timeout:200,classNames:"options-panel-wrapper",children:w("div",{className:"options-panel-wrapper","data-pinned":i,tabIndex:1,ref:o,onMouseEnter:i?void 0:g,onMouseOver:i?void 0:g,children:w("div",{className:"options-panel-margin",children:te("div",{className:"options-panel",ref:a,onMouseLeave:y=>{y.target!==a.current?g():!i&&p()},children:[w(Xr,{label:"Pin Options Panel",children:w("div",{className:"options-panel-pin-button","data-selected":i,onClick:m,children:i?w(SB,{}):w(wB,{})})}),!i&&te("div",{className:"invoke-ai-logo-wrapper",children:[w("img",{src:LB,alt:"invoke-ai-logo"}),te("h1",{children:["invoke ",w("strong",{children:"ai"})]})]}),l]})})})})};function Pye(){const e=$e(n=>n.options.showAdvancedOptions),t={seed:{header:w(M7,{}),feature:Ji.SEED,options:w(R7,{})},variations:{header:w(N7,{}),feature:Ji.VARIATIONS,options:w(D7,{})},face_restore:{header:w(L7,{}),feature:Ji.FACE_CORRECTION,options:w(fx,{})},upscale:{header:w(O7,{}),feature:Ji.UPSCALE,options:w(hx,{})},other:{header:w(oB,{}),feature:Ji.OTHER,options:w(aB,{})}};return te(G7,{children:[w(W7,{}),w(H7,{}),w(B7,{}),w(iB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),w(Lve,{}),w(z7,{}),e?w($7,{accordionInfo:t}):null]})}const AB=C.exports.createContext(null),IB=e=>{const{styleClass:t}=e,n=C.exports.useContext(AB),r=()=>{n&&n()};return w("div",{className:`image-uploader-button-outer ${t}`,onClick:r,children:te("div",{className:"image-upload-button",children:[w(G2e,{}),w(Af,{size:"lg",children:"Click or Drag and Drop"})]})})},Tye=jt(e=>e.system,e=>{const{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}=e;return{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}}),tC=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:i,onClose:o}=d5(),a=ct(),{shouldConfirmOnDelete:s,isConnected:l,isProcessing:d}=$e(Tye),p=C.exports.useRef(null),g=b=>{b.stopPropagation(),s?i():m()},m=()=>{l&&!d&&a(Y2e(e)),o()};Dt("del",()=>{s?i():m()},[e,s]);const y=b=>a(uB(!b.target.checked));return te(Fn,{children:[C.exports.cloneElement(t,{onClick:g,ref:n}),w(Ype,{isOpen:r,leastDestructiveRef:p,onClose:o,children:w(Km,{children:te(Xpe,{children:[w(l7,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),w(g5,{children:te(Dn,{direction:"column",gap:5,children:[w(wo,{children:"Are you sure? You can't undo this action afterwards."}),w(td,{children:te(Dn,{alignItems:"center",children:[w(Gf,{mb:0,children:"Don't ask me again"}),w(f7,{checked:!s,onChange:y})]})})]})}),te(s7,{children:[w(Na,{ref:p,onClick:o,children:"Cancel"}),w(Na,{colorScheme:"red",onClick:m,ml:3,children:"Delete"})]})]})})})]})}),UL=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:i,children:o})=>te(j4,{trigger:"hover",closeDelay:n,children:[w(Z4,{children:w(Pl,{children:o})}),te(K4,{className:`popover-content ${t}`,children:[w(q4,{className:"popover-arrow"}),w(Jz,{className:"popover-header",children:e}),te("div",{className:"popover-options",children:[r||null,i]})]})]});jt(e=>e.gallery,e=>e.intermediateImage,{memoizeOptions:{resultEqualityCheck:(e,t)=>e===void 0&&t===void 0||e.uuid===t.uuid}});const Lye=jt([e=>e.system,e=>e.options,e=>e.gallery,Ga],(e,t,n,r)=>{const{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s}=e,{upscalingLevel:l,facetoolStrength:d,shouldShowImageDetails:p}=t,{intermediateImage:g}=n;return{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s,upscalingLevel:l,facetoolStrength:d,intermediateImage:g,shouldShowImageDetails:p,activeTabName:r}},{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),Aye=({image:e})=>{const t=ct(),{isProcessing:n,isConnected:r,isGFPGANAvailable:i,isESRGANAvailable:o,upscalingLevel:a,facetoolStrength:s,intermediateImage:l,shouldShowImageDetails:d,activeTabName:p}=$e(Lye),g=od(),m=()=>{t(nv(e)),t(Pa(1))};Dt("shift+i",()=>{e?(m(),g({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):g({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const y=()=>e.metadata&&t(Uwe(e.metadata));Dt("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(y(),g({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):g({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>e.metadata&&t(Iv(e.metadata.image.seed));Dt("s",()=>{e?.metadata?.image?.seed?(b(),g({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):g({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const S=()=>t(K2e(e));Dt("u",()=>{o&&Boolean(!l)&&r&&!n&&a?S():g({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,o,l,r,n,a]);const E=()=>t(Z2e(e));Dt("r",()=>{i&&Boolean(!l)&&r&&!n&&s?E():g({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,i,l,r,n,s]);const P=()=>t(Zwe(!d)),k=()=>{t(E5(e)),p!=="inpainting"&&t(Pa("inpainting")),g({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0})};return Dt("i",()=>{e?P():g({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,d]),te("div",{className:"current-image-options",children:[w(sn,{icon:w(m2e,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:m}),w(sn,{icon:w(mB,{}),tooltip:"Send To Inpainting","aria-label":"Send To Inpainting",onClick:k}),w(sn,{icon:w(gB,{}),tooltip:"Use All","aria-label":"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:y}),w(sn,{icon:w($2e,{}),tooltip:"Use Seed","aria-label":"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:b}),w(UL,{title:"Restore Faces",popoverOptions:w(fx,{}),actionButton:w(k5,{label:"Restore Faces",isDisabled:!i||Boolean(l)||!(r&&!n)||!s,onClick:E}),children:w(sn,{icon:w(l2e,{}),"aria-label":"Restore Faces"})}),w(UL,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:w(hx,{}),actionButton:w(k5,{label:"Upscale Image",isDisabled:!o||Boolean(l)||!(r&&!n)||!a,onClick:S}),children:w(sn,{icon:w(f2e,{}),"aria-label":"Upscale"})}),w(sn,{icon:w(u2e,{}),tooltip:"Details","aria-label":"Details",onClick:P}),w(tC,{image:e,children:w(sn,{icon:w(s2e,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(l)||!r||n})})]})},Iye={currentImageUuid:"",shouldPinGallery:!0,shouldShowGallery:!0,galleryScrollPosition:0,galleryImageMinimumWidth:64,galleryImageObjectFit:"cover",shouldHoldGalleryOpen:!1,shouldAutoSwitchToNewImages:!0,currentCategory:"result",categories:{user:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0},result:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0}},galleryWidth:300},MB=J4({name:"gallery",initialState:Iye,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const{uuid:n,category:r}=t.payload,i=e.categories[r].images,o=i.filter(a=>a.uuid!==n);if(n===e.currentImageUuid){const a=i.findIndex(l=>l.uuid===n),s=la.exports.clamp(a,0,o.length-1);e.currentImage=o.length?o[s]:void 0,e.currentImageUuid=o.length?o[s].uuid:""}e.categories[r].images=o},addImage:(e,t)=>{const{image:n,category:r}=t.payload,{uuid:i,url:o,mtime:a}=n,s=e.categories[r];s.images.find(l=>l.url===o&&l.mtime===a)||(s.images.unshift(n),e.shouldAutoSwitchToNewImages&&(e.currentImageUuid=i,e.currentImage=n,e.currentCategory=r),e.intermediateImage=void 0,s.latest_mtime=a)},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(Wt.inRange(r,0,n.length)){const i=n[r+1];e.currentImage=i,e.currentImageUuid=i.uuid}}},selectPrevImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(Wt.inRange(r,1,n.length+1)){const i=n[r-1];e.currentImage=i,e.currentImageUuid=i.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r,category:i}=t.payload,o=e.categories[i].images;if(n.length>0){const a=n.filter(s=>!o.find(l=>l.url===s.url&&l.mtime===s.mtime));if(e.categories[i].images=o.concat(a).sort((s,l)=>l.mtime-s.mtime),!e.currentImage){const s=n[0];e.currentImage=s,e.currentImageUuid=s.uuid}e.categories[i].latest_mtime=n[0].mtime,e.categories[i].earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.categories[i].areMoreImagesAvailable=r)},setShouldPinGallery:(e,t)=>{e.shouldPinGallery=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload},setGalleryScrollPosition:(e,t)=>{e.galleryScrollPosition=t.payload},setGalleryImageMinimumWidth:(e,t)=>{e.galleryImageMinimumWidth=t.payload},setGalleryImageObjectFit:(e,t)=>{e.galleryImageObjectFit=t.payload},setShouldHoldGalleryOpen:(e,t)=>{e.shouldHoldGalleryOpen=t.payload},setShouldAutoSwitchToNewImages:(e,t)=>{e.shouldAutoSwitchToNewImages=t.payload},setCurrentCategory:(e,t)=>{e.currentCategory=t.payload},setGalleryWidth:(e,t)=>{e.galleryWidth=t.payload}}}),{addImage:oy,clearIntermediateImage:GL,removeImage:RB,setCurrentImage:OB,addGalleryImages:Mye,setIntermediateImage:Rye,selectNextImage:NB,selectPrevImage:DB,setShouldPinGallery:Oye,setShouldShowGallery:nC,setGalleryScrollPosition:Nye,setGalleryImageMinimumWidth:Jd,setGalleryImageObjectFit:Dye,setShouldHoldGalleryOpen:zye,setShouldAutoSwitchToNewImages:Fye,setCurrentCategory:ay,setGalleryWidth:sy}=MB.actions,Bye=MB.reducer;nt({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});nt({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});nt({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});nt({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});nt({displayName:"SunIcon",path:te("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[w("circle",{cx:"12",cy:"12",r:"5"}),w("path",{d:"M12 1v2"}),w("path",{d:"M12 21v2"}),w("path",{d:"M4.22 4.22l1.42 1.42"}),w("path",{d:"M18.36 18.36l1.42 1.42"}),w("path",{d:"M1 12h2"}),w("path",{d:"M21 12h2"}),w("path",{d:"M4.22 19.78l1.42-1.42"}),w("path",{d:"M18.36 5.64l1.42-1.42"})]})});nt({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});nt({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:w("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});nt({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});nt({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});nt({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});nt({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});nt({displayName:"ViewIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),w("circle",{cx:"12",cy:"12",r:"2"})]})});nt({displayName:"ViewOffIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),w("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});nt({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});nt({displayName:"DeleteIcon",path:w("g",{fill:"currentColor",children:w("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});nt({displayName:"RepeatIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),w("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});nt({displayName:"RepeatClockIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),w("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});nt({displayName:"EditIcon",path:te("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),w("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});nt({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});nt({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});nt({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});nt({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});nt({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});nt({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});nt({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});nt({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});nt({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var zB=nt({displayName:"ExternalLinkIcon",path:te("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),w("path",{d:"M15 3h6v6"}),w("path",{d:"M10 14L21 3"})]})});nt({displayName:"LinkIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),w("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});nt({displayName:"PlusSquareIcon",path:te("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),w("path",{d:"M12 8v8"}),w("path",{d:"M8 12h8"})]})});nt({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});nt({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});nt({displayName:"TimeIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),w("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});nt({displayName:"ArrowRightIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),w("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});nt({displayName:"ArrowLeftIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),w("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});nt({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});nt({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});nt({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});nt({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});nt({displayName:"EmailIcon",path:te("g",{fill:"currentColor",children:[w("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),w("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});nt({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});nt({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});nt({displayName:"SpinnerIcon",path:te(Fn,{children:[w("defs",{children:te("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[w("stop",{stopColor:"currentColor",offset:"0%"}),w("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),te("g",{transform:"translate(2)",fill:"none",children:[w("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),w("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),w("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});nt({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});nt({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:w("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});nt({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});nt({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});nt({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});nt({displayName:"InfoOutlineIcon",path:te("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[w("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),w("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),w("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});nt({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});nt({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});nt({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});nt({displayName:"QuestionOutlineIcon",path:te("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});nt({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});nt({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});nt({viewBox:"0 0 14 14",path:w("g",{fill:"currentColor",children:w("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});nt({displayName:"MinusIcon",path:w("g",{fill:"currentColor",children:w("rect",{height:"4",width:"20",x:"2",y:"10"})})});nt({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function $ye(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const Qn=({label:e,value:t,onClick:n,isLink:r,labelPosition:i})=>te(Dn,{gap:2,children:[n&&w(Xr,{label:`Recall ${e}`,children:w(Bi,{"aria-label":"Use this parameter",icon:w($ye,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),te(Dn,{direction:i?"column":"row",children:[te(wo,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?te(jp,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",w(zB,{mx:"2px"})]}):w(wo,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),Hye=(e,t)=>e.image.uuid===t.image.uuid,Wye=C.exports.memo(({image:e,styleClass:t})=>{const n=ct(),r=e?.metadata?.image||{},{type:i,postprocessing:o,sampler:a,prompt:s,seed:l,variations:d,steps:p,cfg_scale:g,seamless:m,hires_fix:y,width:b,height:S,strength:E,fit:P,init_image_path:k,mask_image_path:L,orig_path:I,scale:O}=r,N=JSON.stringify(r,null,2);return w("div",{className:`image-metadata-viewer ${t}`,children:te(Dn,{gap:1,direction:"column",width:"100%",children:[te(Dn,{gap:2,children:[w(wo,{fontWeight:"semibold",children:"File:"}),te(jp,{href:e.url,isExternal:!0,children:[e.url,w(zB,{mx:"2px"})]})]}),Object.keys(r).length>0?te(Fn,{children:[i&&w(Qn,{label:"Generation type",value:i}),["esrgan","gfpgan"].includes(i)&&w(Qn,{label:"Original image",value:I}),i==="gfpgan"&&E!==void 0&&w(Qn,{label:"Fix faces strength",value:E,onClick:()=>n(h3(E))}),i==="esrgan"&&O!==void 0&&w(Qn,{label:"Upscaling scale",value:O,onClick:()=>n(TC(O))}),i==="esrgan"&&E!==void 0&&w(Qn,{label:"Upscaling strength",value:E,onClick:()=>n(LC(E))}),s&&w(Qn,{label:"Prompt",labelPosition:"top",value:s3(s),onClick:()=>n(d_(s))}),l!==void 0&&w(Qn,{label:"Seed",value:l,onClick:()=>n(Iv(l))}),a&&w(Qn,{label:"Sampler",value:a,onClick:()=>n(dH(a))}),p&&w(Qn,{label:"Steps",value:p,onClick:()=>n(sH(p))}),g!==void 0&&w(Qn,{label:"CFG scale",value:g,onClick:()=>n(lH(g))}),d&&d.length>0&&w(Qn,{label:"Seed-weight pairs",value:_5(d),onClick:()=>n(vH(_5(d)))}),m&&w(Qn,{label:"Seamless",value:m,onClick:()=>n(fH(m))}),y&&w(Qn,{label:"High Resolution Optimization",value:y,onClick:()=>n(hH(y))}),b&&w(Qn,{label:"Width",value:b,onClick:()=>n(cH(b))}),S&&w(Qn,{label:"Height",value:S,onClick:()=>n(uH(S))}),k&&w(Qn,{label:"Initial image",value:k,isLink:!0,onClick:()=>n(nv(k))}),L&&w(Qn,{label:"Mask image",value:L,isLink:!0,onClick:()=>n(AC(L))}),i==="img2img"&&E&&w(Qn,{label:"Image to image strength",value:E,onClick:()=>n(pH(E))}),P&&w(Qn,{label:"Image to image fit",value:P,onClick:()=>n(mH(P))}),o&&o.length>0&&te(Fn,{children:[w(Af,{size:"sm",children:"Postprocessing"}),o.map((D,F)=>{if(D.type==="esrgan"){const{scale:U,strength:W}=D;return te(Dn,{pl:"2rem",gap:1,direction:"column",children:[w(wo,{size:"md",children:`${F+1}: Upscale (ESRGAN)`}),w(Qn,{label:"Scale",value:U,onClick:()=>n(TC(U))}),w(Qn,{label:"Strength",value:W,onClick:()=>n(LC(W))})]},F)}else if(D.type==="gfpgan"){const{strength:U}=D;return te(Dn,{pl:"2rem",gap:1,direction:"column",children:[w(wo,{size:"md",children:`${F+1}: Face restoration (GFPGAN)`}),w(Qn,{label:"Strength",value:U,onClick:()=>{n(h3(U)),n(p3("gfpgan"))}})]},F)}else if(D.type==="codeformer"){const{strength:U,fidelity:W}=D;return te(Dn,{pl:"2rem",gap:1,direction:"column",children:[w(wo,{size:"md",children:`${F+1}: Face restoration (Codeformer)`}),w(Qn,{label:"Strength",value:U,onClick:()=>{n(h3(U)),n(p3("codeformer"))}}),W&&w(Qn,{label:"Fidelity",value:W,onClick:()=>{n(gH(W)),n(p3("codeformer"))}})]},F)}})]}),te(Dn,{gap:2,direction:"column",children:[te(Dn,{gap:2,children:[w(Xr,{label:"Copy metadata JSON",children:w(Bi,{"aria-label":"Copy metadata JSON",icon:w(gB,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(N)})}),w(wo,{fontWeight:"semibold",children:"Metadata JSON:"})]}),w("div",{className:"image-json-viewer",children:w("pre",{children:N})})]})]}):w(ED,{width:"100%",pt:10,children:w(wo,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},Hye),Vye=jt([e=>e.gallery,e=>e.options],(e,t)=>{const{currentCategory:n}=e,{shouldShowImageDetails:r}=t,i=e.categories[n].images,o=i.findIndex(s=>s.uuid===e?.currentImage?.uuid),a=i.length;return{currentCategory:n,isOnFirstImage:o===0,isOnLastImage:!isNaN(o)&&o===a-1,shouldShowImageDetails:r}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}});function Uye(e){const{imageToDisplay:t}=e,n=ct(),{isOnFirstImage:r,isOnLastImage:i,shouldShowImageDetails:o}=$e(Vye),[a,s]=C.exports.useState(!1),l=()=>{s(!0)},d=()=>{s(!1)},p=()=>{n(DB())},g=()=>{n(NB())};return te("div",{className:"current-image-preview",children:[w(z4,{src:t.url,width:t.width,height:t.height}),!o&&te("div",{className:"current-image-next-prev-buttons",children:[w("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:l,onMouseOut:d,children:a&&!r&&w(Bi,{"aria-label":"Previous image",icon:w(E2e,{className:"next-prev-button"}),variant:"unstyled",onClick:p})}),w("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:l,onMouseOut:d,children:a&&!i&&w(Bi,{"aria-label":"Next image",icon:w(P2e,{className:"next-prev-button"}),variant:"unstyled",onClick:g})})]}),o&&w(Wye,{image:t,styleClass:"current-image-metadata"})]})}const Gye=jt([e=>e.gallery,e=>e.options,Ga],(e,t,n)=>{const{currentImage:r,intermediateImage:i}=e,{shouldShowImageDetails:o}=t;return{currentImage:r,intermediateImage:i,activeTabName:n,shouldShowImageDetails:o}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),j7=()=>{const{currentImage:e,intermediateImage:t,activeTabName:n}=$e(Gye),r=t||e;return w("div",{className:"current-image-area","data-tab-name":n,children:r?te(Fn,{children:[w(Aye,{image:r}),w(Uye,{imageToDisplay:r})]}):w("div",{className:"current-image-display-placeholder",children:w(v2e,{})})})};function jye(){const{initialImage:e}=$e(o=>o.options),t=ct(),n=od(),r=o=>{o.stopPropagation(),t(IC())},i=()=>{n({title:"Problem loading parameters",description:"Unable to load init image.",status:"error",isClosable:!0}),t(IC())};return te(Fn,{children:[te("div",{className:"init-image-preview-header",children:[w("h2",{children:"Initial Image"}),w(Bi,{isDisabled:!e,"aria-label":"Reset Initial Image",onClick:r,icon:w(p2e,{})})]}),e&&w("div",{className:"init-image-preview",children:w(z4,{fit:"contain",maxWidth:"100%",maxHeight:"100%",src:typeof e=="string"?e:e.url,onError:i})})]})}const qye=()=>{const e=$e(r=>r.options.initialImage),{currentImage:t}=$e(r=>r.gallery);return te("div",{className:"workarea-split-view",children:[w("div",{className:"workarea-split-view-left",children:e?w("div",{className:"image-to-image-area",children:w(jye,{})}):w(IB,{})}),t&&w("div",{className:"workarea-split-view-right",children:w(j7,{})})]})};var Kye=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),zr=globalThis&&globalThis.__assign||function(){return zr=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof i>"u"?void 0:Number(i),minWidth:typeof o>"u"?void 0:Number(o),minHeight:typeof a>"u"?void 0:Number(a)}},t3e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],YL="__resizable_base__",FB=function(e){Xye(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var i=r.parentNode;if(!i)return null;var o=r.window.document.createElement("div");return o.style.width="100%",o.style.height="100%",o.style.position="absolute",o.style.transform="scale(0, 0)",o.style.left="0",o.style.flex="0 0 100%",o.classList?o.classList.add(YL):o.className+=YL,i.appendChild(o),o},r.removeBase=function(i){var o=r.parentNode;!o||o.removeChild(i)},r.ref=function(i){i&&(r.resizable=i)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||Qye},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var i=this.resizable.offsetWidth,o=this.resizable.offsetHeight,a=this.resizable.style.position;a!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:i,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:o,this.resizable.style.position=a}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,i=function(s){if(typeof n.state[s]>"u"||n.state[s]==="auto")return"auto";if(n.propsSize&&n.propsSize[s]&&n.propsSize[s].toString().endsWith("%")){if(n.state[s].toString().endsWith("%"))return n.state[s].toString();var l=n.getParentSize(),d=Number(n.state[s].toString().replace("px","")),p=d/l[s]*100;return p+"%"}return ES(n.state[s])},o=r&&typeof r.width<"u"&&!this.state.isResizing?ES(r.width):i("width"),a=r&&typeof r.height<"u"&&!this.state.isResizing?ES(r.height):i("height");return{width:o,height:a}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,i=this.parentNode.style.flexWrap;i!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var o={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=i),this.removeBase(n),o},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var i=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof i>"u"||i==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var i=this.props.boundsByDirection,o=this.state.direction,a=i&&up("left",o),s=i&&up("top",o),l,d;if(this.props.bounds==="parent"){var p=this.parentNode;p&&(l=a?this.resizableRight-this.parentLeft:p.offsetWidth+(this.parentLeft-this.resizableLeft),d=s?this.resizableBottom-this.parentTop:p.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(l=a?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=s?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(l=a?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=s?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return l&&Number.isFinite(l)&&(n=n&&n"u"?10:o.width,g=typeof i.width>"u"||i.width<0?n:i.width,m=typeof o.height>"u"?10:o.height,y=typeof i.height>"u"||i.height<0?r:i.height,b=l||0,S=d||0;if(s){var E=(m-b)*this.ratio+S,P=(y-b)*this.ratio+S,k=(p-S)/this.ratio+b,L=(g-S)/this.ratio+b,I=Math.max(p,E),O=Math.min(g,P),N=Math.max(m,k),D=Math.min(y,L);n=uy(n,I,O),r=uy(r,N,D)}else n=uy(n,p,g),r=uy(r,m,y);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var i=this.props.bounds.getBoundingClientRect();this.targetLeft=i.left,this.targetTop=i.top}if(this.resizable){var o=this.resizable.getBoundingClientRect(),a=o.left,s=o.top,l=o.right,d=o.bottom;this.resizableLeft=a,this.resizableRight=l,this.resizableTop=s,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var i=0,o=0;if(n.nativeEvent&&Jye(n.nativeEvent)?(i=n.nativeEvent.clientX,o=n.nativeEvent.clientY):n.nativeEvent&&cy(n.nativeEvent)&&(i=n.nativeEvent.touches[0].clientX,o=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var a=this.props.onResizeStart(n,r,this.resizable);if(a===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var s,l=this.window.getComputedStyle(this.resizable);if(l.flexBasis!=="auto"){var d=this.parentNode;if(d){var p=this.window.getComputedStyle(d).flexDirection;this.flexDir=p.startsWith("row")?"row":"column",s=l.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var g={original:{x:i,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:ol(ol({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:s};this.setState(g)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&cy(n))try{n.preventDefault(),n.stopPropagation()}catch{}var i=this.props,o=i.maxWidth,a=i.maxHeight,s=i.minWidth,l=i.minHeight,d=cy(n)?n.touches[0].clientX:n.clientX,p=cy(n)?n.touches[0].clientY:n.clientY,g=this.state,m=g.direction,y=g.original,b=g.width,S=g.height,E=this.getParentSize(),P=e3e(E,this.window.innerWidth,this.window.innerHeight,o,a,s,l);o=P.maxWidth,a=P.maxHeight,s=P.minWidth,l=P.minHeight;var k=this.calculateNewSizeFromDirection(d,p),L=k.newHeight,I=k.newWidth,O=this.calculateNewMaxFromBoundary(o,a);this.props.snap&&this.props.snap.x&&(I=ZL(I,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(L=ZL(L,this.props.snap.y,this.props.snapGap));var N=this.calculateNewSizeFromAspectRatio(I,L,{width:O.maxWidth,height:O.maxHeight},{width:s,height:l});if(I=N.newWidth,L=N.newHeight,this.props.grid){var D=KL(I,this.props.grid[0]),F=KL(L,this.props.grid[1]),U=this.props.snapGap||0;I=U===0||Math.abs(D-I)<=U?D:I,L=U===0||Math.abs(F-L)<=U?F:L}var W={width:I-y.width,height:L-y.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var q=I/E.width*100;I=q+"%"}else if(b.endsWith("vw")){var pe=I/this.window.innerWidth*100;I=pe+"vw"}else if(b.endsWith("vh")){var fe=I/this.window.innerHeight*100;I=fe+"vh"}}if(S&&typeof S=="string"){if(S.endsWith("%")){var q=L/E.height*100;L=q+"%"}else if(S.endsWith("vw")){var pe=L/this.window.innerWidth*100;L=pe+"vw"}else if(S.endsWith("vh")){var fe=L/this.window.innerHeight*100;L=fe+"vh"}}var ye={width:this.createSizeForCssProperty(I,"width"),height:this.createSizeForCssProperty(L,"height")};this.flexDir==="row"?ye.flexBasis=ye.width:this.flexDir==="column"&&(ye.flexBasis=ye.height),El.exports.flushSync(function(){r.setState(ye)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,W)}},t.prototype.onMouseUp=function(n){var r=this.state,i=r.isResizing,o=r.direction,a=r.original;if(!(!i||!this.resizable)){var s={width:this.size.width-a.width,height:this.size.height-a.height};this.props.onResizeStop&&this.props.onResizeStop(n,o,this.resizable,s),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:ol(ol({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,i=r.enable,o=r.handleStyles,a=r.handleClasses,s=r.handleWrapperStyle,l=r.handleWrapperClass,d=r.handleComponent;if(!i)return null;var p=Object.keys(i).map(function(g){return i[g]!==!1?w(Yye,{direction:g,onResizeStart:n.onResizeStart,replaceStyles:o&&o[g],className:a&&a[g],children:d&&d[g]?d[g]:null},g):null});return w("div",{className:l,style:s,children:p})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(a,s){return t3e.indexOf(s)!==-1||(a[s]=n.props[s]),a},{}),i=ol(ol(ol({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(i.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return te(o,{...ol({ref:this.ref,style:i,className:this.props.className},r),children:[this.state.isResizing&&w("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function Gn(e,t,{checkForDefaultPrevented:n=!0}={}){return function(i){if(e?.(i),n===!1||!i.defaultPrevented)return t?.(i)}}function Pv(e,t=[]){let n=[];function r(o,a){const s=C.exports.createContext(a),l=n.length;n=[...n,a];function d(g){const{scope:m,children:y,...b}=g,S=m?.[e][l]||s,E=C.exports.useMemo(()=>b,Object.values(b));return C.exports.createElement(S.Provider,{value:E},y)}function p(g,m){const y=m?.[e][l]||s,b=C.exports.useContext(y);if(b)return b;if(a!==void 0)return a;throw new Error(`\`${g}\` must be used within \`${o}\``)}return d.displayName=o+"Provider",[d,p]}const i=()=>{const o=n.map(a=>C.exports.createContext(a));return function(s){const l=s?.[e]||o;return C.exports.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return i.scopeName=e,[r,n3e(i,...t)]}function n3e(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(i=>({useScope:i(),scopeName:i.scopeName}));return function(o){const a=r.reduce((s,{useScope:l,scopeName:d})=>{const g=l(o)[`__scope${d}`];return{...s,...g}},{});return C.exports.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])}};return n.scopeName=t.scopeName,n}function r3e(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function BB(...e){return t=>e.forEach(n=>r3e(n,t))}function Ha(...e){return C.exports.useCallback(BB(...e),e)}const ev=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e,i=C.exports.Children.toArray(n),o=i.find(o3e);if(o){const a=o.props.children,s=i.map(l=>l===o?C.exports.Children.count(a)>1?C.exports.Children.only(null):C.exports.isValidElement(a)?a.props.children:null:l);return C.exports.createElement(rC,En({},r,{ref:t}),C.exports.isValidElement(a)?C.exports.cloneElement(a,void 0,s):null)}return C.exports.createElement(rC,En({},r,{ref:t}),n)});ev.displayName="Slot";const rC=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e;return C.exports.isValidElement(n)?C.exports.cloneElement(n,{...a3e(r,n.props),ref:BB(t,n.ref)}):C.exports.Children.count(n)>1?C.exports.Children.only(null):null});rC.displayName="SlotClone";const i3e=({children:e})=>C.exports.createElement(C.exports.Fragment,null,e);function o3e(e){return C.exports.isValidElement(e)&&e.type===i3e}function a3e(e,t){const n={...t};for(const r in t){const i=e[r],o=t[r];/^on[A-Z]/.test(r)?i&&o?n[r]=(...s)=>{o(...s),i(...s)}:i&&(n[r]=i):r==="style"?n[r]={...i,...o}:r==="className"&&(n[r]=[i,o].filter(Boolean).join(" "))}return{...e,...n}}const s3e=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"],mu=s3e.reduce((e,t)=>{const n=C.exports.forwardRef((r,i)=>{const{asChild:o,...a}=r,s=o?ev:t;return C.exports.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),C.exports.createElement(s,En({},a,{ref:i}))});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function $B(e,t){e&&El.exports.flushSync(()=>e.dispatchEvent(t))}function HB(e){const t=e+"CollectionProvider",[n,r]=Pv(t),[i,o]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=y=>{const{scope:b,children:S}=y,E=ne.useRef(null),P=ne.useRef(new Map).current;return ne.createElement(i,{scope:b,itemMap:P,collectionRef:E},S)},s=e+"CollectionSlot",l=ne.forwardRef((y,b)=>{const{scope:S,children:E}=y,P=o(s,S),k=Ha(b,P.collectionRef);return ne.createElement(ev,{ref:k},E)}),d=e+"CollectionItemSlot",p="data-radix-collection-item",g=ne.forwardRef((y,b)=>{const{scope:S,children:E,...P}=y,k=ne.useRef(null),L=Ha(b,k),I=o(d,S);return ne.useEffect(()=>(I.itemMap.set(k,{ref:k,...P}),()=>void I.itemMap.delete(k))),ne.createElement(ev,{[p]:"",ref:L},E)});function m(y){const b=o(e+"CollectionConsumer",y);return ne.useCallback(()=>{const E=b.collectionRef.current;if(!E)return[];const P=Array.from(E.querySelectorAll(`[${p}]`));return Array.from(b.itemMap.values()).sort((I,O)=>P.indexOf(I.ref.current)-P.indexOf(O.ref.current))},[b.collectionRef,b.itemMap])}return[{Provider:a,Slot:l,ItemSlot:g},m,r]}const l3e=C.exports.createContext(void 0);function WB(e){const t=C.exports.useContext(l3e);return e||t||"ltr"}function Cl(e){const t=C.exports.useRef(e);return C.exports.useEffect(()=>{t.current=e}),C.exports.useMemo(()=>(...n)=>{var r;return(r=t.current)===null||r===void 0?void 0:r.call(t,...n)},[])}function u3e(e,t=globalThis?.document){const n=Cl(e);C.exports.useEffect(()=>{const r=i=>{i.key==="Escape"&&n(i)};return t.addEventListener("keydown",r),()=>t.removeEventListener("keydown",r)},[n,t])}const iC="dismissableLayer.update",c3e="dismissableLayer.pointerDownOutside",d3e="dismissableLayer.focusOutside";let XL;const f3e=C.exports.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),h3e=C.exports.forwardRef((e,t)=>{var n;const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:a,onInteractOutside:s,onDismiss:l,...d}=e,p=C.exports.useContext(f3e),[g,m]=C.exports.useState(null),y=(n=g?.ownerDocument)!==null&&n!==void 0?n:globalThis?.document,[,b]=C.exports.useState({}),S=Ha(t,F=>m(F)),E=Array.from(p.layers),[P]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),k=E.indexOf(P),L=g?E.indexOf(g):-1,I=p.layersWithOutsidePointerEventsDisabled.size>0,O=L>=k,N=p3e(F=>{const U=F.target,W=[...p.branches].some(q=>q.contains(U));!O||W||(o?.(F),s?.(F),F.defaultPrevented||l?.())},y),D=g3e(F=>{const U=F.target;[...p.branches].some(q=>q.contains(U))||(a?.(F),s?.(F),F.defaultPrevented||l?.())},y);return u3e(F=>{L===p.layers.size-1&&(i?.(F),!F.defaultPrevented&&l&&(F.preventDefault(),l()))},y),C.exports.useEffect(()=>{if(!!g)return r&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(XL=y.body.style.pointerEvents,y.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(g)),p.layers.add(g),QL(),()=>{r&&p.layersWithOutsidePointerEventsDisabled.size===1&&(y.body.style.pointerEvents=XL)}},[g,y,r,p]),C.exports.useEffect(()=>()=>{!g||(p.layers.delete(g),p.layersWithOutsidePointerEventsDisabled.delete(g),QL())},[g,p]),C.exports.useEffect(()=>{const F=()=>b({});return document.addEventListener(iC,F),()=>document.removeEventListener(iC,F)},[]),C.exports.createElement(mu.div,En({},d,{ref:S,style:{pointerEvents:I?O?"auto":"none":void 0,...e.style},onFocusCapture:Gn(e.onFocusCapture,D.onFocusCapture),onBlurCapture:Gn(e.onBlurCapture,D.onBlurCapture),onPointerDownCapture:Gn(e.onPointerDownCapture,N.onPointerDownCapture)}))});function p3e(e,t=globalThis?.document){const n=Cl(e),r=C.exports.useRef(!1),i=C.exports.useRef(()=>{});return C.exports.useEffect(()=>{const o=s=>{if(s.target&&!r.current){let d=function(){VB(c3e,n,l,{discrete:!0})};const l={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",i.current),i.current=d,t.addEventListener("click",i.current,{once:!0})):d()}r.current=!1},a=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(a),t.removeEventListener("pointerdown",o),t.removeEventListener("click",i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function g3e(e,t=globalThis?.document){const n=Cl(e),r=C.exports.useRef(!1);return C.exports.useEffect(()=>{const i=o=>{o.target&&!r.current&&VB(d3e,n,{originalEvent:o},{discrete:!1})};return t.addEventListener("focusin",i),()=>t.removeEventListener("focusin",i)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function QL(){const e=new CustomEvent(iC);document.dispatchEvent(e)}function VB(e,t,n,{discrete:r}){const i=n.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?$B(i,o):i.dispatchEvent(o)}let PS=0;function m3e(){C.exports.useEffect(()=>{var e,t;const n=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",(e=n[0])!==null&&e!==void 0?e:JL()),document.body.insertAdjacentElement("beforeend",(t=n[1])!==null&&t!==void 0?t:JL()),PS++,()=>{PS===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(r=>r.remove()),PS--}},[])}function JL(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}const TS="focusScope.autoFocusOnMount",LS="focusScope.autoFocusOnUnmount",eA={bubbles:!1,cancelable:!0},v3e=C.exports.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:i,onUnmountAutoFocus:o,...a}=e,[s,l]=C.exports.useState(null),d=Cl(i),p=Cl(o),g=C.exports.useRef(null),m=Ha(t,S=>l(S)),y=C.exports.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;C.exports.useEffect(()=>{if(r){let S=function(P){if(y.paused||!s)return;const k=P.target;s.contains(k)?g.current=k:lf(g.current,{select:!0})},E=function(P){y.paused||!s||s.contains(P.relatedTarget)||lf(g.current,{select:!0})};return document.addEventListener("focusin",S),document.addEventListener("focusout",E),()=>{document.removeEventListener("focusin",S),document.removeEventListener("focusout",E)}}},[r,s,y.paused]),C.exports.useEffect(()=>{if(s){nA.add(y);const S=document.activeElement;if(!s.contains(S)){const P=new CustomEvent(TS,eA);s.addEventListener(TS,d),s.dispatchEvent(P),P.defaultPrevented||(y3e(C3e(UB(s)),{select:!0}),document.activeElement===S&&lf(s))}return()=>{s.removeEventListener(TS,d),setTimeout(()=>{const P=new CustomEvent(LS,eA);s.addEventListener(LS,p),s.dispatchEvent(P),P.defaultPrevented||lf(S??document.body,{select:!0}),s.removeEventListener(LS,p),nA.remove(y)},0)}}},[s,d,p,y]);const b=C.exports.useCallback(S=>{if(!n&&!r||y.paused)return;const E=S.key==="Tab"&&!S.altKey&&!S.ctrlKey&&!S.metaKey,P=document.activeElement;if(E&&P){const k=S.currentTarget,[L,I]=x3e(k);L&&I?!S.shiftKey&&P===I?(S.preventDefault(),n&&lf(L,{select:!0})):S.shiftKey&&P===L&&(S.preventDefault(),n&&lf(I,{select:!0})):P===k&&S.preventDefault()}},[n,r,y.paused]);return C.exports.createElement(mu.div,En({tabIndex:-1},a,{ref:m,onKeyDown:b}))});function y3e(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(lf(r,{select:t}),document.activeElement!==n)return}function x3e(e){const t=UB(e),n=tA(t,e),r=tA(t.reverse(),e);return[n,r]}function UB(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const i=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||i?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function tA(e,t){for(const n of e)if(!b3e(n,{upTo:t}))return n}function b3e(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function S3e(e){return e instanceof HTMLInputElement&&"select"in e}function lf(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&S3e(e)&&t&&e.select()}}const nA=w3e();function w3e(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=rA(e,t),e.unshift(t)},remove(t){var n;e=rA(e,t),(n=e[0])===null||n===void 0||n.resume()}}}function rA(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function C3e(e){return e.filter(t=>t.tagName!=="A")}const x0=Boolean(globalThis?.document)?C.exports.useLayoutEffect:()=>{},_3e=US["useId".toString()]||(()=>{});let k3e=0;function E3e(e){const[t,n]=C.exports.useState(_3e());return x0(()=>{e||n(r=>r??String(k3e++))},[e]),e||(t?`radix-${t}`:"")}function z0(e){return e.split("-")[0]}function px(e){return e.split("-")[1]}function F0(e){return["top","bottom"].includes(z0(e))?"x":"y"}function q7(e){return e==="y"?"height":"width"}function iA(e,t,n){let{reference:r,floating:i}=e;const o=r.x+r.width/2-i.width/2,a=r.y+r.height/2-i.height/2,s=F0(t),l=q7(s),d=r[l]/2-i[l]/2,p=z0(t),g=s==="x";let m;switch(p){case"top":m={x:o,y:r.y-i.height};break;case"bottom":m={x:o,y:r.y+r.height};break;case"right":m={x:r.x+r.width,y:a};break;case"left":m={x:r.x-i.width,y:a};break;default:m={x:r.x,y:r.y}}switch(px(t)){case"start":m[s]-=d*(n&&g?-1:1);break;case"end":m[s]+=d*(n&&g?-1:1);break}return m}const P3e=async(e,t,n)=>{const{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:a}=n,s=await(a.isRTL==null?void 0:a.isRTL(t));let l=await a.getElementRects({reference:e,floating:t,strategy:i}),{x:d,y:p}=iA(l,r,s),g=r,m={},y=0;for(let b=0;b({name:"arrow",options:e,async fn(t){const{element:n,padding:r=0}=e??{},{x:i,y:o,placement:a,rects:s,platform:l}=t;if(n==null)return{};const d=GB(r),p={x:i,y:o},g=F0(a),m=px(a),y=q7(g),b=await l.getDimensions(n),S=g==="y"?"top":"left",E=g==="y"?"bottom":"right",P=s.reference[y]+s.reference[g]-p[g]-s.floating[y],k=p[g]-s.reference[g],L=await(l.getOffsetParent==null?void 0:l.getOffsetParent(n));let I=L?g==="y"?L.clientHeight||0:L.clientWidth||0:0;I===0&&(I=s.floating[y]);const O=P/2-k/2,N=d[S],D=I-b[y]-d[E],F=I/2-b[y]/2+O,U=oC(N,F,D),pe=(m==="start"?d[S]:d[E])>0&&F!==U&&s.reference[y]<=s.floating[y]?FI3e[t])}function M3e(e,t,n){n===void 0&&(n=!1);const r=px(e),i=F0(e),o=q7(i);let a=i==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(a=L5(a)),{main:a,cross:L5(a)}}const R3e={start:"end",end:"start"};function aA(e){return e.replace(/start|end/g,t=>R3e[t])}const O3e=["top","right","bottom","left"];function N3e(e){const t=L5(e);return[aA(e),t,aA(t)]}const D3e=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:r,middlewareData:i,rects:o,initialPlacement:a,platform:s,elements:l}=t,{mainAxis:d=!0,crossAxis:p=!0,fallbackPlacements:g,fallbackStrategy:m="bestFit",flipAlignment:y=!0,...b}=e,S=z0(r),P=g||(S===a||!y?[L5(a)]:N3e(a)),k=[a,...P],L=await T5(t,b),I=[];let O=((n=i.flip)==null?void 0:n.overflows)||[];if(d&&I.push(L[S]),p){const{main:U,cross:W}=M3e(r,o,await(s.isRTL==null?void 0:s.isRTL(l.floating)));I.push(L[U],L[W])}if(O=[...O,{placement:r,overflows:I}],!I.every(U=>U<=0)){var N,D;const U=((N=(D=i.flip)==null?void 0:D.index)!=null?N:0)+1,W=k[U];if(W)return{data:{index:U,overflows:O},reset:{placement:W}};let q="bottom";switch(m){case"bestFit":{var F;const pe=(F=O.map(fe=>[fe,fe.overflows.filter(ye=>ye>0).reduce((ye,Pe)=>ye+Pe,0)]).sort((fe,ye)=>fe[1]-ye[1])[0])==null?void 0:F[0].placement;pe&&(q=pe);break}case"initialPlacement":q=a;break}if(r!==q)return{reset:{placement:q}}}return{}}}};function sA(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function lA(e){return O3e.some(t=>e[t]>=0)}const z3e=function(e){let{strategy:t="referenceHidden",...n}=e===void 0?{}:e;return{name:"hide",async fn(r){const{rects:i}=r;switch(t){case"referenceHidden":{const o=await T5(r,{...n,elementContext:"reference"}),a=sA(o,i.reference);return{data:{referenceHiddenOffsets:a,referenceHidden:lA(a)}}}case"escaped":{const o=await T5(r,{...n,altBoundary:!0}),a=sA(o,i.floating);return{data:{escapedOffsets:a,escaped:lA(a)}}}default:return{}}}}};async function F3e(e,t){const{placement:n,platform:r,elements:i}=e,o=await(r.isRTL==null?void 0:r.isRTL(i.floating)),a=z0(n),s=px(n),l=F0(n)==="x",d=["left","top"].includes(a)?-1:1,p=o&&l?-1:1,g=typeof t=="function"?t(e):t;let{mainAxis:m,crossAxis:y,alignmentAxis:b}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...g};return s&&typeof b=="number"&&(y=s==="end"?b*-1:b),l?{x:y*p,y:m*d}:{x:m*d,y:y*p}}const B3e=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:r}=t,i=await F3e(t,e);return{x:n+i.x,y:r+i.y,data:i}}}};function jB(e){return e==="x"?"y":"x"}const $3e=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:s={fn:E=>{let{x:P,y:k}=E;return{x:P,y:k}}},...l}=e,d={x:n,y:r},p=await T5(t,l),g=F0(z0(i)),m=jB(g);let y=d[g],b=d[m];if(o){const E=g==="y"?"top":"left",P=g==="y"?"bottom":"right",k=y+p[E],L=y-p[P];y=oC(k,y,L)}if(a){const E=m==="y"?"top":"left",P=m==="y"?"bottom":"right",k=b+p[E],L=b-p[P];b=oC(k,b,L)}const S=s.fn({...t,[g]:y,[m]:b});return{...S,data:{x:S.x-n,y:S.y-r}}}}},H3e=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:i,rects:o,middlewareData:a}=t,{offset:s=0,mainAxis:l=!0,crossAxis:d=!0}=e,p={x:n,y:r},g=F0(i),m=jB(g);let y=p[g],b=p[m];const S=typeof s=="function"?s({...o,placement:i}):s,E=typeof S=="number"?{mainAxis:S,crossAxis:0}:{mainAxis:0,crossAxis:0,...S};if(l){const O=g==="y"?"height":"width",N=o.reference[g]-o.floating[O]+E.mainAxis,D=o.reference[g]+o.reference[O]-E.mainAxis;yD&&(y=D)}if(d){var P,k,L,I;const O=g==="y"?"width":"height",N=["top","left"].includes(z0(i)),D=o.reference[m]-o.floating[O]+(N&&(P=(k=a.offset)==null?void 0:k[m])!=null?P:0)+(N?0:E.crossAxis),F=o.reference[m]+o.reference[O]+(N?0:(L=(I=a.offset)==null?void 0:I[m])!=null?L:0)-(N?E.crossAxis:0);bF&&(b=F)}return{[g]:y,[m]:b}}}};function qB(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function Cu(e){if(e==null)return window;if(!qB(e)){const t=e.ownerDocument;return t&&t.defaultView||window}return e}function Tv(e){return Cu(e).getComputedStyle(e)}function vu(e){return qB(e)?"":e?(e.nodeName||"").toLowerCase():""}function KB(){const e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(t=>t.brand+"/"+t.version).join(" "):navigator.userAgent}function _l(e){return e instanceof Cu(e).HTMLElement}function Xc(e){return e instanceof Cu(e).Element}function W3e(e){return e instanceof Cu(e).Node}function K7(e){if(typeof ShadowRoot>"u")return!1;const t=Cu(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function gx(e){const{overflow:t,overflowX:n,overflowY:r}=Tv(e);return/auto|scroll|overlay|hidden/.test(t+r+n)}function V3e(e){return["table","td","th"].includes(vu(e))}function ZB(e){const t=/firefox/i.test(KB()),n=Tv(e);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||t&&n.willChange==="filter"||t&&(n.filter?n.filter!=="none":!1)}function YB(){return!/^((?!chrome|android).)*safari/i.test(KB())}const uA=Math.min,am=Math.max,A5=Math.round;function yu(e,t,n){var r,i,o,a;t===void 0&&(t=!1),n===void 0&&(n=!1);const s=e.getBoundingClientRect();let l=1,d=1;t&&_l(e)&&(l=e.offsetWidth>0&&A5(s.width)/e.offsetWidth||1,d=e.offsetHeight>0&&A5(s.height)/e.offsetHeight||1);const p=Xc(e)?Cu(e):window,g=!YB()&&n,m=(s.left+(g&&(r=(i=p.visualViewport)==null?void 0:i.offsetLeft)!=null?r:0))/l,y=(s.top+(g&&(o=(a=p.visualViewport)==null?void 0:a.offsetTop)!=null?o:0))/d,b=s.width/l,S=s.height/d;return{width:b,height:S,top:y,right:m+b,bottom:y+S,left:m,x:m,y}}function ad(e){return((W3e(e)?e.ownerDocument:e.document)||window.document).documentElement}function mx(e){return Xc(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function XB(e){return yu(ad(e)).left+mx(e).scrollLeft}function U3e(e){const t=yu(e);return A5(t.width)!==e.offsetWidth||A5(t.height)!==e.offsetHeight}function G3e(e,t,n){const r=_l(t),i=ad(t),o=yu(e,r&&U3e(t),n==="fixed");let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if(r||!r&&n!=="fixed")if((vu(t)!=="body"||gx(i))&&(a=mx(t)),_l(t)){const l=yu(t,!0);s.x=l.x+t.clientLeft,s.y=l.y+t.clientTop}else i&&(s.x=XB(i));return{x:o.left+a.scrollLeft-s.x,y:o.top+a.scrollTop-s.y,width:o.width,height:o.height}}function QB(e){return vu(e)==="html"?e:e.assignedSlot||e.parentNode||(K7(e)?e.host:null)||ad(e)}function cA(e){return!_l(e)||getComputedStyle(e).position==="fixed"?null:e.offsetParent}function j3e(e){let t=QB(e);for(K7(t)&&(t=t.host);_l(t)&&!["html","body"].includes(vu(t));){if(ZB(t))return t;t=t.parentNode}return null}function aC(e){const t=Cu(e);let n=cA(e);for(;n&&V3e(n)&&getComputedStyle(n).position==="static";)n=cA(n);return n&&(vu(n)==="html"||vu(n)==="body"&&getComputedStyle(n).position==="static"&&!ZB(n))?t:n||j3e(e)||t}function dA(e){if(_l(e))return{width:e.offsetWidth,height:e.offsetHeight};const t=yu(e);return{width:t.width,height:t.height}}function q3e(e){let{rect:t,offsetParent:n,strategy:r}=e;const i=_l(n),o=ad(n);if(n===o)return t;let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if((i||!i&&r!=="fixed")&&((vu(n)!=="body"||gx(o))&&(a=mx(n)),_l(n))){const l=yu(n,!0);s.x=l.x+n.clientLeft,s.y=l.y+n.clientTop}return{...t,x:t.x-a.scrollLeft+s.x,y:t.y-a.scrollTop+s.y}}function K3e(e,t){const n=Cu(e),r=ad(e),i=n.visualViewport;let o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;const d=YB();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s,y:l}}function Z3e(e){var t;const n=ad(e),r=mx(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=am(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=am(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0);let s=-r.scrollLeft+XB(e);const l=-r.scrollTop;return Tv(i||n).direction==="rtl"&&(s+=am(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function JB(e){const t=QB(e);return["html","body","#document"].includes(vu(t))?e.ownerDocument.body:_l(t)&&gx(t)?t:JB(t)}function I5(e,t){var n;t===void 0&&(t=[]);const r=JB(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=Cu(r),a=i?[o].concat(o.visualViewport||[],gx(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(I5(a))}function Y3e(e,t){const n=t.getRootNode==null?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&K7(n)){let r=t;do{if(r&&e===r)return!0;r=r.parentNode||r.host}while(r)}return!1}function X3e(e,t){const n=yu(e,!1,t==="fixed"),r=n.top+e.clientTop,i=n.left+e.clientLeft;return{top:r,left:i,x:i,y:r,right:i+e.clientWidth,bottom:r+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}function fA(e,t,n){return t==="viewport"?P5(K3e(e,n)):Xc(t)?X3e(t,n):P5(Z3e(ad(e)))}function Q3e(e){const t=I5(e),r=["absolute","fixed"].includes(Tv(e).position)&&_l(e)?aC(e):e;return Xc(r)?t.filter(i=>Xc(i)&&Y3e(i,r)&&vu(i)!=="body"):[]}function J3e(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e;const a=[...n==="clippingAncestors"?Q3e(t):[].concat(n),r],s=a[0],l=a.reduce((d,p)=>{const g=fA(t,p,i);return d.top=am(g.top,d.top),d.right=uA(g.right,d.right),d.bottom=uA(g.bottom,d.bottom),d.left=am(g.left,d.left),d},fA(t,s,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}const e5e={getClippingRect:J3e,convertOffsetParentRelativeRectToViewportRelativeRect:q3e,isElement:Xc,getDimensions:dA,getOffsetParent:aC,getDocumentElement:ad,getElementRects:e=>{let{reference:t,floating:n,strategy:r}=e;return{reference:G3e(t,aC(n),r),floating:{...dA(n),x:0,y:0}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>Tv(e).direction==="rtl"};function t5e(e,t,n,r){r===void 0&&(r={});const{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:a=!0,animationFrame:s=!1}=r,l=i&&!s,d=o&&!s,p=l||d?[...Xc(e)?I5(e):[],...I5(t)]:[];p.forEach(S=>{l&&S.addEventListener("scroll",n,{passive:!0}),d&&S.addEventListener("resize",n)});let g=null;if(a){let S=!0;g=new ResizeObserver(()=>{S||n(),S=!1}),Xc(e)&&!s&&g.observe(e),g.observe(t)}let m,y=s?yu(e):null;s&&b();function b(){const S=yu(e);y&&(S.x!==y.x||S.y!==y.y||S.width!==y.width||S.height!==y.height)&&n(),y=S,m=requestAnimationFrame(b)}return n(),()=>{var S;p.forEach(E=>{l&&E.removeEventListener("scroll",n),d&&E.removeEventListener("resize",n)}),(S=g)==null||S.disconnect(),g=null,s&&cancelAnimationFrame(m)}}const n5e=(e,t,n)=>P3e(e,t,{platform:e5e,...n});var sC=typeof document<"u"?C.exports.useLayoutEffect:C.exports.useEffect;function lC(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(!lC(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){const o=i[r];if(!(o==="_owner"&&e.$$typeof)&&!lC(e[o],t[o]))return!1}return!0}return e!==e&&t!==t}function r5e(e){const t=C.exports.useRef(e);return sC(()=>{t.current=e}),t}function i5e(e){let{middleware:t,placement:n="bottom",strategy:r="absolute",whileElementsMounted:i}=e===void 0?{}:e;const o=C.exports.useRef(null),a=C.exports.useRef(null),s=r5e(i),l=C.exports.useRef(null),[d,p]=C.exports.useState({x:null,y:null,strategy:r,placement:n,middlewareData:{}}),[g,m]=C.exports.useState(t);lC(g?.map(L=>{let{options:I}=L;return I}),t?.map(L=>{let{options:I}=L;return I}))||m(t);const y=C.exports.useCallback(()=>{!o.current||!a.current||n5e(o.current,a.current,{middleware:g,placement:n,strategy:r}).then(L=>{b.current&&El.exports.flushSync(()=>{p(L)})})},[g,n,r]);sC(()=>{b.current&&y()},[y]);const b=C.exports.useRef(!1);sC(()=>(b.current=!0,()=>{b.current=!1}),[]);const S=C.exports.useCallback(()=>{if(typeof l.current=="function"&&(l.current(),l.current=null),o.current&&a.current)if(s.current){const L=s.current(o.current,a.current,y);l.current=L}else y()},[y,s]),E=C.exports.useCallback(L=>{o.current=L,S()},[S]),P=C.exports.useCallback(L=>{a.current=L,S()},[S]),k=C.exports.useMemo(()=>({reference:o,floating:a}),[]);return C.exports.useMemo(()=>({...d,update:y,refs:k,reference:E,floating:P}),[d,y,k,E,P])}const o5e=e=>{const{element:t,padding:n}=e;function r(i){return Object.prototype.hasOwnProperty.call(i,"current")}return{name:"arrow",options:e,fn(i){return r(t)?t.current!=null?oA({element:t.current,padding:n}).fn(i):{}:t?oA({element:t,padding:n}).fn(i):{}}}};function a5e(e){const[t,n]=C.exports.useState(void 0);return x0(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const o=i[0];let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;n({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}const e$="Popper",[Z7,t$]=Pv(e$),[s5e,n$]=Z7(e$),l5e=e=>{const{__scopePopper:t,children:n}=e,[r,i]=C.exports.useState(null);return C.exports.createElement(s5e,{scope:t,anchor:r,onAnchorChange:i},n)},u5e="PopperAnchor",c5e=C.exports.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...i}=e,o=n$(u5e,n),a=C.exports.useRef(null),s=Ha(t,a);return C.exports.useEffect(()=>{o.onAnchorChange(r?.current||a.current)}),r?null:C.exports.createElement(mu.div,En({},i,{ref:s}))}),M5="PopperContent",[d5e,U9e]=Z7(M5),[f5e,h5e]=Z7(M5,{hasParent:!1,positionUpdateFns:new Set}),p5e=C.exports.forwardRef((e,t)=>{var n,r,i,o,a,s,l,d;const{__scopePopper:p,side:g="bottom",sideOffset:m=0,align:y="center",alignOffset:b=0,arrowPadding:S=0,collisionBoundary:E=[],collisionPadding:P=0,sticky:k="partial",hideWhenDetached:L=!1,avoidCollisions:I=!0,...O}=e,N=n$(M5,p),[D,F]=C.exports.useState(null),U=Ha(t,bt=>F(bt)),[W,q]=C.exports.useState(null),pe=a5e(W),fe=(n=pe?.width)!==null&&n!==void 0?n:0,ye=(r=pe?.height)!==null&&r!==void 0?r:0,Pe=g+(y!=="center"?"-"+y:""),xe=typeof P=="number"?P:{top:0,right:0,bottom:0,left:0,...P},Y=Array.isArray(E)?E:[E],V=Y.length>0,ae={padding:xe,boundary:Y.filter(m5e),altBoundary:V},{reference:oe,floating:X,strategy:me,x:ve,y:Se,placement:He,middlewareData:je,update:ut}=i5e({strategy:"fixed",placement:Pe,whileElementsMounted:t5e,middleware:[B3e({mainAxis:m+ye,alignmentAxis:b}),I?$3e({mainAxis:!0,crossAxis:!1,limiter:k==="partial"?H3e():void 0,...ae}):void 0,W?o5e({element:W,padding:S}):void 0,I?D3e({...ae}):void 0,v5e({arrowWidth:fe,arrowHeight:ye}),L?z3e({strategy:"referenceHidden"}):void 0].filter(g5e)});x0(()=>{oe(N.anchor)},[oe,N.anchor]);const qe=ve!==null&&Se!==null,[at,et]=r$(He),it=(i=je.arrow)===null||i===void 0?void 0:i.x,At=(o=je.arrow)===null||o===void 0?void 0:o.y,wt=((a=je.arrow)===null||a===void 0?void 0:a.centerOffset)!==0,[Le,ot]=C.exports.useState();x0(()=>{D&&ot(window.getComputedStyle(D).zIndex)},[D]);const{hasParent:Et,positionUpdateFns:rt}=h5e(M5,p),pt=!Et;C.exports.useLayoutEffect(()=>{if(!pt)return rt.add(ut),()=>{rt.delete(ut)}},[pt,rt,ut]),C.exports.useLayoutEffect(()=>{pt&&qe&&Array.from(rt).reverse().forEach(bt=>requestAnimationFrame(bt))},[pt,qe,rt]);const Sn={"data-side":at,"data-align":et,...O,ref:U,style:{...O.style,animation:qe?void 0:"none",opacity:(s=je.hide)!==null&&s!==void 0&&s.referenceHidden?0:void 0}};return C.exports.createElement("div",{ref:X,"data-radix-popper-content-wrapper":"",style:{position:me,left:0,top:0,transform:qe?`translate3d(${Math.round(ve)}px, ${Math.round(Se)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:Le,["--radix-popper-transform-origin"]:[(l=je.transformOrigin)===null||l===void 0?void 0:l.x,(d=je.transformOrigin)===null||d===void 0?void 0:d.y].join(" ")}},C.exports.createElement(d5e,{scope:p,placedSide:at,onArrowChange:q,arrowX:it,arrowY:At,shouldHideArrow:wt},pt?C.exports.createElement(f5e,{scope:p,hasParent:!0,positionUpdateFns:rt},C.exports.createElement(mu.div,Sn)):C.exports.createElement(mu.div,Sn)))});function g5e(e){return e!==void 0}function m5e(e){return e!==null}const v5e=e=>({name:"transformOrigin",options:e,fn(t){var n,r,i,o,a;const{placement:s,rects:l,middlewareData:d}=t,g=((n=d.arrow)===null||n===void 0?void 0:n.centerOffset)!==0,m=g?0:e.arrowWidth,y=g?0:e.arrowHeight,[b,S]=r$(s),E={start:"0%",center:"50%",end:"100%"}[S],P=((r=(i=d.arrow)===null||i===void 0?void 0:i.x)!==null&&r!==void 0?r:0)+m/2,k=((o=(a=d.arrow)===null||a===void 0?void 0:a.y)!==null&&o!==void 0?o:0)+y/2;let L="",I="";return b==="bottom"?(L=g?E:`${P}px`,I=`${-y}px`):b==="top"?(L=g?E:`${P}px`,I=`${l.floating.height+y}px`):b==="right"?(L=`${-y}px`,I=g?E:`${k}px`):b==="left"&&(L=`${l.floating.width+y}px`,I=g?E:`${k}px`),{data:{x:L,y:I}}}});function r$(e){const[t,n="center"]=e.split("-");return[t,n]}const y5e=l5e,x5e=c5e,b5e=p5e;function S5e(e,t){return C.exports.useReducer((n,r)=>{const i=t[n][r];return i??n},e)}const i$=e=>{const{present:t,children:n}=e,r=w5e(t),i=typeof n=="function"?n({present:r.isPresent}):C.exports.Children.only(n),o=Ha(r.ref,i.ref);return typeof n=="function"||r.isPresent?C.exports.cloneElement(i,{ref:o}):null};i$.displayName="Presence";function w5e(e){const[t,n]=C.exports.useState(),r=C.exports.useRef({}),i=C.exports.useRef(e),o=C.exports.useRef("none"),a=e?"mounted":"unmounted",[s,l]=S5e(a,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return C.exports.useEffect(()=>{const d=fy(r.current);o.current=s==="mounted"?d:"none"},[s]),x0(()=>{const d=r.current,p=i.current;if(p!==e){const m=o.current,y=fy(d);e?l("MOUNT"):y==="none"||d?.display==="none"?l("UNMOUNT"):l(p&&m!==y?"ANIMATION_OUT":"UNMOUNT"),i.current=e}},[e,l]),x0(()=>{if(t){const d=g=>{const y=fy(r.current).includes(g.animationName);g.target===t&&y&&El.exports.flushSync(()=>l("ANIMATION_END"))},p=g=>{g.target===t&&(o.current=fy(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:C.exports.useCallback(d=>{d&&(r.current=getComputedStyle(d)),n(d)},[])}}function fy(e){return e?.animationName||"none"}function C5e({prop:e,defaultProp:t,onChange:n=()=>{}}){const[r,i]=_5e({defaultProp:t,onChange:n}),o=e!==void 0,a=o?e:r,s=Cl(n),l=C.exports.useCallback(d=>{if(o){const g=typeof d=="function"?d(e):d;g!==e&&s(g)}else i(d)},[o,e,i,s]);return[a,l]}function _5e({defaultProp:e,onChange:t}){const n=C.exports.useState(e),[r]=n,i=C.exports.useRef(r),o=Cl(t);return C.exports.useEffect(()=>{i.current!==r&&(o(r),i.current=r)},[r,i,o]),n}const AS="rovingFocusGroup.onEntryFocus",k5e={bubbles:!1,cancelable:!0},Y7="RovingFocusGroup",[uC,o$,E5e]=HB(Y7),[P5e,a$]=Pv(Y7,[E5e]),[T5e,L5e]=P5e(Y7),A5e=C.exports.forwardRef((e,t)=>C.exports.createElement(uC.Provider,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(uC.Slot,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(I5e,En({},e,{ref:t}))))),I5e=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:i=!1,dir:o,currentTabStopId:a,defaultCurrentTabStopId:s,onCurrentTabStopIdChange:l,onEntryFocus:d,...p}=e,g=C.exports.useRef(null),m=Ha(t,g),y=WB(o),[b=null,S]=C5e({prop:a,defaultProp:s,onChange:l}),[E,P]=C.exports.useState(!1),k=Cl(d),L=o$(n),I=C.exports.useRef(!1),[O,N]=C.exports.useState(0);return C.exports.useEffect(()=>{const D=g.current;if(D)return D.addEventListener(AS,k),()=>D.removeEventListener(AS,k)},[k]),C.exports.createElement(T5e,{scope:n,orientation:r,dir:y,loop:i,currentTabStopId:b,onItemFocus:C.exports.useCallback(D=>S(D),[S]),onItemShiftTab:C.exports.useCallback(()=>P(!0),[]),onFocusableItemAdd:C.exports.useCallback(()=>N(D=>D+1),[]),onFocusableItemRemove:C.exports.useCallback(()=>N(D=>D-1),[])},C.exports.createElement(mu.div,En({tabIndex:E||O===0?-1:0,"data-orientation":r},p,{ref:m,style:{outline:"none",...e.style},onMouseDown:Gn(e.onMouseDown,()=>{I.current=!0}),onFocus:Gn(e.onFocus,D=>{const F=!I.current;if(D.target===D.currentTarget&&F&&!E){const U=new CustomEvent(AS,k5e);if(D.currentTarget.dispatchEvent(U),!U.defaultPrevented){const W=L().filter(Pe=>Pe.focusable),q=W.find(Pe=>Pe.active),pe=W.find(Pe=>Pe.id===b),ye=[q,pe,...W].filter(Boolean).map(Pe=>Pe.ref.current);s$(ye)}}I.current=!1}),onBlur:Gn(e.onBlur,()=>P(!1))})))}),M5e="RovingFocusGroupItem",R5e=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:i=!1,...o}=e,a=E3e(),s=L5e(M5e,n),l=s.currentTabStopId===a,d=o$(n),{onFocusableItemAdd:p,onFocusableItemRemove:g}=s;return C.exports.useEffect(()=>{if(r)return p(),()=>g()},[r,p,g]),C.exports.createElement(uC.ItemSlot,{scope:n,id:a,focusable:r,active:i},C.exports.createElement(mu.span,En({tabIndex:l?0:-1,"data-orientation":s.orientation},o,{ref:t,onMouseDown:Gn(e.onMouseDown,m=>{r?s.onItemFocus(a):m.preventDefault()}),onFocus:Gn(e.onFocus,()=>s.onItemFocus(a)),onKeyDown:Gn(e.onKeyDown,m=>{if(m.key==="Tab"&&m.shiftKey){s.onItemShiftTab();return}if(m.target!==m.currentTarget)return;const y=D5e(m,s.orientation,s.dir);if(y!==void 0){m.preventDefault();let S=d().filter(E=>E.focusable).map(E=>E.ref.current);if(y==="last")S.reverse();else if(y==="prev"||y==="next"){y==="prev"&&S.reverse();const E=S.indexOf(m.currentTarget);S=s.loop?z5e(S,E+1):S.slice(E+1)}setTimeout(()=>s$(S))}})})))}),O5e={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function N5e(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function D5e(e,t,n){const r=N5e(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return O5e[r]}function s$(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function z5e(e,t){return e.map((n,r)=>e[(t+r)%e.length])}const F5e=A5e,B5e=R5e,$5e=["Enter"," "],H5e=["ArrowDown","PageUp","Home"],l$=["ArrowUp","PageDown","End"],W5e=[...H5e,...l$],vx="Menu",[cC,V5e,U5e]=HB(vx),[Yf,u$]=Pv(vx,[U5e,t$,a$]),X7=t$(),c$=a$(),[G5e,yx]=Yf(vx),[j5e,Q7]=Yf(vx),q5e=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:i,onOpenChange:o,modal:a=!0}=e,s=X7(t),[l,d]=C.exports.useState(null),p=C.exports.useRef(!1),g=Cl(o),m=WB(i);return C.exports.useEffect(()=>{const y=()=>{p.current=!0,document.addEventListener("pointerdown",b,{capture:!0,once:!0}),document.addEventListener("pointermove",b,{capture:!0,once:!0})},b=()=>p.current=!1;return document.addEventListener("keydown",y,{capture:!0}),()=>{document.removeEventListener("keydown",y,{capture:!0}),document.removeEventListener("pointerdown",b,{capture:!0}),document.removeEventListener("pointermove",b,{capture:!0})}},[]),C.exports.createElement(y5e,s,C.exports.createElement(G5e,{scope:t,open:n,onOpenChange:g,content:l,onContentChange:d},C.exports.createElement(j5e,{scope:t,onClose:C.exports.useCallback(()=>g(!1),[g]),isUsingKeyboardRef:p,dir:m,modal:a},r)))},K5e=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,i=X7(n);return C.exports.createElement(x5e,En({},i,r,{ref:t}))}),Z5e="MenuPortal",[G9e,Y5e]=Yf(Z5e,{forceMount:void 0}),Wc="MenuContent",[X5e,d$]=Yf(Wc),Q5e=C.exports.forwardRef((e,t)=>{const n=Y5e(Wc,e.__scopeMenu),{forceMount:r=n.forceMount,...i}=e,o=yx(Wc,e.__scopeMenu),a=Q7(Wc,e.__scopeMenu);return C.exports.createElement(cC.Provider,{scope:e.__scopeMenu},C.exports.createElement(i$,{present:r||o.open},C.exports.createElement(cC.Slot,{scope:e.__scopeMenu},a.modal?C.exports.createElement(J5e,En({},i,{ref:t})):C.exports.createElement(e4e,En({},i,{ref:t})))))}),J5e=C.exports.forwardRef((e,t)=>{const n=yx(Wc,e.__scopeMenu),r=C.exports.useRef(null),i=Ha(t,r);return C.exports.useEffect(()=>{const o=r.current;if(o)return rz(o)},[]),C.exports.createElement(f$,En({},e,{ref:i,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:Gn(e.onFocusOutside,o=>o.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)}))}),e4e=C.exports.forwardRef((e,t)=>{const n=yx(Wc,e.__scopeMenu);return C.exports.createElement(f$,En({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)}))}),f$=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:i,onOpenAutoFocus:o,onCloseAutoFocus:a,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m,disableOutsideScroll:y,...b}=e,S=yx(Wc,n),E=Q7(Wc,n),P=X7(n),k=c$(n),L=V5e(n),[I,O]=C.exports.useState(null),N=C.exports.useRef(null),D=Ha(t,N,S.onContentChange),F=C.exports.useRef(0),U=C.exports.useRef(""),W=C.exports.useRef(0),q=C.exports.useRef(null),pe=C.exports.useRef("right"),fe=C.exports.useRef(0),ye=y?Vz:C.exports.Fragment,Pe=y?{as:ev,allowPinchZoom:!0}:void 0,xe=V=>{var ae,oe;const X=U.current+V,me=L().filter(qe=>!qe.disabled),ve=document.activeElement,Se=(ae=me.find(qe=>qe.ref.current===ve))===null||ae===void 0?void 0:ae.textValue,He=me.map(qe=>qe.textValue),je=u4e(He,X,Se),ut=(oe=me.find(qe=>qe.textValue===je))===null||oe===void 0?void 0:oe.ref.current;(function qe(at){U.current=at,window.clearTimeout(F.current),at!==""&&(F.current=window.setTimeout(()=>qe(""),1e3))})(X),ut&&setTimeout(()=>ut.focus())};C.exports.useEffect(()=>()=>window.clearTimeout(F.current),[]),m3e();const Y=C.exports.useCallback(V=>{var ae,oe;return pe.current===((ae=q.current)===null||ae===void 0?void 0:ae.side)&&d4e(V,(oe=q.current)===null||oe===void 0?void 0:oe.area)},[]);return C.exports.createElement(X5e,{scope:n,searchRef:U,onItemEnter:C.exports.useCallback(V=>{Y(V)&&V.preventDefault()},[Y]),onItemLeave:C.exports.useCallback(V=>{var ae;Y(V)||((ae=N.current)===null||ae===void 0||ae.focus(),O(null))},[Y]),onTriggerLeave:C.exports.useCallback(V=>{Y(V)&&V.preventDefault()},[Y]),pointerGraceTimerRef:W,onPointerGraceIntentChange:C.exports.useCallback(V=>{q.current=V},[])},C.exports.createElement(ye,Pe,C.exports.createElement(v3e,{asChild:!0,trapped:i,onMountAutoFocus:Gn(o,V=>{var ae;V.preventDefault(),(ae=N.current)===null||ae===void 0||ae.focus()}),onUnmountAutoFocus:a},C.exports.createElement(h3e,{asChild:!0,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m},C.exports.createElement(F5e,En({asChild:!0},k,{dir:E.dir,orientation:"vertical",loop:r,currentTabStopId:I,onCurrentTabStopIdChange:O,onEntryFocus:V=>{E.isUsingKeyboardRef.current||V.preventDefault()}}),C.exports.createElement(b5e,En({role:"menu","aria-orientation":"vertical","data-state":a4e(S.open),"data-radix-menu-content":"",dir:E.dir},P,b,{ref:D,style:{outline:"none",...b.style},onKeyDown:Gn(b.onKeyDown,V=>{const oe=V.target.closest("[data-radix-menu-content]")===V.currentTarget,X=V.ctrlKey||V.altKey||V.metaKey,me=V.key.length===1;oe&&(V.key==="Tab"&&V.preventDefault(),!X&&me&&xe(V.key));const ve=N.current;if(V.target!==ve||!W5e.includes(V.key))return;V.preventDefault();const He=L().filter(je=>!je.disabled).map(je=>je.ref.current);l$.includes(V.key)&&He.reverse(),s4e(He)}),onBlur:Gn(e.onBlur,V=>{V.currentTarget.contains(V.target)||(window.clearTimeout(F.current),U.current="")}),onPointerMove:Gn(e.onPointerMove,fC(V=>{const ae=V.target,oe=fe.current!==V.clientX;if(V.currentTarget.contains(ae)&&oe){const X=V.clientX>fe.current?"right":"left";pe.current=X,fe.current=V.clientX}}))})))))))}),dC="MenuItem",hA="menu.itemSelect",t4e=C.exports.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...i}=e,o=C.exports.useRef(null),a=Q7(dC,e.__scopeMenu),s=d$(dC,e.__scopeMenu),l=Ha(t,o),d=C.exports.useRef(!1),p=()=>{const g=o.current;if(!n&&g){const m=new CustomEvent(hA,{bubbles:!0,cancelable:!0});g.addEventListener(hA,y=>r?.(y),{once:!0}),$B(g,m),m.defaultPrevented?d.current=!1:a.onClose()}};return C.exports.createElement(n4e,En({},i,{ref:l,disabled:n,onClick:Gn(e.onClick,p),onPointerDown:g=>{var m;(m=e.onPointerDown)===null||m===void 0||m.call(e,g),d.current=!0},onPointerUp:Gn(e.onPointerUp,g=>{var m;d.current||(m=g.currentTarget)===null||m===void 0||m.click()}),onKeyDown:Gn(e.onKeyDown,g=>{const m=s.searchRef.current!=="";n||m&&g.key===" "||$5e.includes(g.key)&&(g.currentTarget.click(),g.preventDefault())})}))}),n4e=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:i,...o}=e,a=d$(dC,n),s=c$(n),l=C.exports.useRef(null),d=Ha(t,l),[p,g]=C.exports.useState(!1),[m,y]=C.exports.useState("");return C.exports.useEffect(()=>{const b=l.current;if(b){var S;y(((S=b.textContent)!==null&&S!==void 0?S:"").trim())}},[o.children]),C.exports.createElement(cC.ItemSlot,{scope:n,disabled:r,textValue:i??m},C.exports.createElement(B5e,En({asChild:!0},s,{focusable:!r}),C.exports.createElement(mu.div,En({role:"menuitem","data-highlighted":p?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0},o,{ref:d,onPointerMove:Gn(e.onPointerMove,fC(b=>{r?a.onItemLeave(b):(a.onItemEnter(b),b.defaultPrevented||b.currentTarget.focus())})),onPointerLeave:Gn(e.onPointerLeave,fC(b=>a.onItemLeave(b))),onFocus:Gn(e.onFocus,()=>g(!0)),onBlur:Gn(e.onBlur,()=>g(!1))}))))}),r4e="MenuRadioGroup";Yf(r4e,{value:void 0,onValueChange:()=>{}});const i4e="MenuItemIndicator";Yf(i4e,{checked:!1});const o4e="MenuSub";Yf(o4e);function a4e(e){return e?"open":"closed"}function s4e(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function l4e(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function u4e(e,t,n){const i=t.length>1&&Array.from(t).every(d=>d===t[0])?t[0]:t,o=n?e.indexOf(n):-1;let a=l4e(e,Math.max(o,0));i.length===1&&(a=a.filter(d=>d!==n));const l=a.find(d=>d.toLowerCase().startsWith(i.toLowerCase()));return l!==n?l:void 0}function c4e(e,t){const{x:n,y:r}=e;let i=!1;for(let o=0,a=t.length-1;or!=p>r&&n<(d-s)*(r-l)/(p-l)+s&&(i=!i)}return i}function d4e(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return c4e(n,t)}function fC(e){return t=>t.pointerType==="mouse"?e(t):void 0}const f4e=q5e,h4e=K5e,p4e=Q5e,g4e=t4e,h$="ContextMenu",[m4e,j9e]=Pv(h$,[u$]),xx=u$(),[v4e,p$]=m4e(h$),y4e=e=>{const{__scopeContextMenu:t,children:n,onOpenChange:r,dir:i,modal:o=!0}=e,[a,s]=C.exports.useState(!1),l=xx(t),d=Cl(r),p=C.exports.useCallback(g=>{s(g),d(g)},[d]);return C.exports.createElement(v4e,{scope:t,open:a,onOpenChange:p,modal:o},C.exports.createElement(f4e,En({},l,{dir:i,open:a,onOpenChange:p,modal:o}),n))},x4e="ContextMenuTrigger",b4e=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=p$(x4e,n),o=xx(n),a=C.exports.useRef({x:0,y:0}),s=C.exports.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...a.current})}),l=C.exports.useRef(0),d=C.exports.useCallback(()=>window.clearTimeout(l.current),[]),p=g=>{a.current={x:g.clientX,y:g.clientY},i.onOpenChange(!0)};return C.exports.useEffect(()=>d,[d]),C.exports.createElement(C.exports.Fragment,null,C.exports.createElement(h4e,En({},o,{virtualRef:s})),C.exports.createElement(mu.span,En({"data-state":i.open?"open":"closed"},r,{ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:Gn(e.onContextMenu,g=>{d(),p(g),g.preventDefault()}),onPointerDown:Gn(e.onPointerDown,hy(g=>{d(),l.current=window.setTimeout(()=>p(g),700)})),onPointerMove:Gn(e.onPointerMove,hy(d)),onPointerCancel:Gn(e.onPointerCancel,hy(d)),onPointerUp:Gn(e.onPointerUp,hy(d))})))}),S4e="ContextMenuContent",w4e=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=p$(S4e,n),o=xx(n),a=C.exports.useRef(!1);return C.exports.createElement(p4e,En({},o,r,{ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:s=>{var l;(l=e.onCloseAutoFocus)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&a.current&&s.preventDefault(),a.current=!1},onInteractOutside:s=>{var l;(l=e.onInteractOutside)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&!i.modal&&(a.current=!0)},style:{...e.style,["--radix-context-menu-content-transform-origin"]:"var(--radix-popper-transform-origin)"}}))}),C4e=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=xx(n);return C.exports.createElement(g4e,En({},i,r,{ref:t}))});function hy(e){return t=>t.pointerType!=="mouse"?e(t):void 0}const _4e=y4e,k4e=b4e,E4e=w4e,ef=C4e,P4e=jt([e=>e.gallery,e=>e.options,Ga],(e,t,n)=>{const{categories:r,currentCategory:i,currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,galleryWidth:y}=e;return{currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,galleryGridTemplateColumns:`repeat(auto-fill, minmax(${d}px, auto))`,activeTabName:n,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,images:r[i].images,areMoreImagesAvailable:r[i].areMoreImagesAvailable,currentCategory:i,galleryWidth:y}}),T4e=jt([e=>e.options,e=>e.gallery,e=>e.system,Ga],(e,t,n,r)=>({mayDeleteImage:n.isConnected&&!n.isProcessing,galleryImageObjectFit:t.galleryImageObjectFit,galleryImageMinimumWidth:t.galleryImageMinimumWidth,activeTabName:r})),L4e=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,A4e=C.exports.memo(e=>{const t=ct(),{activeTabName:n,galleryImageObjectFit:r,galleryImageMinimumWidth:i,mayDeleteImage:o}=$e(T4e),{image:a,isSelected:s}=e,{url:l,uuid:d,metadata:p}=a,[g,m]=C.exports.useState(!1),y=od(),b=()=>m(!0),S=()=>m(!1),E=()=>{a.metadata&&t(d_(a.metadata.image.prompt)),y({title:"Prompt Set",status:"success",duration:2500,isClosable:!0})},P=()=>{a.metadata&&t(Iv(a.metadata.image.seed)),y({title:"Seed Set",status:"success",duration:2500,isClosable:!0})},k=()=>{t(nv(a)),n!=="img2img"&&t(Pa("img2img")),y({title:"Sent to Image To Image",status:"success",duration:2500,isClosable:!0})},L=()=>{t(E5(a)),n!=="inpainting"&&t(Pa("inpainting")),y({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0})},I=()=>{p&&t(Ywe(p)),y({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})},O=async()=>{if(p?.image?.init_image_path&&(await fetch(p.image.init_image_path)).ok){t(Pa("img2img")),t(Xwe(p)),y({title:"Initial Image Set",status:"success",duration:2500,isClosable:!0});return}y({title:"Initial Image Not Set",description:"Could not load initial image.",status:"error",duration:2500,isClosable:!0})};return te(_4e,{children:[w(k4e,{children:te(Pl,{position:"relative",className:"hoverable-image",onMouseOver:b,onMouseOut:S,children:[w(z4,{className:"hoverable-image-image",objectFit:r,rounded:"md",src:l,loading:"lazy"}),w("div",{className:"hoverable-image-content",onClick:()=>t(OB(a)),children:s&&w(ha,{width:"50%",height:"50%",as:T2e,className:"hoverable-image-check"})}),g&&i>=64&&w("div",{className:"hoverable-image-delete-button",children:w(Xr,{label:"Delete image",hasArrow:!0,children:w(tC,{image:a,children:w(Bi,{"aria-label":"Delete image",icon:w(W2e,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14,isDisabled:!o})})})})]},d)}),te(E4e,{className:"hoverable-image-context-menu",sticky:"always",children:[w(ef,{onClickCapture:E,disabled:a?.metadata?.image?.prompt===void 0,children:"Use Prompt"}),w(ef,{onClickCapture:P,disabled:a?.metadata?.image?.seed===void 0,children:"Use Seed"}),w(ef,{onClickCapture:I,disabled:!["txt2img","img2img"].includes(a?.metadata?.image?.type),children:"Use All Parameters"}),w(Xr,{label:"Load initial image used for this generation",children:w(ef,{onClickCapture:O,disabled:a?.metadata?.image?.type!=="img2img",children:"Use Initial Image"})}),w(ef,{onClickCapture:k,children:"Send to Image To Image"}),w(ef,{onClickCapture:L,children:"Send to Inpainting"}),w(tC,{image:a,children:w(ef,{"data-warning":!0,children:"Delete Image"})})]})]})},L4e),l3=e=>{const{triggerComponent:t,children:n,styleClass:r,hasArrow:i=!0,...o}=e;return te(j4,{...o,children:[w(Z4,{children:w(Pl,{children:t})}),te(K4,{className:`invokeai__popover-content ${r}`,children:[i&&w(q4,{className:"invokeai__popover-arrow"}),n]})]})},R5=e=>{const{label:t,styleClass:n,formControlProps:r,formLabelProps:i,sliderTrackProps:o,sliderInnerTrackProps:a,sliderThumbProps:s,sliderThumbTooltipProps:l,...d}=e;return w(td,{className:`invokeai__slider-form-control ${n}`,...r,children:te("div",{className:"invokeai__slider-inner-container",children:[w(Gf,{className:"invokeai__slider-form-label",whiteSpace:"nowrap",...i,children:t}),te(d7,{className:"invokeai__slider-root","aria-label":t,...d,children:[w(gF,{className:"invokeai__slider-track",...o,children:w(mF,{className:"invokeai__slider-filled-track",...a})}),w(Xr,{className:"invokeai__slider-thumb-tooltip",placement:"top",hasArrow:!0,...l,children:w(pF,{className:"invokeai__slider-thumb",...s})})]})]})})};function g$(e){return mt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 19c.946 0 1.81-.103 2.598-.281l-1.757-1.757c-.273.021-.55.038-.841.038-5.351 0-7.424-3.846-7.926-5a8.642 8.642 0 0 1 1.508-2.297L4.184 8.305c-1.538 1.667-2.121 3.346-2.132 3.379a.994.994 0 0 0 0 .633C2.073 12.383 4.367 19 12 19zm0-14c-1.837 0-3.346.396-4.604.981L3.707 2.293 2.293 3.707l18 18 1.414-1.414-3.319-3.319c2.614-1.951 3.547-4.615 3.561-4.657a.994.994 0 0 0 0-.633C21.927 11.617 19.633 5 12 5zm4.972 10.558-2.28-2.28c.19-.39.308-.819.308-1.278 0-1.641-1.359-3-3-3-.459 0-.888.118-1.277.309L8.915 7.501A9.26 9.26 0 0 1 12 7c5.351 0 7.424 3.846 7.926 5-.302.692-1.166 2.342-2.954 3.558z"}}]})(e)}function hC(e){return mt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 16c1.671 0 3-1.331 3-3s-1.329-3-3-3-3 1.331-3 3 1.329 3 3 3z"}},{tag:"path",attr:{d:"M20.817 11.186a8.94 8.94 0 0 0-1.355-3.219 9.053 9.053 0 0 0-2.43-2.43 8.95 8.95 0 0 0-3.219-1.355 9.028 9.028 0 0 0-1.838-.18V2L8 5l3.975 3V6.002c.484-.002.968.044 1.435.14a6.961 6.961 0 0 1 2.502 1.053 7.005 7.005 0 0 1 1.892 1.892A6.967 6.967 0 0 1 19 13a7.032 7.032 0 0 1-.55 2.725 7.11 7.11 0 0 1-.644 1.188 7.2 7.2 0 0 1-.858 1.039 7.028 7.028 0 0 1-3.536 1.907 7.13 7.13 0 0 1-2.822 0 6.961 6.961 0 0 1-2.503-1.054 7.002 7.002 0 0 1-1.89-1.89A6.996 6.996 0 0 1 5 13H3a9.02 9.02 0 0 0 1.539 5.034 9.096 9.096 0 0 0 2.428 2.428A8.95 8.95 0 0 0 12 22a9.09 9.09 0 0 0 1.814-.183 9.014 9.014 0 0 0 3.218-1.355 8.886 8.886 0 0 0 1.331-1.099 9.228 9.228 0 0 0 1.1-1.332A8.952 8.952 0 0 0 21 13a9.09 9.09 0 0 0-.183-1.814z"}}]})(e)}function m$(e){return mt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 9a3.02 3.02 0 0 0-3 3c0 1.642 1.358 3 3 3 1.641 0 3-1.358 3-3 0-1.641-1.359-3-3-3z"}},{tag:"path",attr:{d:"M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316-.105-.316C21.927 11.617 19.633 5 12 5zm0 12c-5.351 0-7.424-3.846-7.926-5C4.578 10.842 6.652 7 12 7c5.351 0 7.424 3.846 7.926 5-.504 1.158-2.578 5-7.926 5z"}}]})(e)}const I4e=320;function M4e(){const e=ct(),t=od(),{images:n,currentCategory:r,currentImageUuid:i,shouldPinGallery:o,shouldShowGallery:a,galleryScrollPosition:s,galleryImageMinimumWidth:l,galleryGridTemplateColumns:d,activeTabName:p,galleryImageObjectFit:g,shouldHoldGalleryOpen:m,shouldAutoSwitchToNewImages:y,areMoreImagesAvailable:b,galleryWidth:S}=$e(P4e),[E,P]=C.exports.useState(300),[k,L]=C.exports.useState(590),[I,O]=C.exports.useState(S>=I4e);C.exports.useEffect(()=>{!o||(p==="inpainting"?(e(sy(220)),P(220),L(220)):p==="img2img"?(e(sy(Math.min(Math.max(Number(S),0),490))),L(490)):(e(sy(Math.min(Math.max(Number(S),0),590))),L(590)),e(Cf(!0)))},[e,p,o,S]),C.exports.useEffect(()=>{o||L(window.innerWidth)},[o]);const N=C.exports.useRef(null),D=C.exports.useRef(null),F=C.exports.useRef(null),U=()=>{e(Oye(!o)),e(Cf(!0))},W=()=>{a?pe():q()},q=()=>{e(nC(!0)),o&&e(Cf(!0))},pe=()=>{e(nC(!1)),e(Nye(D.current?D.current.scrollTop:0)),e(zye(!1))},fe=()=>{e(J6(r))},ye=V=>{e(Jd(V)),e(Cf(!0))},Pe=()=>{F.current=window.setTimeout(()=>pe(),500)},xe=()=>{F.current&&window.clearTimeout(F.current)};Dt("g",()=>{W()},[a]),Dt("left",()=>{e(DB())}),Dt("right",()=>{e(NB())}),Dt("shift+g",()=>{U()},[o]);const Y=32;return Dt("shift+up",()=>{if(!(l>=256)&&l<256){const V=l+Y;V<=256?(e(Jd(V)),t({title:`Gallery Thumbnail Size set to ${V}`,status:"success",duration:1e3,isClosable:!0})):(e(Jd(256)),t({title:"Gallery Thumbnail Size set to 256",status:"success",duration:1e3,isClosable:!0}))}},[l]),Dt("shift+down",()=>{if(!(l<=32)&&l>32){const V=l-Y;V>32?(e(Jd(V)),t({title:`Gallery Thumbnail Size set to ${V}`,status:"success",duration:1e3,isClosable:!0})):(e(Jd(32)),t({title:"Gallery Thumbnail Size set to 32",status:"success",duration:1e3,isClosable:!0}))}},[l]),Dt("shift+r",()=>{e(Jd(64)),t({title:"Reset Gallery Image Size",status:"success",duration:2500,isClosable:!0})},[l]),C.exports.useEffect(()=>{!D.current||(D.current.scrollTop=s)},[s,a]),C.exports.useEffect(()=>{O(S>=280)},[S]),EB(N,pe,!o),w(kB,{nodeRef:N,in:a||m&&!o,unmountOnExit:!0,timeout:200,classNames:"image-gallery-wrapper",children:w("div",{className:"image-gallery-wrapper","data-pinned":o,ref:N,onMouseLeave:o?void 0:Pe,onMouseEnter:o?void 0:xe,onMouseOver:o?void 0:xe,children:te(FB,{minWidth:E,maxWidth:k,className:"image-gallery-popup",handleStyles:{left:{width:"15px"}},enable:{top:!1,right:!1,bottom:!1,left:!0,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},size:{width:S,height:o?"100%":"100vh"},onResizeStop:(V,ae,oe,X)=>{e(sy(Wt.clamp(Number(S)+X.width,0,Number(k)))),oe.removeAttribute("data-resize-alert")},onResize:(V,ae,oe,X)=>{const me=Wt.clamp(Number(S)+X.width,0,Number(k));me>=280&&!I?O(!0):me<280&&I&&O(!1),me>=k?oe.setAttribute("data-resize-alert","true"):oe.removeAttribute("data-resize-alert")},children:[te("div",{className:"image-gallery-header",children:[w("div",{children:w(cD,{size:"sm",isAttached:!0,variant:"solid",className:"image-gallery-category-btn-group",children:I?te(Fn,{children:[w(Na,{"data-selected":r==="result",onClick:()=>e(ay("result")),children:"Invocations"}),w(Na,{"data-selected":r==="user",onClick:()=>e(ay("user")),children:"User"})]}):te(Fn,{children:[w(sn,{"aria-label":"Show Invocations",tooltip:"Show Invocations","data-selected":r==="result",icon:w(I2e,{}),onClick:()=>e(ay("result"))}),w(sn,{"aria-label":"Show Uploads",tooltip:"Show Uploads","data-selected":r==="user",icon:w(j2e,{}),onClick:()=>e(ay("user"))})]})})}),te("div",{children:[w(l3,{isLazy:!0,trigger:"hover",placement:"left",triggerComponent:w(sn,{size:"sm","aria-label":"Gallery Settings",icon:w(q2e,{}),className:"image-gallery-icon-btn",cursor:"pointer"}),children:te("div",{className:"image-gallery-settings-popover",children:[te("div",{children:[w(R5,{value:l,onChange:ye,min:32,max:256,width:100,label:"Image Size",formLabelProps:{style:{fontSize:"0.9rem"}},sliderThumbTooltipProps:{label:`${l}px`}}),w(sn,{size:"sm","aria-label":"Reset",tooltip:"Reset Size",onClick:()=>e(Jd(64)),icon:w(hC,{}),"data-selected":o,styleClass:"image-gallery-icon-btn"})]}),w("div",{children:w(Jm,{label:"Maintain Aspect Ratio",isChecked:g==="contain",onChange:()=>e(Dye(g==="contain"?"cover":"contain"))})}),w("div",{children:w(Jm,{label:"Auto-Switch to New Images",isChecked:y,onChange:V=>e(Fye(V.target.checked))})})]})}),w(sn,{size:"sm",className:"image-gallery-icon-btn","aria-label":"Pin Gallery",tooltip:"Pin Gallery (Shift+G)",onClick:U,icon:o?w(SB,{}):w(wB,{})})]})]}),w("div",{className:"image-gallery-container",ref:D,children:n.length||b?te(Fn,{children:[w("div",{className:"image-gallery",style:{gridTemplateColumns:d},children:n.map(V=>{const{uuid:ae}=V;return w(A4e,{image:V,isSelected:i===ae},ae)})}),w(Na,{onClick:fe,isDisabled:!b,className:"image-gallery-load-more-btn",children:b?"Load More":"All Images Loaded"})]}):te("div",{className:"image-gallery-container-placeholder",children:[w(pB,{}),w("p",{children:"No Images In Gallery"})]})})]})})})}const J7=e=>{const{optionsPanel:t,children:n,styleClass:r}=e;return w("div",{className:r?`workarea-wrapper ${r}`:"workarea-wrapper",children:te("div",{className:"workarea-main",children:[t,n,w(M4e,{})]})})};function R4e(){return w(J7,{optionsPanel:w(Pye,{}),children:w(qye,{})})}const O4e=jt(e=>e.inpainting,e=>{const{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,pastLines:o,futureLines:a,shouldLockBoundingBox:s}=e;return{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,pastLines:o,futureLines:a,shouldLockBoundingBox:s}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),N4e=()=>{const e=ct(),{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,shouldLockBoundingBox:o}=$e(O4e),a=y=>{e(Tg({...n,width:Math.floor(y)}))},s=y=>{e(Tg({...n,height:Math.floor(y)}))},l=()=>{e(bye(!i))},d=()=>{e(TB(!o))},p=()=>{e(Tg({...n,width:Math.floor(t.width)}))},g=()=>{e(Tg({...n,height:Math.floor(t.height)}))};return te("div",{className:"inpainting-bounding-box-settings",children:[te("div",{className:"inpainting-bounding-box-header",children:[w("p",{children:"Inpaint Box"}),w(sn,{"aria-label":"Toggle Bounding Box Visibility",icon:r?w(m$,{size:22}):w(g$,{size:22}),onClick:()=>e(xye(!r)),background:"none",padding:0})]}),te("div",{className:"inpainting-bounding-box-settings-items",children:[te("div",{className:"inpainting-bounding-box-dimensions-slider-numberinput",children:[w(R5,{label:"Box W",min:64,max:Ea(t.width,64),step:64,value:n.width,onChange:a,width:"5rem"}),w(no,{value:n.width,onChange:a,min:64,max:Ea(t.width,64),step:64,width:"5rem"}),w(sn,{size:"sm","aria-label":"Reset Width",tooltip:"Reset Width",onClick:p,icon:w(hC,{}),styleClass:"inpainting-bounding-box-reset-icon-btn",isDisabled:t.width===n.width})]}),te("div",{className:"inpainting-bounding-box-dimensions-slider-numberinput",children:[w(R5,{label:"Box H",min:64,max:Ea(t.height,64),step:64,value:n.height,onChange:s,width:"5rem"}),w(no,{value:n.height,onChange:s,min:64,max:Ea(t.height,64),step:64,padding:"0",width:"5rem"}),w(sn,{size:"sm","aria-label":"Reset Height",tooltip:"Reset Height",onClick:g,icon:w(hC,{}),styleClass:"inpainting-bounding-box-reset-icon-btn",isDisabled:t.height===n.height})]}),te(Dn,{alignItems:"center",justifyContent:"space-between",children:[w(Jm,{label:"Darken Outside Box",isChecked:i,onChange:l,styleClass:"inpainting-bounding-box-darken"}),w(Jm,{label:"Lock Bounding Box",isChecked:o,onChange:d,styleClass:"inpainting-bounding-box-darken"})]})]})]})},D4e=jt(e=>e.inpainting,e=>{const{pastLines:t,futureLines:n,inpaintReplace:r,shouldUseInpaintReplace:i}=e;return{pastLines:t,futureLines:n,inpaintReplace:r,shouldUseInpaintReplace:i}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}});function z4e(){const e=ct(),t=od(),{pastLines:n,futureLines:r,inpaintReplace:i,shouldUseInpaintReplace:o}=$e(D4e);return te(Fn,{children:[te("div",{style:{display:"flex",alignItems:"center",padding:"0 1rem 0 0.2rem"},children:[w(no,{label:"Inpaint Replace",value:i,min:0,max:1,step:.05,width:"auto",formControlProps:{style:{paddingRight:"1rem"}},isInteger:!1,isDisabled:!o,onChange:s=>{e(Cye(s))}}),w(Su,{isChecked:o,onChange:s=>e(wye(s.target.checked))})]}),w(N4e,{}),w(k5,{label:"Clear Brush History",onClick:()=>{e(Sye()),t({title:"Brush Stroke History Cleared",status:"success",duration:2500,isClosable:!0})},tooltip:"Clears brush stroke history",disabled:!(r.length>0||n.length>0),styleClass:"inpainting-options-btn"})]})}function F4e(){const e=$e(n=>n.options.showAdvancedOptions),t={seed:{header:w(M7,{}),feature:Ji.SEED,options:w(R7,{})},variations:{header:w(N7,{}),feature:Ji.VARIATIONS,options:w(D7,{})},face_restore:{header:w(L7,{}),feature:Ji.FACE_CORRECTION,options:w(fx,{})},upscale:{header:w(O7,{}),feature:Ji.UPSCALE,options:w(hx,{})}};return te(G7,{children:[w(W7,{}),w(H7,{}),w(B7,{}),w(iB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),w(z4e,{}),w(z7,{}),e?w($7,{accordionInfo:t}):null]})}var B4e=Math.PI/180;function $4e(){return typeof window<"u"&&({}.toString.call(window)==="[object Window]"||{}.toString.call(window)==="[object global]")}const e0=typeof global<"u"?global:typeof window<"u"?window:typeof WorkerGlobalScope<"u"?self:{},Je={_global:e0,version:"8.3.13",isBrowser:$4e(),isUnminified:/param/.test(function(e){}.toString()),dblClickWindow:400,getAngle(e){return Je.angleDeg?e*B4e:e},enableTrace:!1,pointerEventsEnabled:!0,autoDrawEnabled:!0,hitOnDragEnabled:!1,capturePointerEventsEnabled:!1,_mouseListenClick:!1,_touchListenClick:!1,_pointerListenClick:!1,_mouseInDblClickWindow:!1,_touchInDblClickWindow:!1,_pointerInDblClickWindow:!1,_mouseDblClickPointerId:null,_touchDblClickPointerId:null,_pointerDblClickPointerId:null,pixelRatio:typeof window<"u"&&window.devicePixelRatio||1,dragDistance:3,angleDeg:!0,showWarnings:!0,dragButtons:[0,1],isDragging(){return Je.DD.isDragging},isDragReady(){return!!Je.DD.node},document:e0.document,_injectGlobal(e){e0.Konva=e}},hr=e=>{Je[e.prototype.getClassName()]=e};Je._injectGlobal(Je);class Qo{constructor(t=[1,0,0,1,0,0]){this.dirty=!1,this.m=t&&t.slice()||[1,0,0,1,0,0]}reset(){this.m[0]=1,this.m[1]=0,this.m[2]=0,this.m[3]=1,this.m[4]=0,this.m[5]=0}copy(){return new Qo(this.m)}copyInto(t){t.m[0]=this.m[0],t.m[1]=this.m[1],t.m[2]=this.m[2],t.m[3]=this.m[3],t.m[4]=this.m[4],t.m[5]=this.m[5]}point(t){var n=this.m;return{x:n[0]*t.x+n[2]*t.y+n[4],y:n[1]*t.x+n[3]*t.y+n[5]}}translate(t,n){return this.m[4]+=this.m[0]*t+this.m[2]*n,this.m[5]+=this.m[1]*t+this.m[3]*n,this}scale(t,n){return this.m[0]*=t,this.m[1]*=t,this.m[2]*=n,this.m[3]*=n,this}rotate(t){var n=Math.cos(t),r=Math.sin(t),i=this.m[0]*n+this.m[2]*r,o=this.m[1]*n+this.m[3]*r,a=this.m[0]*-r+this.m[2]*n,s=this.m[1]*-r+this.m[3]*n;return this.m[0]=i,this.m[1]=o,this.m[2]=a,this.m[3]=s,this}getTranslation(){return{x:this.m[4],y:this.m[5]}}skew(t,n){var r=this.m[0]+this.m[2]*n,i=this.m[1]+this.m[3]*n,o=this.m[2]+this.m[0]*t,a=this.m[3]+this.m[1]*t;return this.m[0]=r,this.m[1]=i,this.m[2]=o,this.m[3]=a,this}multiply(t){var n=this.m[0]*t.m[0]+this.m[2]*t.m[1],r=this.m[1]*t.m[0]+this.m[3]*t.m[1],i=this.m[0]*t.m[2]+this.m[2]*t.m[3],o=this.m[1]*t.m[2]+this.m[3]*t.m[3],a=this.m[0]*t.m[4]+this.m[2]*t.m[5]+this.m[4],s=this.m[1]*t.m[4]+this.m[3]*t.m[5]+this.m[5];return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}invert(){var t=1/(this.m[0]*this.m[3]-this.m[1]*this.m[2]),n=this.m[3]*t,r=-this.m[1]*t,i=-this.m[2]*t,o=this.m[0]*t,a=t*(this.m[2]*this.m[5]-this.m[3]*this.m[4]),s=t*(this.m[1]*this.m[4]-this.m[0]*this.m[5]);return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}getMatrix(){return this.m}decompose(){var t=this.m[0],n=this.m[1],r=this.m[2],i=this.m[3],o=this.m[4],a=this.m[5],s=t*i-n*r;let l={x:o,y:a,rotation:0,scaleX:0,scaleY:0,skewX:0,skewY:0};if(t!=0||n!=0){var d=Math.sqrt(t*t+n*n);l.rotation=n>0?Math.acos(t/d):-Math.acos(t/d),l.scaleX=d,l.scaleY=s/d,l.skewX=(t*r+n*i)/s,l.skewY=0}else if(r!=0||i!=0){var p=Math.sqrt(r*r+i*i);l.rotation=Math.PI/2-(i>0?Math.acos(-r/p):-Math.acos(r/p)),l.scaleX=s/p,l.scaleY=p,l.skewX=0,l.skewY=(t*r+n*i)/s}return l.rotation=se._getRotation(l.rotation),l}}var H4e="[object Array]",W4e="[object Number]",V4e="[object String]",U4e="[object Boolean]",G4e=Math.PI/180,j4e=180/Math.PI,IS="#",q4e="",K4e="0",Z4e="Konva warning: ",pA="Konva error: ",Y4e="rgb(",MS={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,132,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,255,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,203],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[119,128,144],slategrey:[119,128,144],snow:[255,255,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],transparent:[255,255,255,0],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,5]},X4e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/,py=[];const Q4e=typeof requestAnimationFrame<"u"&&requestAnimationFrame||function(e){setTimeout(e,60)},se={_isElement(e){return!!(e&&e.nodeType==1)},_isFunction(e){return!!(e&&e.constructor&&e.call&&e.apply)},_isPlainObject(e){return!!e&&e.constructor===Object},_isArray(e){return Object.prototype.toString.call(e)===H4e},_isNumber(e){return Object.prototype.toString.call(e)===W4e&&!isNaN(e)&&isFinite(e)},_isString(e){return Object.prototype.toString.call(e)===V4e},_isBoolean(e){return Object.prototype.toString.call(e)===U4e},isObject(e){return e instanceof Object},isValidSelector(e){if(typeof e!="string")return!1;var t=e[0];return t==="#"||t==="."||t===t.toUpperCase()},_sign(e){return e===0||e>0?1:-1},requestAnimFrame(e){py.push(e),py.length===1&&Q4e(function(){const t=py;py=[],t.forEach(function(n){n()})})},createCanvasElement(){var e=document.createElement("canvas");try{e.style=e.style||{}}catch{}return e},createImageElement(){return document.createElement("img")},_isInDocument(e){for(;e=e.parentNode;)if(e==document)return!0;return!1},_urlToImage(e,t){var n=se.createImageElement();n.onload=function(){t(n)},n.src=e},_rgbToHex(e,t,n){return((1<<24)+(e<<16)+(t<<8)+n).toString(16).slice(1)},_hexToRgb(e){e=e.replace(IS,q4e);var t=parseInt(e,16);return{r:t>>16&255,g:t>>8&255,b:t&255}},getRandomColor(){for(var e=(Math.random()*16777215<<0).toString(16);e.length<6;)e=K4e+e;return IS+e},getRGB(e){var t;return e in MS?(t=MS[e],{r:t[0],g:t[1],b:t[2]}):e[0]===IS?this._hexToRgb(e.substring(1)):e.substr(0,4)===Y4e?(t=X4e.exec(e.replace(/ /g,"")),{r:parseInt(t[1],10),g:parseInt(t[2],10),b:parseInt(t[3],10)}):{r:0,g:0,b:0}},colorToRGBA(e){return e=e||"black",se._namedColorToRBA(e)||se._hex3ColorToRGBA(e)||se._hex6ColorToRGBA(e)||se._rgbColorToRGBA(e)||se._rgbaColorToRGBA(e)||se._hslColorToRGBA(e)},_namedColorToRBA(e){var t=MS[e.toLowerCase()];return t?{r:t[0],g:t[1],b:t[2],a:1}:null},_rgbColorToRGBA(e){if(e.indexOf("rgb(")===0){e=e.match(/rgb\(([^)]+)\)/)[1];var t=e.split(/ *, */).map(Number);return{r:t[0],g:t[1],b:t[2],a:1}}},_rgbaColorToRGBA(e){if(e.indexOf("rgba(")===0){e=e.match(/rgba\(([^)]+)\)/)[1];var t=e.split(/ *, */).map((n,r)=>n.slice(-1)==="%"?r===3?parseInt(n)/100:parseInt(n)/100*255:Number(n));return{r:t[0],g:t[1],b:t[2],a:t[3]}}},_hex6ColorToRGBA(e){if(e[0]==="#"&&e.length===7)return{r:parseInt(e.slice(1,3),16),g:parseInt(e.slice(3,5),16),b:parseInt(e.slice(5,7),16),a:1}},_hex3ColorToRGBA(e){if(e[0]==="#"&&e.length===4)return{r:parseInt(e[1]+e[1],16),g:parseInt(e[2]+e[2],16),b:parseInt(e[3]+e[3],16),a:1}},_hslColorToRGBA(e){if(/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.test(e)){const[t,...n]=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(e),r=Number(n[0])/360,i=Number(n[1])/100,o=Number(n[2])/100;let a,s,l;if(i===0)return l=o*255,{r:Math.round(l),g:Math.round(l),b:Math.round(l),a:1};o<.5?a=o*(1+i):a=o+i-o*i;const d=2*o-a,p=[0,0,0];for(let g=0;g<3;g++)s=r+1/3*-(g-1),s<0&&s++,s>1&&s--,6*s<1?l=d+(a-d)*6*s:2*s<1?l=a:3*s<2?l=d+(a-d)*(2/3-s)*6:l=d,p[g]=l*255;return{r:Math.round(p[0]),g:Math.round(p[1]),b:Math.round(p[2]),a:1}}},haveIntersection(e,t){return!(t.x>e.x+e.width||t.x+t.widthe.y+e.height||t.y+t.height1?(a=n,s=r,l=(n-i)*(n-i)+(r-o)*(r-o)):(a=e+p*(n-e),s=t+p*(r-t),l=(a-i)*(a-i)+(s-o)*(s-o))}return[a,s,l]},_getProjectionToLine(e,t,n){var r=se.cloneObject(e),i=Number.MAX_VALUE;return t.forEach(function(o,a){if(!(!n&&a===t.length-1)){var s=t[(a+1)%t.length],l=se._getProjectionToSegment(o.x,o.y,s.x,s.y,e.x,e.y),d=l[0],p=l[1],g=l[2];gt.length){var a=t;t=e,e=a}for(r=0;r255?255:e<0?0:Math.round(e)}function De(){if(Je.isUnminified)return function(e,t){return se._isNumber(e)||se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a number.'),e}}function y$(e){if(Je.isUnminified)return function(t,n){let r=se._isNumber(t),i=se._isArray(t)&&t.length==e;return!r&&!i&&se.warn(sd(t)+' is a not valid value for "'+n+'" attribute. The value should be a number or Array('+e+")"),t}}function e_(){if(Je.isUnminified)return function(e,t){var n=se._isNumber(e),r=e==="auto";return n||r||se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a number or "auto".'),e}}function B0(){if(Je.isUnminified)return function(e,t){return se._isString(e)||se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a string.'),e}}function x$(){if(Je.isUnminified)return function(e,t){const n=se._isString(e),r=Object.prototype.toString.call(e)==="[object CanvasGradient]"||e&&e.addColorStop;return n||r||se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a string or a native gradient.'),e}}function J4e(){if(Je.isUnminified)return function(e,t){const n=Int8Array?Object.getPrototypeOf(Int8Array):null;return n&&e instanceof n||(se._isArray(e)?e.forEach(function(r){se._isNumber(r)||se.warn('"'+t+'" attribute has non numeric element '+r+". Make sure that all elements are numbers.")}):se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a array of numbers.')),e}}function ks(){if(Je.isUnminified)return function(e,t){var n=e===!0||e===!1;return n||se.warn(sd(e)+' is a not valid value for "'+t+'" attribute. The value should be a boolean.'),e}}function exe(e){if(Je.isUnminified)return function(t,n){return t==null||se.isObject(t)||se.warn(sd(t)+' is a not valid value for "'+n+'" attribute. The value should be an object with properties '+e),t}}var ug="get",cg="set";const j={addGetterSetter(e,t,n,r,i){j.addGetter(e,t,n),j.addSetter(e,t,r,i),j.addOverloadedGetterSetter(e,t)},addGetter(e,t,n){var r=ug+se._capitalize(t);e.prototype[r]=e.prototype[r]||function(){var i=this.attrs[t];return i===void 0?n:i}},addSetter(e,t,n,r){var i=cg+se._capitalize(t);e.prototype[i]||j.overWriteSetter(e,t,n,r)},overWriteSetter(e,t,n,r){var i=cg+se._capitalize(t);e.prototype[i]=function(o){return n&&o!==void 0&&o!==null&&(o=n.call(this,o,t)),this._setAttr(t,o),r&&r.call(this),this}},addComponentsGetterSetter(e,t,n,r,i){var o=n.length,a=se._capitalize,s=ug+a(t),l=cg+a(t),d,p;e.prototype[s]=function(){var m={};for(d=0;d{this._setAttr(t+a(S),void 0)}),this._fireChangeEvent(t,y,m),i&&i.call(this),this},j.addOverloadedGetterSetter(e,t)},addOverloadedGetterSetter(e,t){var n=se._capitalize(t),r=cg+n,i=ug+n;e.prototype[t]=function(){return arguments.length?(this[r](arguments[0]),this):this[i]()}},addDeprecatedGetterSetter(e,t,n,r){se.error("Adding deprecated "+t);var i=ug+se._capitalize(t),o=t+" property is deprecated and will be removed soon. Look at Konva change log for more information.";e.prototype[i]=function(){se.error(o);var a=this.attrs[t];return a===void 0?n:a},j.addSetter(e,t,r,function(){se.error(o)}),j.addOverloadedGetterSetter(e,t)},backCompat(e,t){se.each(t,function(n,r){var i=e.prototype[r],o=ug+se._capitalize(n),a=cg+se._capitalize(n);function s(){i.apply(this,arguments),se.error('"'+n+'" method is deprecated and will be removed soon. Use ""'+r+'" instead.')}e.prototype[n]=s,e.prototype[o]=s,e.prototype[a]=s})},afterSetFilter(){this._filterUpToDate=!1}};function txe(e){var t=[],n=e.length,r=se,i,o;for(i=0;itypeof p=="number"?Math.floor(p):p)),o+=nxe+d.join(gA)+rxe)):(o+=s.property,t||(o+=lxe+s.val)),o+=axe;return o}clearTrace(){this.traceArr=[]}_trace(t){var n=this.traceArr,r;n.push(t),r=n.length,r>=cxe&&n.shift()}reset(){var t=this.getCanvas().getPixelRatio();this.setTransform(1*t,0,0,1*t,0,0)}getCanvas(){return this.canvas}clear(t){var n=this.getCanvas();t?this.clearRect(t.x||0,t.y||0,t.width||0,t.height||0):this.clearRect(0,0,n.getWidth()/n.pixelRatio,n.getHeight()/n.pixelRatio)}_applyLineCap(t){var n=t.getLineCap();n&&this.setAttr("lineCap",n)}_applyOpacity(t){var n=t.getAbsoluteOpacity();n!==1&&this.setAttr("globalAlpha",n)}_applyLineJoin(t){var n=t.attrs.lineJoin;n&&this.setAttr("lineJoin",n)}setAttr(t,n){this._context[t]=n}arc(t,n,r,i,o,a){this._context.arc(t,n,r,i,o,a)}arcTo(t,n,r,i,o){this._context.arcTo(t,n,r,i,o)}beginPath(){this._context.beginPath()}bezierCurveTo(t,n,r,i,o,a){this._context.bezierCurveTo(t,n,r,i,o,a)}clearRect(t,n,r,i){this._context.clearRect(t,n,r,i)}clip(){this._context.clip()}closePath(){this._context.closePath()}createImageData(t,n){var r=arguments;if(r.length===2)return this._context.createImageData(t,n);if(r.length===1)return this._context.createImageData(t)}createLinearGradient(t,n,r,i){return this._context.createLinearGradient(t,n,r,i)}createPattern(t,n){return this._context.createPattern(t,n)}createRadialGradient(t,n,r,i,o,a){return this._context.createRadialGradient(t,n,r,i,o,a)}drawImage(t,n,r,i,o,a,s,l,d){var p=arguments,g=this._context;p.length===3?g.drawImage(t,n,r):p.length===5?g.drawImage(t,n,r,i,o):p.length===9&&g.drawImage(t,n,r,i,o,a,s,l,d)}ellipse(t,n,r,i,o,a,s,l){this._context.ellipse(t,n,r,i,o,a,s,l)}isPointInPath(t,n){return this._context.isPointInPath(t,n)}fill(t){t?this._context.fill(t):this._context.fill()}fillRect(t,n,r,i){this._context.fillRect(t,n,r,i)}strokeRect(t,n,r,i){this._context.strokeRect(t,n,r,i)}fillText(t,n,r,i){i?this._context.fillText(t,n,r,i):this._context.fillText(t,n,r)}measureText(t){return this._context.measureText(t)}getImageData(t,n,r,i){return this._context.getImageData(t,n,r,i)}lineTo(t,n){this._context.lineTo(t,n)}moveTo(t,n){this._context.moveTo(t,n)}rect(t,n,r,i){this._context.rect(t,n,r,i)}putImageData(t,n,r){this._context.putImageData(t,n,r)}quadraticCurveTo(t,n,r,i){this._context.quadraticCurveTo(t,n,r,i)}restore(){this._context.restore()}rotate(t){this._context.rotate(t)}save(){this._context.save()}scale(t,n){this._context.scale(t,n)}setLineDash(t){this._context.setLineDash?this._context.setLineDash(t):"mozDash"in this._context?this._context.mozDash=t:"webkitLineDash"in this._context&&(this._context.webkitLineDash=t)}getLineDash(){return this._context.getLineDash()}setTransform(t,n,r,i,o,a){this._context.setTransform(t,n,r,i,o,a)}stroke(t){t?this._context.stroke(t):this._context.stroke()}strokeText(t,n,r,i){this._context.strokeText(t,n,r,i)}transform(t,n,r,i,o,a){this._context.transform(t,n,r,i,o,a)}translate(t,n){this._context.translate(t,n)}_enableTrace(){var t=this,n=mA.length,r=this.setAttr,i,o,a=function(s){var l=t[s],d;t[s]=function(){return o=txe(Array.prototype.slice.call(arguments,0)),d=l.apply(t,arguments),t._trace({method:s,args:o}),d}};for(i=0;i{t.dragStatus==="dragging"&&(e=!0)}),e},justDragged:!1,get node(){var e;return an._dragElements.forEach(t=>{e=t.node}),e},_dragElements:new Map,_drag(e){const t=[];an._dragElements.forEach((n,r)=>{const{node:i}=n,o=i.getStage();o.setPointersPositions(e),n.pointerId===void 0&&(n.pointerId=se._getFirstPointerId(e));const a=o._changedPointerPositions.find(d=>d.id===n.pointerId);if(!!a){if(n.dragStatus!=="dragging"){var s=i.dragDistance(),l=Math.max(Math.abs(a.x-n.startPointerPos.x),Math.abs(a.y-n.startPointerPos.y));if(l{n.fire("dragmove",{type:"dragmove",target:n,evt:e},!0)})},_endDragBefore(e){const t=[];an._dragElements.forEach(n=>{const{node:r}=n,i=r.getStage();if(e&&i.setPointersPositions(e),!i._changedPointerPositions.find(s=>s.id===n.pointerId))return;(n.dragStatus==="dragging"||n.dragStatus==="stopped")&&(an.justDragged=!0,Je._mouseListenClick=!1,Je._touchListenClick=!1,Je._pointerListenClick=!1,n.dragStatus="stopped");const a=n.node.getLayer()||n.node instanceof Je.Stage&&n.node;a&&t.indexOf(a)===-1&&t.push(a)}),t.forEach(n=>{n.draw()})},_endDragAfter(e){an._dragElements.forEach((t,n)=>{t.dragStatus==="stopped"&&t.node.fire("dragend",{type:"dragend",target:t.node,evt:e},!0),t.dragStatus!=="dragging"&&an._dragElements.delete(n)})}};Je.isBrowser&&(window.addEventListener("mouseup",an._endDragBefore,!0),window.addEventListener("touchend",an._endDragBefore,!0),window.addEventListener("mousemove",an._drag),window.addEventListener("touchmove",an._drag),window.addEventListener("mouseup",an._endDragAfter,!1),window.addEventListener("touchend",an._endDragAfter,!1));var u3="absoluteOpacity",my="allEventListeners",Jl="absoluteTransform",vA="absoluteScale",dg="canvas",pxe="Change",gxe="children",mxe="konva",pC="listening",yA="mouseenter",xA="mouseleave",bA="set",SA="Shape",c3=" ",wA="stage",xc="transform",vxe="Stage",gC="visible",yxe=["xChange.konva","yChange.konva","scaleXChange.konva","scaleYChange.konva","skewXChange.konva","skewYChange.konva","rotationChange.konva","offsetXChange.konva","offsetYChange.konva","transformsEnabledChange.konva"].join(c3);let xxe=1;class ze{constructor(t){this._id=xxe++,this.eventListeners={},this.attrs={},this.index=0,this._allEventListeners=null,this.parent=null,this._cache=new Map,this._attachedDepsListeners=new Map,this._lastPos=null,this._batchingTransformChange=!1,this._needClearTransformCache=!1,this._filterUpToDate=!1,this._isUnderCache=!1,this._dragEventId=null,this._shouldFireChangeEvents=!1,this.setAttrs(t),this._shouldFireChangeEvents=!0}hasChildren(){return!1}_clearCache(t){(t===xc||t===Jl)&&this._cache.get(t)?this._cache.get(t).dirty=!0:t?this._cache.delete(t):this._cache.clear()}_getCache(t,n){var r=this._cache.get(t),i=t===xc||t===Jl,o=r===void 0||i&&r.dirty===!0;return o&&(r=n.call(this),this._cache.set(t,r)),r}_calculate(t,n,r){if(!this._attachedDepsListeners.get(t)){const i=n.map(o=>o+"Change.konva").join(c3);this.on(i,()=>{this._clearCache(t)}),this._attachedDepsListeners.set(t,!0)}return this._getCache(t,r)}_getCanvasCache(){return this._cache.get(dg)}_clearSelfAndDescendantCache(t){this._clearCache(t),t===Jl&&this.fire("absoluteTransformChange")}clearCache(){return this._cache.delete(dg),this._clearSelfAndDescendantCache(),this._requestDraw(),this}cache(t){var n=t||{},r={};(n.x===void 0||n.y===void 0||n.width===void 0||n.height===void 0)&&(r=this.getClientRect({skipTransform:!0,relativeTo:this.getParent()}));var i=Math.ceil(n.width||r.width),o=Math.ceil(n.height||r.height),a=n.pixelRatio,s=n.x===void 0?Math.floor(r.x):n.x,l=n.y===void 0?Math.floor(r.y):n.y,d=n.offset||0,p=n.drawBorder||!1,g=n.hitCanvasPixelRatio||1;if(!i||!o){se.error("Can not cache the node. Width or height of the node equals 0. Caching is skipped.");return}i+=d*2+1,o+=d*2+1,s-=d,l-=d;var m=new t0({pixelRatio:a,width:i,height:o}),y=new t0({pixelRatio:a,width:0,height:0}),b=new t_({pixelRatio:g,width:i,height:o}),S=m.getContext(),E=b.getContext();return b.isCache=!0,m.isCache=!0,this._cache.delete(dg),this._filterUpToDate=!1,n.imageSmoothingEnabled===!1&&(m.getContext()._context.imageSmoothingEnabled=!1,y.getContext()._context.imageSmoothingEnabled=!1),S.save(),E.save(),S.translate(-s,-l),E.translate(-s,-l),this._isUnderCache=!0,this._clearSelfAndDescendantCache(u3),this._clearSelfAndDescendantCache(vA),this.drawScene(m,this),this.drawHit(b,this),this._isUnderCache=!1,S.restore(),E.restore(),p&&(S.save(),S.beginPath(),S.rect(0,0,i,o),S.closePath(),S.setAttr("strokeStyle","red"),S.setAttr("lineWidth",5),S.stroke(),S.restore()),this._cache.set(dg,{scene:m,filter:y,hit:b,x:s,y:l}),this._requestDraw(),this}isCached(){return this._cache.has(dg)}getClientRect(t){throw new Error('abstract "getClientRect" method call')}_transformedRect(t,n){var r=[{x:t.x,y:t.y},{x:t.x+t.width,y:t.y},{x:t.x+t.width,y:t.y+t.height},{x:t.x,y:t.y+t.height}],i,o,a,s,l=this.getAbsoluteTransform(n);return r.forEach(function(d){var p=l.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),{x:i,y:o,width:a-i,height:s-o}}_drawCachedSceneCanvas(t){t.save(),t._applyOpacity(this),t._applyGlobalCompositeOperation(this);const n=this._getCanvasCache();t.translate(n.x,n.y);var r=this._getCachedSceneCanvas(),i=r.pixelRatio;t.drawImage(r._canvas,0,0,r.width/i,r.height/i),t.restore()}_drawCachedHitCanvas(t){var n=this._getCanvasCache(),r=n.hit;t.save(),t.translate(n.x,n.y),t.drawImage(r._canvas,0,0,r.width/r.pixelRatio,r.height/r.pixelRatio),t.restore()}_getCachedSceneCanvas(){var t=this.filters(),n=this._getCanvasCache(),r=n.scene,i=n.filter,o=i.getContext(),a,s,l,d;if(t){if(!this._filterUpToDate){var p=r.pixelRatio;i.setSize(r.width/r.pixelRatio,r.height/r.pixelRatio);try{for(a=t.length,o.clear(),o.drawImage(r._canvas,0,0,r.getWidth()/p,r.getHeight()/p),s=o.getImageData(0,0,i.getWidth(),i.getHeight()),l=0;l{var n,r;if(!t)return this;for(n in t)n!==gxe&&(r=bA+se._capitalize(n),se._isFunction(this[r])?this[r](t[n]):this._setAttr(n,t[n]))}),this}isListening(){return this._getCache(pC,this._isListening)}_isListening(t){if(!this.listening())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isListening(t):!0}isVisible(){return this._getCache(gC,this._isVisible)}_isVisible(t){if(!this.visible())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isVisible(t):!0}shouldDrawHit(t,n=!1){if(t)return this._isVisible(t)&&this._isListening(t);var r=this.getLayer(),i=!1;an._dragElements.forEach(a=>{a.dragStatus==="dragging"&&(a.node.nodeType==="Stage"||a.node.getLayer()===r)&&(i=!0)});var o=!n&&!Je.hitOnDragEnabled&&i;return this.isListening()&&this.isVisible()&&!o}show(){return this.visible(!0),this}hide(){return this.visible(!1),this}getZIndex(){return this.index||0}getAbsoluteZIndex(){var t=this.getDepth(),n=this,r=0,i,o,a,s;function l(d){for(i=[],o=d.length,a=0;a0&&i[0].getDepth()<=t&&l(i)}return n.nodeType!==vxe&&l(n.getStage().getChildren()),r}getDepth(){for(var t=0,n=this.parent;n;)t++,n=n.parent;return t}_batchTransformChanges(t){this._batchingTransformChange=!0,t(),this._batchingTransformChange=!1,this._needClearTransformCache&&(this._clearCache(xc),this._clearSelfAndDescendantCache(Jl)),this._needClearTransformCache=!1}setPosition(t){return this._batchTransformChanges(()=>{this.x(t.x),this.y(t.y)}),this}getPosition(){return{x:this.x(),y:this.y()}}getRelativePointerPosition(){if(!this.getStage())return null;var t=this.getStage().getPointerPosition();if(!t)return null;var n=this.getAbsoluteTransform().copy();return n.invert(),n.point(t)}getAbsolutePosition(t){let n=!1,r=this.parent;for(;r;){if(r.isCached()){n=!0;break}r=r.parent}n&&!t&&(t=!0);var i=this.getAbsoluteTransform(t).getMatrix(),o=new Qo,a=this.offset();return o.m=i.slice(),o.translate(a.x,a.y),o.getTranslation()}setAbsolutePosition(t){var n=this._clearTransform();this.attrs.x=n.x,this.attrs.y=n.y,delete n.x,delete n.y,this._clearCache(xc);var r=this._getAbsoluteTransform().copy();return r.invert(),r.translate(t.x,t.y),t={x:this.attrs.x+r.getTranslation().x,y:this.attrs.y+r.getTranslation().y},this._setTransform(n),this.setPosition({x:t.x,y:t.y}),this._clearCache(xc),this._clearSelfAndDescendantCache(Jl),this}_setTransform(t){var n;for(n in t)this.attrs[n]=t[n]}_clearTransform(){var t={x:this.x(),y:this.y(),rotation:this.rotation(),scaleX:this.scaleX(),scaleY:this.scaleY(),offsetX:this.offsetX(),offsetY:this.offsetY(),skewX:this.skewX(),skewY:this.skewY()};return this.attrs.x=0,this.attrs.y=0,this.attrs.rotation=0,this.attrs.scaleX=1,this.attrs.scaleY=1,this.attrs.offsetX=0,this.attrs.offsetY=0,this.attrs.skewX=0,this.attrs.skewY=0,t}move(t){var n=t.x,r=t.y,i=this.x(),o=this.y();return n!==void 0&&(i+=n),r!==void 0&&(o+=r),this.setPosition({x:i,y:o}),this}_eachAncestorReverse(t,n){var r=[],i=this.getParent(),o,a;if(!(n&&n._id===this._id)){for(r.unshift(this);i&&(!n||i._id!==n._id);)r.unshift(i),i=i.parent;for(o=r.length,a=0;a0?(this.parent.children.splice(t,1),this.parent.children.splice(t-1,0,this),this.parent._setChildrenIndices(),!0):!1}moveToBottom(){if(!this.parent)return se.warn("Node has no parent. moveToBottom function is ignored."),!1;var t=this.index;return t>0?(this.parent.children.splice(t,1),this.parent.children.unshift(this),this.parent._setChildrenIndices(),!0):!1}setZIndex(t){if(!this.parent)return se.warn("Node has no parent. zIndex parameter is ignored."),this;(t<0||t>=this.parent.children.length)&&se.warn("Unexpected value "+t+" for zIndex property. zIndex is just index of a node in children of its parent. Expected value is from 0 to "+(this.parent.children.length-1)+".");var n=this.index;return this.parent.children.splice(n,1),this.parent.children.splice(t,0,this),this.parent._setChildrenIndices(),this}getAbsoluteOpacity(){return this._getCache(u3,this._getAbsoluteOpacity)}_getAbsoluteOpacity(){var t=this.opacity(),n=this.getParent();return n&&!n._isUnderCache&&(t*=n.getAbsoluteOpacity()),t}moveTo(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this}toObject(){var t={},n=this.getAttrs(),r,i,o,a,s;t.attrs={};for(r in n)i=n[r],s=se.isObject(i)&&!se._isPlainObject(i)&&!se._isArray(i),!s&&(o=typeof this[r]=="function"&&this[r],delete n[r],a=o?o.call(this):null,n[r]=i,a!==i&&(t.attrs[r]=i));return t.className=this.getClassName(),se._prepareToStringify(t)}toJSON(){return JSON.stringify(this.toObject())}getParent(){return this.parent}findAncestors(t,n,r){var i=[];n&&this._isMatch(t)&&i.push(this);for(var o=this.parent;o;){if(o===r)return i;o._isMatch(t)&&i.push(o),o=o.parent}return i}isAncestorOf(t){return!1}findAncestor(t,n,r){return this.findAncestors(t,n,r)[0]}_isMatch(t){if(!t)return!1;if(typeof t=="function")return t(this);var n=t.replace(/ /g,"").split(","),r=n.length,i,o;for(i=0;i{try{const i=t?.callback;i&&delete t.callback,se._urlToImage(this.toDataURL(t),function(o){n(o),i?.(o)})}catch(i){r(i)}})}toBlob(t){return new Promise((n,r)=>{try{const i=t?.callback;i&&delete t.callback,this.toCanvas(t).toBlob(o=>{n(o),i?.(o)})}catch(i){r(i)}})}setSize(t){return this.width(t.width),this.height(t.height),this}getSize(){return{width:this.width(),height:this.height()}}getClassName(){return this.className||this.nodeType}getType(){return this.nodeType}getDragDistance(){return this.attrs.dragDistance!==void 0?this.attrs.dragDistance:this.parent?this.parent.getDragDistance():Je.dragDistance}_off(t,n,r){var i=this.eventListeners[t],o,a,s;for(o=0;o=0;if(!!r&&!this.isDragging()){var i=!1;an._dragElements.forEach(o=>{this.isAncestorOf(o.node)&&(i=!0)}),i||this._createDragElement(t)}})}_dragChange(){if(this.attrs.draggable)this._listenDrag();else{this._dragCleanup();var t=this.getStage();if(!t)return;const n=an._dragElements.get(this._id),r=n&&n.dragStatus==="dragging",i=n&&n.dragStatus==="ready";r?this.stopDrag():i&&an._dragElements.delete(this._id)}}_dragCleanup(){this.off("mousedown.konva"),this.off("touchstart.konva")}isClientRectOnScreen(t={x:0,y:0}){const n=this.getStage();if(!n)return!1;const r={x:-t.x,y:-t.y,width:n.width()+2*t.x,height:n.height()+2*t.y};return se.haveIntersection(r,this.getClientRect())}static create(t,n){return se._isString(t)&&(t=JSON.parse(t)),this._createNode(t,n)}static _createNode(t,n){var r=ze.prototype.getClassName.call(t),i=t.children,o,a,s;n&&(t.attrs.container=n),Je[r]||(se.warn('Can not find a node with class name "'+r+'". Fallback to "Shape".'),r="Shape");const l=Je[r];if(o=new l(t.attrs),i)for(a=i.length,s=0;s0}removeChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.remove()}),this.children=[],this._requestDraw(),this}destroyChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.destroy()}),this.children=[],this._requestDraw(),this}add(...t){if(arguments.length>1){for(var n=0;n0?n[0]:void 0}_generalFind(t,n){var r=[];return this._descendants(i=>{const o=i._isMatch(t);return o&&r.push(i),!!(o&&n)}),r}_descendants(t){let n=!1;const r=this.getChildren();for(const i of r){if(n=t(i),n)return!0;if(!!i.hasChildren()&&(n=i._descendants(t),n))return!0}return!1}toObject(){var t=ze.prototype.toObject.call(this);return t.children=[],this.getChildren().forEach(n=>{t.children.push(n.toObject())}),t}isAncestorOf(t){for(var n=t.getParent();n;){if(n._id===this._id)return!0;n=n.getParent()}return!1}clone(t){var n=ze.prototype.clone.call(this,t);return this.getChildren().forEach(function(r){n.add(r.clone())}),n}getAllIntersections(t){var n=[];return this.find("Shape").forEach(function(r){r.isVisible()&&r.intersects(t)&&n.push(r)}),n}_clearSelfAndDescendantCache(t){var n;super._clearSelfAndDescendantCache(t),!this.isCached()&&((n=this.children)===null||n===void 0||n.forEach(function(r){r._clearSelfAndDescendantCache(t)}))}_setChildrenIndices(){var t;(t=this.children)===null||t===void 0||t.forEach(function(n,r){n.index=r}),this._requestDraw()}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas(),o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.scene,l=i&&i.isCache;if(!this.isVisible()&&!l)return this;if(s){o.save();var d=this.getAbsoluteTransform(n).getMatrix();o.transform(d[0],d[1],d[2],d[3],d[4],d[5]),this._drawCachedSceneCanvas(o),o.restore()}else this._drawChildren("drawScene",i,n);return this}drawHit(t,n){if(!this.shouldDrawHit(n))return this;var r=this.getLayer(),i=t||r&&r.hitCanvas,o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.hit;if(s){o.save();var l=this.getAbsoluteTransform(n).getMatrix();o.transform(l[0],l[1],l[2],l[3],l[4],l[5]),this._drawCachedHitCanvas(o),o.restore()}else this._drawChildren("drawHit",i,n);return this}_drawChildren(t,n,r){var i,o=n&&n.getContext(),a=this.clipWidth(),s=this.clipHeight(),l=this.clipFunc(),d=a&&s||l;const p=r===this;if(d){o.save();var g=this.getAbsoluteTransform(r),m=g.getMatrix();if(o.transform(m[0],m[1],m[2],m[3],m[4],m[5]),o.beginPath(),l)l.call(this,o,this);else{var y=this.clipX(),b=this.clipY();o.rect(y,b,a,s)}o.clip(),m=g.copy().invert().getMatrix(),o.transform(m[0],m[1],m[2],m[3],m[4],m[5])}var S=!p&&this.globalCompositeOperation()!=="source-over"&&t==="drawScene";S&&(o.save(),o._applyGlobalCompositeOperation(this)),(i=this.children)===null||i===void 0||i.forEach(function(E){E[t](n,r)}),S&&o.restore(),d&&o.restore()}getClientRect(t){var n;t=t||{};var r=t.skipTransform,i=t.relativeTo,o,a,s,l,d={x:1/0,y:1/0,width:0,height:0},p=this;(n=this.children)===null||n===void 0||n.forEach(function(S){if(!!S.visible()){var E=S.getClientRect({relativeTo:p,skipShadow:t.skipShadow,skipStroke:t.skipStroke});E.width===0&&E.height===0||(o===void 0?(o=E.x,a=E.y,s=E.x+E.width,l=E.y+E.height):(o=Math.min(o,E.x),a=Math.min(a,E.y),s=Math.max(s,E.x+E.width),l=Math.max(l,E.y+E.height)))}});for(var g=this.find("Shape"),m=!1,y=0;ye.indexOf("pointer")>=0?"pointer":e.indexOf("touch")>=0?"touch":"mouse",cp=e=>{const t=Rg(e);if(t==="pointer")return Je.pointerEventsEnabled&&OS.pointer;if(t==="touch")return OS.touch;if(t==="mouse")return OS.mouse};function _A(e={}){return(e.clipFunc||e.clipWidth||e.clipHeight)&&se.warn("Stage does not support clipping. Please use clip for Layers or Groups."),e}const Exe="Pointer position is missing and not registered by the stage. Looks like it is outside of the stage container. You can set it manually from event: stage.setPointersPositions(event);",d3=[];class wx extends ia{constructor(t){super(_A(t)),this._pointerPositions=[],this._changedPointerPositions=[],this._buildDOM(),this._bindContentEvents(),d3.push(this),this.on("widthChange.konva heightChange.konva",this._resizeDOM),this.on("visibleChange.konva",this._checkVisibility),this.on("clipWidthChange.konva clipHeightChange.konva clipFuncChange.konva",()=>{_A(this.attrs)}),this._checkVisibility()}_validateAdd(t){const n=t.getType()==="Layer",r=t.getType()==="FastLayer";n||r||se.throw("You may only add layers to the stage.")}_checkVisibility(){if(!this.content)return;const t=this.visible()?"":"none";this.content.style.display=t}setContainer(t){if(typeof t===Sxe){if(t.charAt(0)==="."){var n=t.slice(1);t=document.getElementsByClassName(n)[0]}else{var r;t.charAt(0)!=="#"?r=t:r=t.slice(1),t=document.getElementById(r)}if(!t)throw"Can not find container in document with id "+r}return this._setAttr("container",t),this.content&&(this.content.parentElement&&this.content.parentElement.removeChild(this.content),t.appendChild(this.content)),this}shouldDrawHit(){return!0}clear(){var t=this.children,n=t.length,r;for(r=0;r-1&&d3.splice(n,1),this}getPointerPosition(){const t=this._pointerPositions[0]||this._changedPointerPositions[0];return t?{x:t.x,y:t.y}:(se.warn(Exe),null)}_getPointerById(t){return this._pointerPositions.find(n=>n.id===t)}getPointersPositions(){return this._pointerPositions}getStage(){return this}getContent(){return this.content}_toKonvaCanvas(t){t=t||{},t.x=t.x||0,t.y=t.y||0,t.width=t.width||this.width(),t.height=t.height||this.height();var n=new t0({width:t.width,height:t.height,pixelRatio:t.pixelRatio||1}),r=n.getContext()._context,i=this.children;return(t.x||t.y)&&r.translate(-1*t.x,-1*t.y),i.forEach(function(o){if(!!o.isVisible()){var a=o._toKonvaCanvas(t);r.drawImage(a._canvas,t.x,t.y,a.getWidth()/a.getPixelRatio(),a.getHeight()/a.getPixelRatio())}}),n}getIntersection(t){if(!t)return null;var n=this.children,r=n.length,i=r-1,o;for(o=i;o>=0;o--){const a=n[o].getIntersection(t);if(a)return a}return null}_resizeDOM(){var t=this.width(),n=this.height();this.content&&(this.content.style.width=t+CA,this.content.style.height=n+CA),this.bufferCanvas.setSize(t,n),this.bufferHitCanvas.setSize(t,n),this.children.forEach(r=>{r.setSize({width:t,height:n}),r.draw()})}add(t,...n){if(arguments.length>1){for(var r=0;r_xe&&se.warn("The stage has "+i+" layers. Recommended maximum number of layers is 3-5. Adding more layers into the stage may drop the performance. Rethink your tree structure, you can use Konva.Group."),t.setSize({width:this.width(),height:this.height()}),t.draw(),Je.isBrowser&&this.content.appendChild(t.canvas._canvas),this}getParent(){return null}getLayer(){return null}hasPointerCapture(t){return S$(t,this)}setPointerCapture(t){w$(t,this)}releaseCapture(t){sm(t)}getLayers(){return this.children}_bindContentEvents(){!Je.isBrowser||kxe.forEach(([t,n])=>{this.content.addEventListener(t,r=>{this[n](r)},{passive:!1})})}_pointerenter(t){this.setPointersPositions(t);const n=cp(t.type);this._fire(n.pointerenter,{evt:t,target:this,currentTarget:this})}_pointerover(t){this.setPointersPositions(t);const n=cp(t.type);this._fire(n.pointerover,{evt:t,target:this,currentTarget:this})}_getTargetShape(t){let n=this[t+"targetShape"];return n&&!n.getStage()&&(n=null),n}_pointerleave(t){const n=cp(t.type),r=Rg(t.type);if(!!n){this.setPointersPositions(t);var i=this._getTargetShape(r),o=!an.isDragging||Je.hitOnDragEnabled;i&&o?(i._fireAndBubble(n.pointerout,{evt:t}),i._fireAndBubble(n.pointerleave,{evt:t}),this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this[r+"targetShape"]=null):o&&(this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this._fire(n.pointerout,{evt:t,target:this,currentTarget:this})),this.pointerPos=void 0,this._pointerPositions=[]}}_pointerdown(t){const n=cp(t.type),r=Rg(t.type);if(!!n){this.setPointersPositions(t);var i=!1;this._changedPointerPositions.forEach(o=>{var a=this.getIntersection(o);if(an.justDragged=!1,Je["_"+r+"ListenClick"]=!0,!(a&&a.isListening()))return;Je.capturePointerEventsEnabled&&a.setPointerCapture(o.id),this[r+"ClickStartShape"]=a,a._fireAndBubble(n.pointerdown,{evt:t,pointerId:o.id}),i=!0;const l=t.type.indexOf("touch")>=0;a.preventDefault()&&t.cancelable&&l&&t.preventDefault()}),i||this._fire(n.pointerdown,{evt:t,target:this,currentTarget:this,pointerId:this._pointerPositions[0].id})}}_pointermove(t){const n=cp(t.type),r=Rg(t.type);if(!n)return;an.isDragging&&an.node.preventDefault()&&t.cancelable&&t.preventDefault(),this.setPointersPositions(t);var i=!an.isDragging||Je.hitOnDragEnabled;if(!i)return;var o={};let a=!1;var s=this._getTargetShape(r);this._changedPointerPositions.forEach(l=>{const d=RS(l.id)||this.getIntersection(l),p=l.id,g={evt:t,pointerId:p};var m=s!==d;if(m&&s&&(s._fireAndBubble(n.pointerout,Object.assign({},g),d),s._fireAndBubble(n.pointerleave,Object.assign({},g),d)),d){if(o[d._id])return;o[d._id]=!0}d&&d.isListening()?(a=!0,m&&(d._fireAndBubble(n.pointerover,Object.assign({},g),s),d._fireAndBubble(n.pointerenter,Object.assign({},g),s),this[r+"targetShape"]=d),d._fireAndBubble(n.pointermove,Object.assign({},g))):s&&(this._fire(n.pointerover,{evt:t,target:this,currentTarget:this,pointerId:p}),this[r+"targetShape"]=null)}),a||this._fire(n.pointermove,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id})}_pointerup(t){const n=cp(t.type),r=Rg(t.type);if(!n)return;this.setPointersPositions(t);const i=this[r+"ClickStartShape"],o=this[r+"ClickEndShape"];var a={};let s=!1;this._changedPointerPositions.forEach(l=>{const d=RS(l.id)||this.getIntersection(l);if(d){if(d.releaseCapture(l.id),a[d._id])return;a[d._id]=!0}const p=l.id,g={evt:t,pointerId:p};let m=!1;Je["_"+r+"InDblClickWindow"]?(m=!0,clearTimeout(this[r+"DblTimeout"])):an.justDragged||(Je["_"+r+"InDblClickWindow"]=!0,clearTimeout(this[r+"DblTimeout"])),this[r+"DblTimeout"]=setTimeout(function(){Je["_"+r+"InDblClickWindow"]=!1},Je.dblClickWindow),d&&d.isListening()?(s=!0,this[r+"ClickEndShape"]=d,d._fireAndBubble(n.pointerup,Object.assign({},g)),Je["_"+r+"ListenClick"]&&i&&i===d&&(d._fireAndBubble(n.pointerclick,Object.assign({},g)),m&&o&&o===d&&d._fireAndBubble(n.pointerdblclick,Object.assign({},g)))):(this[r+"ClickEndShape"]=null,Je["_"+r+"ListenClick"]&&this._fire(n.pointerclick,{evt:t,target:this,currentTarget:this,pointerId:p}),m&&this._fire(n.pointerdblclick,{evt:t,target:this,currentTarget:this,pointerId:p}))}),s||this._fire(n.pointerup,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id}),Je["_"+r+"ListenClick"]=!1,t.cancelable&&r!=="touch"&&t.preventDefault()}_contextmenu(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(mC,{evt:t}):this._fire(mC,{evt:t,target:this,currentTarget:this})}_wheel(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(vC,{evt:t}):this._fire(vC,{evt:t,target:this,currentTarget:this})}_pointercancel(t){this.setPointersPositions(t);const n=RS(t.pointerId)||this.getIntersection(this.getPointerPosition());n&&n._fireAndBubble(Ap,n_(t)),sm(t.pointerId)}_lostpointercapture(t){sm(t.pointerId)}setPointersPositions(t){var n=this._getContentPosition(),r=null,i=null;t=t||window.event,t.touches!==void 0?(this._pointerPositions=[],this._changedPointerPositions=[],Array.prototype.forEach.call(t.touches,o=>{this._pointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})}),Array.prototype.forEach.call(t.changedTouches||t.touches,o=>{this._changedPointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})})):(r=(t.clientX-n.left)/n.scaleX,i=(t.clientY-n.top)/n.scaleY,this.pointerPos={x:r,y:i},this._pointerPositions=[{x:r,y:i,id:se._getFirstPointerId(t)}],this._changedPointerPositions=[{x:r,y:i,id:se._getFirstPointerId(t)}])}_setPointerPosition(t){se.warn('Method _setPointerPosition is deprecated. Use "stage.setPointersPositions(event)" instead.'),this.setPointersPositions(t)}_getContentPosition(){if(!this.content||!this.content.getBoundingClientRect)return{top:0,left:0,scaleX:1,scaleY:1};var t=this.content.getBoundingClientRect();return{top:t.top,left:t.left,scaleX:t.width/this.content.clientWidth||1,scaleY:t.height/this.content.clientHeight||1}}_buildDOM(){if(this.bufferCanvas=new t0({width:this.width(),height:this.height()}),this.bufferHitCanvas=new t_({pixelRatio:1,width:this.width(),height:this.height()}),!!Je.isBrowser){var t=this.container();if(!t)throw"Stage has no container. A container is required.";t.innerHTML="",this.content=document.createElement("div"),this.content.style.position="relative",this.content.style.userSelect="none",this.content.className="konvajs-content",this.content.setAttribute("role","presentation"),t.appendChild(this.content),this._resizeDOM()}}cache(){return se.warn("Cache function is not allowed for stage. You may use cache only for layers, groups and shapes."),this}clearCache(){return this}batchDraw(){return this.getChildren().forEach(function(t){t.batchDraw()}),this}}wx.prototype.nodeType=bxe;hr(wx);j.addGetterSetter(wx,"container");var R$="hasShadow",O$="shadowRGBA",N$="patternImage",D$="linearGradient",z$="radialGradient";let Sy;function NS(){return Sy||(Sy=se.createCanvasElement().getContext("2d"),Sy)}const lm={};function Pxe(e){e.fill()}function Txe(e){e.stroke()}function Lxe(e){e.fill()}function Axe(e){e.stroke()}function Ixe(){this._clearCache(R$)}function Mxe(){this._clearCache(O$)}function Rxe(){this._clearCache(N$)}function Oxe(){this._clearCache(D$)}function Nxe(){this._clearCache(z$)}class Ae extends ze{constructor(t){super(t);let n;for(;n=se.getRandomColor(),!(n&&!(n in lm)););this.colorKey=n,lm[n]=this}getContext(){return se.warn("shape.getContext() method is deprecated. Please do not use it."),this.getLayer().getContext()}getCanvas(){return se.warn("shape.getCanvas() method is deprecated. Please do not use it."),this.getLayer().getCanvas()}getSceneFunc(){return this.attrs.sceneFunc||this._sceneFunc}getHitFunc(){return this.attrs.hitFunc||this._hitFunc}hasShadow(){return this._getCache(R$,this._hasShadow)}_hasShadow(){return this.shadowEnabled()&&this.shadowOpacity()!==0&&!!(this.shadowColor()||this.shadowBlur()||this.shadowOffsetX()||this.shadowOffsetY())}_getFillPattern(){return this._getCache(N$,this.__getFillPattern)}__getFillPattern(){if(this.fillPatternImage()){var t=NS();const n=t.createPattern(this.fillPatternImage(),this.fillPatternRepeat()||"repeat");if(n&&n.setTransform){const r=new Qo;r.translate(this.fillPatternX(),this.fillPatternY()),r.rotate(Je.getAngle(this.fillPatternRotation())),r.scale(this.fillPatternScaleX(),this.fillPatternScaleY()),r.translate(-1*this.fillPatternOffsetX(),-1*this.fillPatternOffsetY());const i=r.getMatrix(),o=typeof DOMMatrix>"u"?{a:i[0],b:i[1],c:i[2],d:i[3],e:i[4],f:i[5]}:new DOMMatrix(i);n.setTransform(o)}return n}}_getLinearGradient(){return this._getCache(D$,this.__getLinearGradient)}__getLinearGradient(){var t=this.fillLinearGradientColorStops();if(t){for(var n=NS(),r=this.fillLinearGradientStartPoint(),i=this.fillLinearGradientEndPoint(),o=n.createLinearGradient(r.x,r.y,i.x,i.y),a=0;athis.fillEnabled()&&!!(this.fill()||this.fillPatternImage()||this.fillLinearGradientColorStops()||this.fillRadialGradientColorStops()))}hasStroke(){return this._calculate("hasStroke",["strokeEnabled","strokeWidth","stroke","strokeLinearGradientColorStops"],()=>this.strokeEnabled()&&this.strokeWidth()&&!!(this.stroke()||this.strokeLinearGradientColorStops()))}hasHitStroke(){const t=this.hitStrokeWidth();return t==="auto"?this.hasStroke():this.strokeEnabled()&&!!t}intersects(t){var n=this.getStage(),r=n.bufferHitCanvas,i;return r.getContext().clear(),this.drawHit(r,null,!0),i=r.context.getImageData(Math.round(t.x),Math.round(t.y),1,1).data,i[3]>0}destroy(){return ze.prototype.destroy.call(this),delete lm[this.colorKey],delete this.colorKey,this}_useBufferCanvas(t){var n;if(!this.getStage()||!((n=this.attrs.perfectDrawEnabled)!==null&&n!==void 0?n:!0))return!1;const i=t||this.hasFill(),o=this.hasStroke(),a=this.getAbsoluteOpacity()!==1;if(i&&o&&a)return!0;const s=this.hasShadow(),l=this.shadowForStrokeEnabled();return!!(i&&o&&s&&l)}setStrokeHitEnabled(t){se.warn("strokeHitEnabled property is deprecated. Please use hitStrokeWidth instead."),t?this.hitStrokeWidth("auto"):this.hitStrokeWidth(0)}getStrokeHitEnabled(){return this.hitStrokeWidth()!==0}getSelfRect(){var t=this.size();return{x:this._centroid?-t.width/2:0,y:this._centroid?-t.height/2:0,width:t.width,height:t.height}}getClientRect(t={}){const n=t.skipTransform,r=t.relativeTo,i=this.getSelfRect(),a=!t.skipStroke&&this.hasStroke()&&this.strokeWidth()||0,s=i.width+a,l=i.height+a,d=!t.skipShadow&&this.hasShadow(),p=d?this.shadowOffsetX():0,g=d?this.shadowOffsetY():0,m=s+Math.abs(p),y=l+Math.abs(g),b=d&&this.shadowBlur()||0,S=m+b*2,E=y+b*2,P={width:S,height:E,x:-(a/2+b)+Math.min(p,0)+i.x,y:-(a/2+b)+Math.min(g,0)+i.y};return n?P:this._transformedRect(P,r)}drawScene(t,n){var r=this.getLayer(),i=t||r.getCanvas(),o=i.getContext(),a=this._getCanvasCache(),s=this.getSceneFunc(),l=this.hasShadow(),d,p,g,m=i.isCache,y=n===this;if(!this.isVisible()&&!y)return this;if(a){o.save();var b=this.getAbsoluteTransform(n).getMatrix();return o.transform(b[0],b[1],b[2],b[3],b[4],b[5]),this._drawCachedSceneCanvas(o),o.restore(),this}if(!s)return this;if(o.save(),this._useBufferCanvas()&&!m){d=this.getStage(),p=d.bufferCanvas,g=p.getContext(),g.clear(),g.save(),g._applyLineJoin(this);var S=this.getAbsoluteTransform(n).getMatrix();g.transform(S[0],S[1],S[2],S[3],S[4],S[5]),s.call(this,g,this),g.restore();var E=p.pixelRatio;l&&o._applyShadow(this),o._applyOpacity(this),o._applyGlobalCompositeOperation(this),o.drawImage(p._canvas,0,0,p.width/E,p.height/E)}else{if(o._applyLineJoin(this),!y){var S=this.getAbsoluteTransform(n).getMatrix();o.transform(S[0],S[1],S[2],S[3],S[4],S[5]),o._applyOpacity(this),o._applyGlobalCompositeOperation(this)}l&&o._applyShadow(this),s.call(this,o,this)}return o.restore(),this}drawHit(t,n,r=!1){if(!this.shouldDrawHit(n,r))return this;var i=this.getLayer(),o=t||i.hitCanvas,a=o&&o.getContext(),s=this.hitFunc()||this.sceneFunc(),l=this._getCanvasCache(),d=l&&l.hit;if(this.colorKey||se.warn("Looks like your canvas has a destroyed shape in it. Do not reuse shape after you destroyed it. If you want to reuse shape you should call remove() instead of destroy()"),d){a.save();var p=this.getAbsoluteTransform(n).getMatrix();return a.transform(p[0],p[1],p[2],p[3],p[4],p[5]),this._drawCachedHitCanvas(a),a.restore(),this}if(!s)return this;if(a.save(),a._applyLineJoin(this),!(this===n)){var m=this.getAbsoluteTransform(n).getMatrix();a.transform(m[0],m[1],m[2],m[3],m[4],m[5])}return s.call(this,a,this),a.restore(),this}drawHitFromCache(t=0){var n=this._getCanvasCache(),r=this._getCachedSceneCanvas(),i=n.hit,o=i.getContext(),a=i.getWidth(),s=i.getHeight(),l,d,p,g,m,y;o.clear(),o.drawImage(r._canvas,0,0,a,s);try{for(l=o.getImageData(0,0,a,s),d=l.data,p=d.length,g=se._hexToRgb(this.colorKey),m=0;mt?(d[m]=g.r,d[m+1]=g.g,d[m+2]=g.b,d[m+3]=255):d[m+3]=0;o.putImageData(l,0,0)}catch(b){se.error("Unable to draw hit graph from cached scene canvas. "+b.message)}return this}hasPointerCapture(t){return S$(t,this)}setPointerCapture(t){w$(t,this)}releaseCapture(t){sm(t)}}Ae.prototype._fillFunc=Pxe;Ae.prototype._strokeFunc=Txe;Ae.prototype._fillFuncHit=Lxe;Ae.prototype._strokeFuncHit=Axe;Ae.prototype._centroid=!1;Ae.prototype.nodeType="Shape";hr(Ae);Ae.prototype.eventListeners={};Ae.prototype.on.call(Ae.prototype,"shadowColorChange.konva shadowBlurChange.konva shadowOffsetChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",Ixe);Ae.prototype.on.call(Ae.prototype,"shadowColorChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",Mxe);Ae.prototype.on.call(Ae.prototype,"fillPriorityChange.konva fillPatternImageChange.konva fillPatternRepeatChange.konva fillPatternScaleXChange.konva fillPatternScaleYChange.konva fillPatternOffsetXChange.konva fillPatternOffsetYChange.konva fillPatternXChange.konva fillPatternYChange.konva fillPatternRotationChange.konva",Rxe);Ae.prototype.on.call(Ae.prototype,"fillPriorityChange.konva fillLinearGradientColorStopsChange.konva fillLinearGradientStartPointXChange.konva fillLinearGradientStartPointYChange.konva fillLinearGradientEndPointXChange.konva fillLinearGradientEndPointYChange.konva",Oxe);Ae.prototype.on.call(Ae.prototype,"fillPriorityChange.konva fillRadialGradientColorStopsChange.konva fillRadialGradientStartPointXChange.konva fillRadialGradientStartPointYChange.konva fillRadialGradientEndPointXChange.konva fillRadialGradientEndPointYChange.konva fillRadialGradientStartRadiusChange.konva fillRadialGradientEndRadiusChange.konva",Nxe);j.addGetterSetter(Ae,"stroke",void 0,x$());j.addGetterSetter(Ae,"strokeWidth",2,De());j.addGetterSetter(Ae,"fillAfterStrokeEnabled",!1);j.addGetterSetter(Ae,"hitStrokeWidth","auto",e_());j.addGetterSetter(Ae,"strokeHitEnabled",!0,ks());j.addGetterSetter(Ae,"perfectDrawEnabled",!0,ks());j.addGetterSetter(Ae,"shadowForStrokeEnabled",!0,ks());j.addGetterSetter(Ae,"lineJoin");j.addGetterSetter(Ae,"lineCap");j.addGetterSetter(Ae,"sceneFunc");j.addGetterSetter(Ae,"hitFunc");j.addGetterSetter(Ae,"dash");j.addGetterSetter(Ae,"dashOffset",0,De());j.addGetterSetter(Ae,"shadowColor",void 0,B0());j.addGetterSetter(Ae,"shadowBlur",0,De());j.addGetterSetter(Ae,"shadowOpacity",1,De());j.addComponentsGetterSetter(Ae,"shadowOffset",["x","y"]);j.addGetterSetter(Ae,"shadowOffsetX",0,De());j.addGetterSetter(Ae,"shadowOffsetY",0,De());j.addGetterSetter(Ae,"fillPatternImage");j.addGetterSetter(Ae,"fill",void 0,x$());j.addGetterSetter(Ae,"fillPatternX",0,De());j.addGetterSetter(Ae,"fillPatternY",0,De());j.addGetterSetter(Ae,"fillLinearGradientColorStops");j.addGetterSetter(Ae,"strokeLinearGradientColorStops");j.addGetterSetter(Ae,"fillRadialGradientStartRadius",0);j.addGetterSetter(Ae,"fillRadialGradientEndRadius",0);j.addGetterSetter(Ae,"fillRadialGradientColorStops");j.addGetterSetter(Ae,"fillPatternRepeat","repeat");j.addGetterSetter(Ae,"fillEnabled",!0);j.addGetterSetter(Ae,"strokeEnabled",!0);j.addGetterSetter(Ae,"shadowEnabled",!0);j.addGetterSetter(Ae,"dashEnabled",!0);j.addGetterSetter(Ae,"strokeScaleEnabled",!0);j.addGetterSetter(Ae,"fillPriority","color");j.addComponentsGetterSetter(Ae,"fillPatternOffset",["x","y"]);j.addGetterSetter(Ae,"fillPatternOffsetX",0,De());j.addGetterSetter(Ae,"fillPatternOffsetY",0,De());j.addComponentsGetterSetter(Ae,"fillPatternScale",["x","y"]);j.addGetterSetter(Ae,"fillPatternScaleX",1,De());j.addGetterSetter(Ae,"fillPatternScaleY",1,De());j.addComponentsGetterSetter(Ae,"fillLinearGradientStartPoint",["x","y"]);j.addComponentsGetterSetter(Ae,"strokeLinearGradientStartPoint",["x","y"]);j.addGetterSetter(Ae,"fillLinearGradientStartPointX",0);j.addGetterSetter(Ae,"strokeLinearGradientStartPointX",0);j.addGetterSetter(Ae,"fillLinearGradientStartPointY",0);j.addGetterSetter(Ae,"strokeLinearGradientStartPointY",0);j.addComponentsGetterSetter(Ae,"fillLinearGradientEndPoint",["x","y"]);j.addComponentsGetterSetter(Ae,"strokeLinearGradientEndPoint",["x","y"]);j.addGetterSetter(Ae,"fillLinearGradientEndPointX",0);j.addGetterSetter(Ae,"strokeLinearGradientEndPointX",0);j.addGetterSetter(Ae,"fillLinearGradientEndPointY",0);j.addGetterSetter(Ae,"strokeLinearGradientEndPointY",0);j.addComponentsGetterSetter(Ae,"fillRadialGradientStartPoint",["x","y"]);j.addGetterSetter(Ae,"fillRadialGradientStartPointX",0);j.addGetterSetter(Ae,"fillRadialGradientStartPointY",0);j.addComponentsGetterSetter(Ae,"fillRadialGradientEndPoint",["x","y"]);j.addGetterSetter(Ae,"fillRadialGradientEndPointX",0);j.addGetterSetter(Ae,"fillRadialGradientEndPointY",0);j.addGetterSetter(Ae,"fillPatternRotation",0);j.backCompat(Ae,{dashArray:"dash",getDashArray:"getDash",setDashArray:"getDash",drawFunc:"sceneFunc",getDrawFunc:"getSceneFunc",setDrawFunc:"setSceneFunc",drawHitFunc:"hitFunc",getDrawHitFunc:"getHitFunc",setDrawHitFunc:"setHitFunc"});var Dxe="#",zxe="beforeDraw",Fxe="draw",F$=[{x:0,y:0},{x:-1,y:-1},{x:1,y:-1},{x:1,y:1},{x:-1,y:1}],Bxe=F$.length;class Xf extends ia{constructor(t){super(t),this.canvas=new t0,this.hitCanvas=new t_({pixelRatio:1}),this._waitingForDraw=!1,this.on("visibleChange.konva",this._checkVisibility),this._checkVisibility(),this.on("imageSmoothingEnabledChange.konva",this._setSmoothEnabled),this._setSmoothEnabled()}createPNGStream(){return this.canvas._canvas.createPNGStream()}getCanvas(){return this.canvas}getNativeCanvasElement(){return this.canvas._canvas}getHitCanvas(){return this.hitCanvas}getContext(){return this.getCanvas().getContext()}clear(t){return this.getContext().clear(t),this.getHitCanvas().getContext().clear(t),this}setZIndex(t){super.setZIndex(t);var n=this.getStage();return n&&n.content&&(n.content.removeChild(this.getNativeCanvasElement()),t{this.draw(),this._waitingForDraw=!1})),this}getIntersection(t){if(!this.isListening()||!this.isVisible())return null;for(var n=1,r=!1;;){for(let i=0;i0)return{antialiased:!0};return{}}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas();return this._fire(zxe,{node:this}),this.clearBeforeDraw()&&i.getContext().clear(),ia.prototype.drawScene.call(this,i,n),this._fire(Fxe,{node:this}),this}drawHit(t,n){var r=this.getLayer(),i=t||r&&r.hitCanvas;return r&&r.clearBeforeDraw()&&r.getHitCanvas().getContext().clear(),ia.prototype.drawHit.call(this,i,n),this}enableHitGraph(){return this.hitGraphEnabled(!0),this}disableHitGraph(){return this.hitGraphEnabled(!1),this}setHitGraphEnabled(t){se.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening(t)}getHitGraphEnabled(t){return se.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening()}toggleHitCanvas(){if(!(!this.parent||!this.parent.content)){var t=this.parent,n=!!this.hitCanvas._canvas.parentNode;n?t.content.removeChild(this.hitCanvas._canvas):t.content.appendChild(this.hitCanvas._canvas)}}}Xf.prototype.nodeType="Layer";hr(Xf);j.addGetterSetter(Xf,"imageSmoothingEnabled",!0);j.addGetterSetter(Xf,"clearBeforeDraw",!0);j.addGetterSetter(Xf,"hitGraphEnabled",!0,ks());class r_ extends Xf{constructor(t){super(t),this.listening(!1),se.warn('Konva.Fast layer is deprecated. Please use "new Konva.Layer({ listening: false })" instead.')}}r_.prototype.nodeType="FastLayer";hr(r_);class b0 extends ia{_validateAdd(t){var n=t.getType();n!=="Group"&&n!=="Shape"&&se.throw("You may only add groups and shapes to groups.")}}b0.prototype.nodeType="Group";hr(b0);var DS=function(){return e0.performance&&e0.performance.now?function(){return e0.performance.now()}:function(){return new Date().getTime()}}();class Ia{constructor(t,n){this.id=Ia.animIdCounter++,this.frame={time:0,timeDiff:0,lastTime:DS(),frameRate:0},this.func=t,this.setLayers(n)}setLayers(t){var n=[];return t?t.length>0?n=t:n=[t]:n=[],this.layers=n,this}getLayers(){return this.layers}addLayer(t){var n=this.layers,r=n.length,i;for(i=0;ithis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())}getTime(){return this._time}setPosition(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t}getPosition(t){return t===void 0&&(t=this._time),this.func(t,this.begin,this._change,this.duration)}play(){this.state=kA,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")}reverse(){this.state=EA,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")}seek(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")}reset(){this.pause(),this._time=0,this.update(),this.fire("onReset")}finish(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")}update(){this.setPosition(this.getPosition(this._time)),this.fire("onUpdate")}onEnterFrame(){var t=this.getTimer()-this._startTime;this.state===kA?this.setTime(t):this.state===EA&&this.setTime(this.duration-t)}pause(){this.state=Hxe,this.fire("onPause")}getTimer(){return new Date().getTime()}}class Ir{constructor(t){var n=this,r=t.node,i=r._id,o,a=t.easing||um.Linear,s=!!t.yoyo,l;typeof t.duration>"u"?o=.3:t.duration===0?o=.001:o=t.duration,this.node=r,this._id=Wxe++;var d=r.getLayer()||(r instanceof Je.Stage?r.getLayers():null);d||se.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Ia(function(){n.tween.onEnterFrame()},d),this.tween=new Vxe(l,function(p){n._tweenFunc(p)},a,0,1,o*1e3,s),this._addListeners(),Ir.attrs[i]||(Ir.attrs[i]={}),Ir.attrs[i][this._id]||(Ir.attrs[i][this._id]={}),Ir.tweens[i]||(Ir.tweens[i]={});for(l in t)$xe[l]===void 0&&this._addAttr(l,t[l]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset,this.onUpdate=t.onUpdate}_addAttr(t,n){var r=this.node,i=r._id,o,a,s,l,d,p,g,m;if(s=Ir.tweens[i][t],s&&delete Ir.attrs[i][s][t],o=r.getAttr(t),se._isArray(n))if(a=[],d=Math.max(n.length,o.length),t==="points"&&n.length!==o.length&&(n.length>o.length?(g=o,o=se._prepareArrayForTween(o,n,r.closed())):(p=n,n=se._prepareArrayForTween(n,o,r.closed()))),t.indexOf("fill")===0)for(l=0;l{this.anim.start()},this.tween.onReverse=()=>{this.anim.start()},this.tween.onPause=()=>{this.anim.stop()},this.tween.onFinish=()=>{var t=this.node,n=Ir.attrs[t._id][this._id];n.points&&n.points.trueEnd&&t.setAttr("points",n.points.trueEnd),this.onFinish&&this.onFinish.call(this)},this.tween.onReset=()=>{var t=this.node,n=Ir.attrs[t._id][this._id];n.points&&n.points.trueStart&&t.points(n.points.trueStart),this.onReset&&this.onReset()},this.tween.onUpdate=()=>{this.onUpdate&&this.onUpdate.call(this)}}play(){return this.tween.play(),this}reverse(){return this.tween.reverse(),this}reset(){return this.tween.reset(),this}seek(t){return this.tween.seek(t*1e3),this}pause(){return this.tween.pause(),this}finish(){return this.tween.finish(),this}destroy(){var t=this.node._id,n=this._id,r=Ir.tweens[t],i;this.pause();for(i in r)delete Ir.tweens[t][i];delete Ir.attrs[t][n]}}Ir.attrs={};Ir.tweens={};ze.prototype.to=function(e){var t=e.onFinish;e.node=this,e.onFinish=function(){this.destroy(),t&&t()};var n=new Ir(e);n.play()};const um={BackEaseIn(e,t,n,r){var i=1.70158;return n*(e/=r)*e*((i+1)*e-i)+t},BackEaseOut(e,t,n,r){var i=1.70158;return n*((e=e/r-1)*e*((i+1)*e+i)+1)+t},BackEaseInOut(e,t,n,r){var i=1.70158;return(e/=r/2)<1?n/2*(e*e*(((i*=1.525)+1)*e-i))+t:n/2*((e-=2)*e*(((i*=1.525)+1)*e+i)+2)+t},ElasticEaseIn(e,t,n,r,i,o){var a=0;return e===0?t:(e/=r)===1?t+n:(o||(o=r*.3),!i||i0?t:n),p=a*n,g=s*(s>0?t:n),m=l*(l>0?n:t);return{x:d,y:r?-1*m:g,width:p-d,height:m-g}}}_u.prototype._centroid=!0;_u.prototype.className="Arc";_u.prototype._attrsAffectingSize=["innerRadius","outerRadius"];hr(_u);j.addGetterSetter(_u,"innerRadius",0,De());j.addGetterSetter(_u,"outerRadius",0,De());j.addGetterSetter(_u,"angle",0,De());j.addGetterSetter(_u,"clockwise",!1,ks());function yC(e,t,n,r,i,o,a){var s=Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2)),l=Math.sqrt(Math.pow(i-n,2)+Math.pow(o-r,2)),d=a*s/(s+l),p=a*l/(s+l),g=n-d*(i-e),m=r-d*(o-t),y=n+p*(i-e),b=r+p*(o-t);return[g,m,y,b]}function TA(e,t){var n=e.length,r=[],i,o;for(i=2;i4){for(s=this.getTensionPoints(),l=s.length,d=o?0:4,o||t.quadraticCurveTo(s[0],s[1],s[2],s[3]);dp?d:p,E=d>p?1:d/p,P=d>p?p/d:1;t.translate(s,l),t.rotate(y),t.scale(E,P),t.arc(0,0,S,g,g+m,1-b),t.scale(1/E,1/P),t.rotate(-y),t.translate(-s,-l);break;case"z":r=!0,t.closePath();break}}!r&&!this.hasFill()?t.strokeShape(this):t.fillStrokeShape(this)}getSelfRect(){var t=[];this.dataArray.forEach(function(d){if(d.command==="A"){var p=d.points[4],g=d.points[5],m=d.points[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;b-=y){const S=In.getPointOnEllipticalArc(d.points[0],d.points[1],d.points[2],d.points[3],b,0);t.push(S.x,S.y)}else for(let b=p+y;bthis.dataArray[r].pathLength;)t-=this.dataArray[r].pathLength,++r;if(r===i)return n=this.dataArray[r-1].points.slice(-2),{x:n[0],y:n[1]};if(t<.01)return n=this.dataArray[r].points.slice(0,2),{x:n[0],y:n[1]};var o=this.dataArray[r],a=o.points;switch(o.command){case"L":return In.getPointOnLine(t,o.start.x,o.start.y,a[0],a[1]);case"C":return In.getPointOnCubicBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3],a[4],a[5]);case"Q":return In.getPointOnQuadraticBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3]);case"A":var s=a[0],l=a[1],d=a[2],p=a[3],g=a[4],m=a[5],y=a[6];return g+=m*t/o.pathLength,In.getPointOnEllipticalArc(s,l,d,p,g,y)}return null}static getLineLength(t,n,r,i){return Math.sqrt((r-t)*(r-t)+(i-n)*(i-n))}static getPointOnLine(t,n,r,i,o,a,s){a===void 0&&(a=n),s===void 0&&(s=r);var l=(o-r)/(i-n+1e-8),d=Math.sqrt(t*t/(1+l*l));i0&&!isNaN(b[0]);){var k=null,L=[],I=l,O=d,N,D,F,U,W,q,pe,fe,ye,Pe;switch(y){case"l":l+=b.shift(),d+=b.shift(),k="L",L.push(l,d);break;case"L":l=b.shift(),d=b.shift(),L.push(l,d);break;case"m":var xe=b.shift(),Y=b.shift();if(l+=xe,d+=Y,k="M",a.length>2&&a[a.length-1].command==="z"){for(var V=a.length-2;V>=0;V--)if(a[V].command==="M"){l=a[V].points[0]+xe,d=a[V].points[1]+Y;break}}L.push(l,d),y="l";break;case"M":l=b.shift(),d=b.shift(),k="M",L.push(l,d),y="L";break;case"h":l+=b.shift(),k="L",L.push(l,d);break;case"H":l=b.shift(),k="L",L.push(l,d);break;case"v":d+=b.shift(),k="L",L.push(l,d);break;case"V":d=b.shift(),k="L",L.push(l,d);break;case"C":L.push(b.shift(),b.shift(),b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"c":L.push(l+b.shift(),d+b.shift(),l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"S":D=l,F=d,N=a[a.length-1],N.command==="C"&&(D=l+(l-N.points[2]),F=d+(d-N.points[3])),L.push(D,F,b.shift(),b.shift()),l=b.shift(),d=b.shift(),k="C",L.push(l,d);break;case"s":D=l,F=d,N=a[a.length-1],N.command==="C"&&(D=l+(l-N.points[2]),F=d+(d-N.points[3])),L.push(D,F,l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"Q":L.push(b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"q":L.push(l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="Q",L.push(l,d);break;case"T":D=l,F=d,N=a[a.length-1],N.command==="Q"&&(D=l+(l-N.points[0]),F=d+(d-N.points[1])),l=b.shift(),d=b.shift(),k="Q",L.push(D,F,l,d);break;case"t":D=l,F=d,N=a[a.length-1],N.command==="Q"&&(D=l+(l-N.points[0]),F=d+(d-N.points[1])),l+=b.shift(),d+=b.shift(),k="Q",L.push(D,F,l,d);break;case"A":U=b.shift(),W=b.shift(),q=b.shift(),pe=b.shift(),fe=b.shift(),ye=l,Pe=d,l=b.shift(),d=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(ye,Pe,l,d,pe,fe,U,W,q);break;case"a":U=b.shift(),W=b.shift(),q=b.shift(),pe=b.shift(),fe=b.shift(),ye=l,Pe=d,l+=b.shift(),d+=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(ye,Pe,l,d,pe,fe,U,W,q);break}a.push({command:k||y,points:L,start:{x:I,y:O},pathLength:this.calcLength(I,O,k||y,L)})}(y==="z"||y==="Z")&&a.push({command:"z",points:[],start:void 0,pathLength:0})}return a}static calcLength(t,n,r,i){var o,a,s,l,d=In;switch(r){case"L":return d.getLineLength(t,n,i[0],i[1]);case"C":for(o=0,a=d.getPointOnCubicBezier(0,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),l=.01;l<=1;l+=.01)s=d.getPointOnCubicBezier(l,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"Q":for(o=0,a=d.getPointOnQuadraticBezier(0,t,n,i[0],i[1],i[2],i[3]),l=.01;l<=1;l+=.01)s=d.getPointOnQuadraticBezier(l,t,n,i[0],i[1],i[2],i[3]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"A":o=0;var p=i[4],g=i[5],m=i[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;l-=y)s=d.getPointOnEllipticalArc(i[0],i[1],i[2],i[3],l,0),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;else for(l=p+y;l1&&(s*=Math.sqrt(y),l*=Math.sqrt(y));var b=Math.sqrt((s*s*(l*l)-s*s*(m*m)-l*l*(g*g))/(s*s*(m*m)+l*l*(g*g)));o===a&&(b*=-1),isNaN(b)&&(b=0);var S=b*s*m/l,E=b*-l*g/s,P=(t+r)/2+Math.cos(p)*S-Math.sin(p)*E,k=(n+i)/2+Math.sin(p)*S+Math.cos(p)*E,L=function(W){return Math.sqrt(W[0]*W[0]+W[1]*W[1])},I=function(W,q){return(W[0]*q[0]+W[1]*q[1])/(L(W)*L(q))},O=function(W,q){return(W[0]*q[1]=1&&(U=0),a===0&&U>0&&(U=U-2*Math.PI),a===1&&U<0&&(U=U+2*Math.PI),[P,k,s,l,N,U,p,a]}}In.prototype.className="Path";In.prototype._attrsAffectingSize=["data"];hr(In);j.addGetterSetter(In,"data");class Qf extends ku{_sceneFunc(t){super._sceneFunc(t);var n=Math.PI*2,r=this.points(),i=r,o=this.tension()!==0&&r.length>4;o&&(i=this.getTensionPoints());var a=this.pointerLength(),s=r.length,l,d;if(o){const m=[i[i.length-4],i[i.length-3],i[i.length-2],i[i.length-1],r[s-2],r[s-1]],y=In.calcLength(i[i.length-4],i[i.length-3],"C",m),b=In.getPointOnQuadraticBezier(Math.min(1,1-a/y),m[0],m[1],m[2],m[3],m[4],m[5]);l=r[s-2]-b.x,d=r[s-1]-b.y}else l=r[s-2]-r[s-4],d=r[s-1]-r[s-3];var p=(Math.atan2(d,l)+n)%n,g=this.pointerWidth();this.pointerAtEnding()&&(t.save(),t.beginPath(),t.translate(r[s-2],r[s-1]),t.rotate(p),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t)),this.pointerAtBeginning()&&(t.save(),t.beginPath(),t.translate(r[0],r[1]),o?(l=(i[0]+i[2])/2-r[0],d=(i[1]+i[3])/2-r[1]):(l=r[2]-r[0],d=r[3]-r[1]),t.rotate((Math.atan2(-d,-l)+n)%n),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t))}__fillStroke(t){var n=this.dashEnabled();n&&(this.attrs.dashEnabled=!1,t.setLineDash([])),t.fillStrokeShape(this),n&&(this.attrs.dashEnabled=!0)}getSelfRect(){const t=super.getSelfRect(),n=this.pointerWidth()/2;return{x:t.x-n,y:t.y-n,width:t.width+n*2,height:t.height+n*2}}}Qf.prototype.className="Arrow";hr(Qf);j.addGetterSetter(Qf,"pointerLength",10,De());j.addGetterSetter(Qf,"pointerWidth",10,De());j.addGetterSetter(Qf,"pointerAtBeginning",!1);j.addGetterSetter(Qf,"pointerAtEnding",!0);class $0 extends Ae{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.attrs.radius||0,0,Math.PI*2,!1),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius()!==t/2&&this.radius(t/2)}setHeight(t){this.radius()!==t/2&&this.radius(t/2)}}$0.prototype._centroid=!0;$0.prototype.className="Circle";$0.prototype._attrsAffectingSize=["radius"];hr($0);j.addGetterSetter($0,"radius",0,De());class ld extends Ae{_sceneFunc(t){var n=this.radiusX(),r=this.radiusY();t.beginPath(),t.save(),n!==r&&t.scale(1,r/n),t.arc(0,0,n,0,Math.PI*2,!1),t.restore(),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radiusX()*2}getHeight(){return this.radiusY()*2}setWidth(t){this.radiusX(t/2)}setHeight(t){this.radiusY(t/2)}}ld.prototype.className="Ellipse";ld.prototype._centroid=!0;ld.prototype._attrsAffectingSize=["radiusX","radiusY"];hr(ld);j.addComponentsGetterSetter(ld,"radius",["x","y"]);j.addGetterSetter(ld,"radiusX",0,De());j.addGetterSetter(ld,"radiusY",0,De());class Es extends Ae{constructor(t){super(t),this.on("imageChange.konva",()=>{this._setImageLoad()}),this._setImageLoad()}_setImageLoad(){const t=this.image();t&&t.complete||t&&t.readyState===4||t&&t.addEventListener&&t.addEventListener("load",()=>{this._requestDraw()})}_useBufferCanvas(){return super._useBufferCanvas(!0)}_sceneFunc(t){const n=this.getWidth(),r=this.getHeight(),i=this.attrs.image;let o;if(i){const a=this.attrs.cropWidth,s=this.attrs.cropHeight;a&&s?o=[i,this.cropX(),this.cropY(),a,s,0,0,n,r]:o=[i,0,0,n,r]}(this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)),i&&t.drawImage.apply(t,o)}_hitFunc(t){var n=this.width(),r=this.height();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}getWidth(){var t,n;return(t=this.attrs.width)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.width}getHeight(){var t,n;return(t=this.attrs.height)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.height}static fromURL(t,n,r=null){var i=se.createImageElement();i.onload=function(){var o=new Es({image:i});n(o)},i.onerror=r,i.crossOrigin="Anonymous",i.src=t}}Es.prototype.className="Image";hr(Es);j.addGetterSetter(Es,"image");j.addComponentsGetterSetter(Es,"crop",["x","y","width","height"]);j.addGetterSetter(Es,"cropX",0,De());j.addGetterSetter(Es,"cropY",0,De());j.addGetterSetter(Es,"cropWidth",0,De());j.addGetterSetter(Es,"cropHeight",0,De());var B$=["fontFamily","fontSize","fontStyle","padding","lineHeight","text","width","height","pointerDirection","pointerWidth","pointerHeight"],Uxe="Change.konva",Gxe="none",xC="up",bC="right",SC="down",wC="left",jxe=B$.length;class i_ extends b0{constructor(t){super(t),this.on("add.konva",function(n){this._addListeners(n.child),this._sync()})}getText(){return this.find("Text")[0]}getTag(){return this.find("Tag")[0]}_addListeners(t){var n=this,r,i=function(){n._sync()};for(r=0;r{n=Math.min(n,a.x),r=Math.max(r,a.x),i=Math.min(i,a.y),o=Math.max(o,a.y)}),{x:n,y:i,width:r-n,height:o-i}}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}eh.prototype.className="RegularPolygon";eh.prototype._centroid=!0;eh.prototype._attrsAffectingSize=["radius"];hr(eh);j.addGetterSetter(eh,"radius",0,De());j.addGetterSetter(eh,"sides",0,De());var LA=Math.PI*2;class th extends Ae{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.innerRadius(),0,LA,!1),t.moveTo(this.outerRadius(),0),t.arc(0,0,this.outerRadius(),LA,0,!0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.outerRadius()*2}getHeight(){return this.outerRadius()*2}setWidth(t){this.outerRadius(t/2)}setHeight(t){this.outerRadius(t/2)}}th.prototype.className="Ring";th.prototype._centroid=!0;th.prototype._attrsAffectingSize=["innerRadius","outerRadius"];hr(th);j.addGetterSetter(th,"innerRadius",0,De());j.addGetterSetter(th,"outerRadius",0,De());class Ll extends Ae{constructor(t){super(t),this._updated=!0,this.anim=new Ia(()=>{var n=this._updated;return this._updated=!1,n}),this.on("animationChange.konva",function(){this.frameIndex(0)}),this.on("frameIndexChange.konva",function(){this._updated=!0}),this.on("frameRateChange.konva",function(){!this.anim.isRunning()||(clearInterval(this.interval),this._setInterval())})}_sceneFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+0],l=o[i+1],d=o[i+2],p=o[i+3],g=this.image();if((this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,d,p),t.closePath(),t.fillStrokeShape(this)),g)if(a){var m=a[n],y=r*2;t.drawImage(g,s,l,d,p,m[y+0],m[y+1],d,p)}else t.drawImage(g,s,l,d,p,0,0,d,p)}_hitFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+2],l=o[i+3];if(t.beginPath(),a){var d=a[n],p=r*2;t.rect(d[p+0],d[p+1],s,l)}else t.rect(0,0,s,l);t.closePath(),t.fillShape(this)}_useBufferCanvas(){return super._useBufferCanvas(!0)}_setInterval(){var t=this;this.interval=setInterval(function(){t._updateIndex()},1e3/this.frameRate())}start(){if(!this.isRunning()){var t=this.getLayer();this.anim.setLayers(t),this._setInterval(),this.anim.start()}}stop(){this.anim.stop(),clearInterval(this.interval)}isRunning(){return this.anim.isRunning()}_updateIndex(){var t=this.frameIndex(),n=this.animation(),r=this.animations(),i=r[n],o=i.length/4;t{t=t.trim();const n=t.indexOf(" ")>=0,r=t.indexOf('"')>=0||t.indexOf("'")>=0;return n&&!r&&(t=`"${t}"`),t}).join(", ")}var Cy;function FS(){return Cy||(Cy=se.createCanvasElement().getContext(Zxe),Cy)}function abe(e){e.fillText(this._partialText,this._partialTextX,this._partialTextY)}function sbe(e){e.strokeText(this._partialText,this._partialTextX,this._partialTextY)}function lbe(e){return e=e||{},!e.fillLinearGradientColorStops&&!e.fillRadialGradientColorStops&&!e.fillPatternImage&&(e.fill=e.fill||"black"),e}class fr extends Ae{constructor(t){super(lbe(t)),this._partialTextX=0,this._partialTextY=0;for(var n=0;n1&&(P+=a)}}}_hitFunc(t){var n=this.getWidth(),r=this.getHeight();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}setText(t){var n=se._isString(t)?t:t==null?"":t+"";return this._setAttr(Yxe,n),this}getWidth(){var t=this.attrs.width===dp||this.attrs.width===void 0;return t?this.getTextWidth()+this.padding()*2:this.attrs.width}getHeight(){var t=this.attrs.height===dp||this.attrs.height===void 0;return t?this.fontSize()*this.textArr.length*this.lineHeight()+this.padding()*2:this.attrs.height}getTextWidth(){return this.textWidth}getTextHeight(){return se.warn("text.getTextHeight() method is deprecated. Use text.height() - for full height and text.fontSize() - for one line height."),this.textHeight}measureSize(t){var n=FS(),r=this.fontSize(),i;return n.save(),n.font=this._getContextFont(),i=n.measureText(t),n.restore(),{width:i.width,height:r}}_getContextFont(){return this.fontStyle()+wy+this.fontVariant()+wy+(this.fontSize()+ebe)+obe(this.fontFamily())}_addTextLine(t){this.align()===fg&&(t=t.trim());var n=this._getTextWidth(t);return this.textArr.push({text:t,width:n,lastInParagraph:!1})}_getTextWidth(t){var n=this.letterSpacing(),r=t.length;return FS().measureText(t).width+(r?n*(r-1):0)}_setTextData(){var t=this.text().split(` +`),n=+this.fontSize(),r=0,i=this.lineHeight()*n,o=this.attrs.width,a=this.attrs.height,s=o!==dp&&o!==void 0,l=a!==dp&&a!==void 0,d=this.padding(),p=o-d*2,g=a-d*2,m=0,y=this.wrap(),b=y!==MA,S=y!==rbe&&b,E=this.ellipsis();this.textArr=[],FS().font=this._getContextFont();for(var P=E?this._getTextWidth(zS):0,k=0,L=t.length;kp)for(;I.length>0;){for(var N=0,D=I.length,F="",U=0;N>>1,q=I.slice(0,W+1),pe=this._getTextWidth(q)+P;pe<=p?(N=W+1,F=q,U=pe):D=W}if(F){if(S){var fe,ye=I[F.length],Pe=ye===wy||ye===AA;Pe&&U<=p?fe=F.length:fe=Math.max(F.lastIndexOf(wy),F.lastIndexOf(AA))+1,fe>0&&(N=fe,F=F.slice(0,N),U=this._getTextWidth(F))}F=F.trimRight(),this._addTextLine(F),r=Math.max(r,U),m+=i;var xe=this._shouldHandleEllipsis(m);if(xe){this._tryToAddEllipsisToLastLine();break}if(I=I.slice(N),I=I.trimLeft(),I.length>0&&(O=this._getTextWidth(I),O<=p)){this._addTextLine(I),m+=i,r=Math.max(r,O);break}}else break}else this._addTextLine(I),m+=i,r=Math.max(r,O),this._shouldHandleEllipsis(m)&&kg)break;this.textArr[this.textArr.length-1]&&(this.textArr[this.textArr.length-1].lastInParagraph=!0)}this.textHeight=n,this.textWidth=r}_shouldHandleEllipsis(t){var n=+this.fontSize(),r=this.lineHeight()*n,i=this.attrs.height,o=i!==dp&&i!==void 0,a=this.padding(),s=i-a*2,l=this.wrap(),d=l!==MA;return!d||o&&t+r>s}_tryToAddEllipsisToLastLine(){var t=this.attrs.width,n=t!==dp&&t!==void 0,r=this.padding(),i=t-r*2,o=this.ellipsis(),a=this.textArr[this.textArr.length-1];if(!(!a||!o)){if(n){var s=this._getTextWidth(a.text+zS)=1){var r=n[0].p0;t.moveTo(r.x,r.y)}for(var i=0;i0&&(s+=t.dataArray[l].pathLength);var d=0;i==="center"&&(d=Math.max(0,s/2-a/2)),i==="right"&&(d=Math.max(0,s-a));for(var p=$$(this.text()),g=this.text().split(" ").length-1,m,y,b,S=-1,E=0,P=function(){E=0;for(var pe=t.dataArray,fe=S+1;fe0)return S=fe,pe[fe];pe[fe].command==="M"&&(m={x:pe[fe].points[0],y:pe[fe].points[1]})}return{}},k=function(pe){var fe=t._getTextSize(pe).width+r;pe===" "&&i==="justify"&&(fe+=(s-a)/g);var ye=0,Pe=0;for(y=void 0;Math.abs(fe-ye)/fe>.01&&Pe<20;){Pe++;for(var xe=ye;b===void 0;)b=P(),b&&xe+b.pathLengthfe?y=In.getPointOnLine(fe,m.x,m.y,b.points[0],b.points[1],m.x,m.y):b=void 0;break;case"A":var V=b.points[4],ae=b.points[5],oe=b.points[4]+ae;E===0?E=V+1e-8:fe>ye?E+=Math.PI/180*ae/Math.abs(ae):E-=Math.PI/360*ae/Math.abs(ae),(ae<0&&E=0&&E>oe)&&(E=oe,Y=!0),y=In.getPointOnEllipticalArc(b.points[0],b.points[1],b.points[2],b.points[3],E,b.points[6]);break;case"C":E===0?fe>b.pathLength?E=1e-8:E=fe/b.pathLength:fe>ye?E+=(fe-ye)/b.pathLength/2:E=Math.max(E-(ye-fe)/b.pathLength/2,0),E>1&&(E=1,Y=!0),y=In.getPointOnCubicBezier(E,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3],b.points[4],b.points[5]);break;case"Q":E===0?E=fe/b.pathLength:fe>ye?E+=(fe-ye)/b.pathLength:E-=(ye-fe)/b.pathLength,E>1&&(E=1,Y=!0),y=In.getPointOnQuadraticBezier(E,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3]);break}y!==void 0&&(ye=In.getLineLength(m.x,m.y,y.x,y.y)),Y&&(Y=!1,b=void 0)}},L="C",I=t._getTextSize(L).width+r,O=d/I-1,N=0;Ne+`.${q$}`).join(" "),RA="nodesRect",dbe=["widthChange","heightChange","scaleXChange","scaleYChange","skewXChange","skewYChange","rotationChange","offsetXChange","offsetYChange","transformsEnabledChange","strokeWidthChange"],fbe={"top-left":-45,"top-center":0,"top-right":45,"middle-right":-90,"middle-left":90,"bottom-left":-135,"bottom-center":180,"bottom-right":135};const hbe="ontouchstart"in Je._global;function pbe(e,t){if(e==="rotater")return"crosshair";t+=se.degToRad(fbe[e]||0);var n=(se.radToDeg(t)%360+360)%360;return se._inRange(n,315+22.5,360)||se._inRange(n,0,22.5)?"ns-resize":se._inRange(n,45-22.5,45+22.5)?"nesw-resize":se._inRange(n,90-22.5,90+22.5)?"ew-resize":se._inRange(n,135-22.5,135+22.5)?"nwse-resize":se._inRange(n,180-22.5,180+22.5)?"ns-resize":se._inRange(n,225-22.5,225+22.5)?"nesw-resize":se._inRange(n,270-22.5,270+22.5)?"ew-resize":se._inRange(n,315-22.5,315+22.5)?"nwse-resize":(se.error("Transformer has unknown angle for cursor detection: "+n),"pointer")}var O5=["top-left","top-center","top-right","middle-right","middle-left","bottom-left","bottom-center","bottom-right"],OA=1e8;function gbe(e){return{x:e.x+e.width/2*Math.cos(e.rotation)+e.height/2*Math.sin(-e.rotation),y:e.y+e.height/2*Math.cos(e.rotation)+e.width/2*Math.sin(e.rotation)}}function K$(e,t,n){const r=n.x+(e.x-n.x)*Math.cos(t)-(e.y-n.y)*Math.sin(t),i=n.y+(e.x-n.x)*Math.sin(t)+(e.y-n.y)*Math.cos(t);return Object.assign(Object.assign({},e),{rotation:e.rotation+t,x:r,y:i})}function mbe(e,t){const n=gbe(e);return K$(e,t,n)}function vbe(e,t,n){let r=t;for(let i=0;i{const i=()=>{this.nodes().length===1&&this.useSingleNodeRotation()&&this.rotation(this.nodes()[0].getAbsoluteRotation()),this._resetTransformCache(),!this._transforming&&!this.isDragging()&&this.update()},o=r._attrsAffectingSize.map(a=>a+"Change."+this._getEventNamespace()).join(" ");r.on(o,i),r.on(dbe.map(a=>a+`.${this._getEventNamespace()}`).join(" "),i),r.on(`absoluteTransformChange.${this._getEventNamespace()}`,i),this._proxyDrag(r)}),this._resetTransformCache();var n=!!this.findOne(".top-left");return n&&this.update(),this}_proxyDrag(t){let n;t.on(`dragstart.${this._getEventNamespace()}`,r=>{n=t.getAbsolutePosition(),!this.isDragging()&&t!==this.findOne(".back")&&this.startDrag(r,!1)}),t.on(`dragmove.${this._getEventNamespace()}`,r=>{if(!n)return;const i=t.getAbsolutePosition(),o=i.x-n.x,a=i.y-n.y;this.nodes().forEach(s=>{if(s===t||s.isDragging())return;const l=s.getAbsolutePosition();s.setAbsolutePosition({x:l.x+o,y:l.y+a}),s.startDrag(r)}),n=null})}getNodes(){return this._nodes||[]}getActiveAnchor(){return this._movingAnchorName}detach(){this._nodes&&this._nodes.forEach(t=>{t.off("."+this._getEventNamespace())}),this._nodes=[],this._resetTransformCache()}_resetTransformCache(){this._clearCache(RA),this._clearCache("transform"),this._clearSelfAndDescendantCache("absoluteTransform")}_getNodeRect(){return this._getCache(RA,this.__getNodeRect)}__getNodeShape(t,n=this.rotation(),r){var i=t.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()}),o=t.getAbsoluteScale(r),a=t.getAbsolutePosition(r),s=i.x*o.x-t.offsetX()*o.x,l=i.y*o.y-t.offsetY()*o.y;const d=(Je.getAngle(t.getAbsoluteRotation())+Math.PI*2)%(Math.PI*2),p={x:a.x+s*Math.cos(d)+l*Math.sin(-d),y:a.y+l*Math.cos(d)+s*Math.sin(d),width:i.width*o.x,height:i.height*o.y,rotation:d};return K$(p,-Je.getAngle(n),{x:0,y:0})}__getNodeRect(){var t=this.getNode();if(!t)return{x:-OA,y:-OA,width:0,height:0,rotation:0};const n=[];this.nodes().map(d=>{const p=d.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()});var g=[{x:p.x,y:p.y},{x:p.x+p.width,y:p.y},{x:p.x+p.width,y:p.y+p.height},{x:p.x,y:p.y+p.height}],m=d.getAbsoluteTransform();g.forEach(function(y){var b=m.point(y);n.push(b)})});const r=new Qo;r.rotate(-Je.getAngle(this.rotation()));var i,o,a,s;n.forEach(function(d){var p=r.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),r.invert();const l=r.point({x:i,y:o});return{x:l.x,y:l.y,width:a-i,height:s-o,rotation:Je.getAngle(this.rotation())}}getX(){return this._getNodeRect().x}getY(){return this._getNodeRect().y}getWidth(){return this._getNodeRect().width}getHeight(){return this._getNodeRect().height}_createElements(){this._createBack(),O5.forEach(function(t){this._createAnchor(t)}.bind(this)),this._createAnchor("rotater")}_createAnchor(t){var n=new Lv({stroke:"rgb(0, 161, 255)",fill:"white",strokeWidth:1,name:t+" _anchor",dragDistance:0,draggable:!0,hitStrokeWidth:hbe?10:"auto"}),r=this;n.on("mousedown touchstart",function(i){r._handleMouseDown(i)}),n.on("dragstart",i=>{n.stopDrag(),i.cancelBubble=!0}),n.on("dragend",i=>{i.cancelBubble=!0}),n.on("mouseenter",()=>{var i=Je.getAngle(this.rotation()),o=pbe(t,i);n.getStage().content&&(n.getStage().content.style.cursor=o),this._cursorChange=!0}),n.on("mouseout",()=>{n.getStage().content&&(n.getStage().content.style.cursor=""),this._cursorChange=!1}),this.add(n)}_createBack(){var t=new Ae({name:"back",width:0,height:0,draggable:!0,sceneFunc(n){var r=this.getParent(),i=r.padding();n.beginPath(),n.rect(-i,-i,this.width()+i*2,this.height()+i*2),n.moveTo(this.width()/2,-i),r.rotateEnabled()&&n.lineTo(this.width()/2,-r.rotateAnchorOffset()*se._sign(this.height())-i),n.fillStrokeShape(this)},hitFunc:(n,r)=>{if(!!this.shouldOverdrawWholeArea()){var i=this.padding();n.beginPath(),n.rect(-i,-i,r.width()+i*2,r.height()+i*2),n.fillStrokeShape(r)}}});this.add(t),this._proxyDrag(t),t.on("dragstart",n=>{n.cancelBubble=!0}),t.on("dragmove",n=>{n.cancelBubble=!0}),t.on("dragend",n=>{n.cancelBubble=!0}),this.on("dragmove",n=>{this.update()})}_handleMouseDown(t){this._movingAnchorName=t.target.name().split(" ")[0];var n=this._getNodeRect(),r=n.width,i=n.height,o=Math.sqrt(Math.pow(r,2)+Math.pow(i,2));this.sin=Math.abs(i/o),this.cos=Math.abs(r/o),typeof window<"u"&&(window.addEventListener("mousemove",this._handleMouseMove),window.addEventListener("touchmove",this._handleMouseMove),window.addEventListener("mouseup",this._handleMouseUp,!0),window.addEventListener("touchend",this._handleMouseUp,!0)),this._transforming=!0;var a=t.target.getAbsolutePosition(),s=t.target.getStage().getPointerPosition();this._anchorDragOffset={x:s.x-a.x,y:s.y-a.y},this._fire("transformstart",{evt:t.evt,target:this.getNode()}),this._nodes.forEach(l=>{l._fire("transformstart",{evt:t.evt,target:l})})}_handleMouseMove(t){var n,r,i,o=this.findOne("."+this._movingAnchorName),a=o.getStage();a.setPointersPositions(t);const s=a.getPointerPosition();let l={x:s.x-this._anchorDragOffset.x,y:s.y-this._anchorDragOffset.y};const d=o.getAbsolutePosition();this.anchorDragBoundFunc()&&(l=this.anchorDragBoundFunc()(d,l,t)),o.setAbsolutePosition(l);const p=o.getAbsolutePosition();if(!(d.x===p.x&&d.y===p.y)){if(this._movingAnchorName==="rotater"){var g=this._getNodeRect();n=o.x()-g.width/2,r=-o.y()+g.height/2;let pe=Math.atan2(-r,n)+Math.PI/2;g.height<0&&(pe-=Math.PI);var m=Je.getAngle(this.rotation());const fe=m+pe,ye=Je.getAngle(this.rotationSnapTolerance()),xe=vbe(this.rotationSnaps(),fe,ye)-g.rotation,Y=mbe(g,xe);this._fitNodesInto(Y,t);return}var y=this.keepRatio()||t.shiftKey,k=this.centeredScaling()||t.altKey;if(this._movingAnchorName==="top-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-right").x(),y:this.findOne(".bottom-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(b.y-o.y(),2));var S=this.findOne(".top-left").x()>b.x?-1:1,E=this.findOne(".top-left").y()>b.y?-1:1;n=i*this.cos*S,r=i*this.sin*E,this.findOne(".top-left").x(b.x-n),this.findOne(".top-left").y(b.y-r)}}else if(this._movingAnchorName==="top-center")this.findOne(".top-left").y(o.y());else if(this._movingAnchorName==="top-right"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-left").x(),y:this.findOne(".bottom-left").y()};i=Math.sqrt(Math.pow(o.x()-b.x,2)+Math.pow(b.y-o.y(),2));var S=this.findOne(".top-right").x()b.y?-1:1;n=i*this.cos*S,r=i*this.sin*E,this.findOne(".top-right").x(b.x+n),this.findOne(".top-right").y(b.y-r)}var P=o.position();this.findOne(".top-left").y(P.y),this.findOne(".bottom-right").x(P.x)}else if(this._movingAnchorName==="middle-left")this.findOne(".top-left").x(o.x());else if(this._movingAnchorName==="middle-right")this.findOne(".bottom-right").x(o.x());else if(this._movingAnchorName==="bottom-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".top-right").x(),y:this.findOne(".top-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(o.y()-b.y,2));var S=b.x{r._fire("transformend",{evt:t,target:r})}),this._movingAnchorName=null}}_fitNodesInto(t,n){var r=this._getNodeRect();const i=1;if(se._inRange(t.width,-this.padding()*2-i,i)){this.update();return}if(se._inRange(t.height,-this.padding()*2-i,i)){this.update();return}const o=this.flipEnabled();var a=new Qo;if(a.rotate(Je.getAngle(this.rotation())),this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("left")>=0){const g=a.point({x:-this.padding()*2,y:0});if(t.x+=g.x,t.y+=g.y,t.width+=this.padding()*2,this._movingAnchorName=this._movingAnchorName.replace("left","right"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,!o){this.update();return}}else if(this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("right")>=0){const g=a.point({x:this.padding()*2,y:0});if(this._movingAnchorName=this._movingAnchorName.replace("right","left"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.width+=this.padding()*2,!o){this.update();return}}if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("top")>=0){const g=a.point({x:0,y:-this.padding()*2});if(t.x+=g.x,t.y+=g.y,this._movingAnchorName=this._movingAnchorName.replace("top","bottom"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}else if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("bottom")>=0){const g=a.point({x:0,y:this.padding()*2});if(this._movingAnchorName=this._movingAnchorName.replace("bottom","top"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}if(this.boundBoxFunc()){const g=this.boundBoxFunc()(r,t);g?t=g:se.warn("boundBoxFunc returned falsy. You should return new bound rect from it!")}const s=1e7,l=new Qo;l.translate(r.x,r.y),l.rotate(r.rotation),l.scale(r.width/s,r.height/s);const d=new Qo;d.translate(t.x,t.y),d.rotate(t.rotation),d.scale(t.width/s,t.height/s);const p=d.multiply(l.invert());this._nodes.forEach(g=>{var m;const y=g.getParent().getAbsoluteTransform(),b=g.getTransform().copy();b.translate(g.offsetX(),g.offsetY());const S=new Qo;S.multiply(y.copy().invert()).multiply(p).multiply(y).multiply(b);const E=S.decompose();g.setAttrs(E),this._fire("transform",{evt:n,target:g}),g._fire("transform",{evt:n,target:g}),(m=g.getLayer())===null||m===void 0||m.batchDraw()}),this.rotation(se._getRotation(t.rotation)),this._resetTransformCache(),this.update(),this.getLayer().batchDraw()}forceUpdate(){this._resetTransformCache(),this.update()}_batchChangeChild(t,n){this.findOne(t).setAttrs(n)}update(){var t,n=this._getNodeRect();this.rotation(se._getRotation(n.rotation));var r=n.width,i=n.height,o=this.enabledAnchors(),a=this.resizeEnabled(),s=this.padding(),l=this.anchorSize();this.find("._anchor").forEach(d=>{d.setAttrs({width:l,height:l,offsetX:l/2,offsetY:l/2,stroke:this.anchorStroke(),strokeWidth:this.anchorStrokeWidth(),fill:this.anchorFill(),cornerRadius:this.anchorCornerRadius()})}),this._batchChangeChild(".top-left",{x:0,y:0,offsetX:l/2+s,offsetY:l/2+s,visible:a&&o.indexOf("top-left")>=0}),this._batchChangeChild(".top-center",{x:r/2,y:0,offsetY:l/2+s,visible:a&&o.indexOf("top-center")>=0}),this._batchChangeChild(".top-right",{x:r,y:0,offsetX:l/2-s,offsetY:l/2+s,visible:a&&o.indexOf("top-right")>=0}),this._batchChangeChild(".middle-left",{x:0,y:i/2,offsetX:l/2+s,visible:a&&o.indexOf("middle-left")>=0}),this._batchChangeChild(".middle-right",{x:r,y:i/2,offsetX:l/2-s,visible:a&&o.indexOf("middle-right")>=0}),this._batchChangeChild(".bottom-left",{x:0,y:i,offsetX:l/2+s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-left")>=0}),this._batchChangeChild(".bottom-center",{x:r/2,y:i,offsetY:l/2-s,visible:a&&o.indexOf("bottom-center")>=0}),this._batchChangeChild(".bottom-right",{x:r,y:i,offsetX:l/2-s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-right")>=0}),this._batchChangeChild(".rotater",{x:r/2,y:-this.rotateAnchorOffset()*se._sign(i)-s,visible:this.rotateEnabled()}),this._batchChangeChild(".back",{width:r,height:i,visible:this.borderEnabled(),stroke:this.borderStroke(),strokeWidth:this.borderStrokeWidth(),dash:this.borderDash(),x:0,y:0}),(t=this.getLayer())===null||t===void 0||t.batchDraw()}isTransforming(){return this._transforming}stopTransform(){if(this._transforming){this._removeEvents();var t=this.findOne("."+this._movingAnchorName);t&&t.stopDrag()}}destroy(){return this.getStage()&&this._cursorChange&&this.getStage().content&&(this.getStage().content.style.cursor=""),b0.prototype.destroy.call(this),this.detach(),this._removeEvents(),this}toObject(){return ze.prototype.toObject.call(this)}getClientRect(){return this.nodes().length>0?super.getClientRect():{x:0,y:0,width:0,height:0}}}function ybe(e){return e instanceof Array||se.warn("enabledAnchors value should be an array"),e instanceof Array&&e.forEach(function(t){O5.indexOf(t)===-1&&se.warn("Unknown anchor name: "+t+". Available names are: "+O5.join(", "))}),e||[]}bn.prototype.className="Transformer";hr(bn);j.addGetterSetter(bn,"enabledAnchors",O5,ybe);j.addGetterSetter(bn,"flipEnabled",!0,ks());j.addGetterSetter(bn,"resizeEnabled",!0);j.addGetterSetter(bn,"anchorSize",10,De());j.addGetterSetter(bn,"rotateEnabled",!0);j.addGetterSetter(bn,"rotationSnaps",[]);j.addGetterSetter(bn,"rotateAnchorOffset",50,De());j.addGetterSetter(bn,"rotationSnapTolerance",5,De());j.addGetterSetter(bn,"borderEnabled",!0);j.addGetterSetter(bn,"anchorStroke","rgb(0, 161, 255)");j.addGetterSetter(bn,"anchorStrokeWidth",1,De());j.addGetterSetter(bn,"anchorFill","white");j.addGetterSetter(bn,"anchorCornerRadius",0,De());j.addGetterSetter(bn,"borderStroke","rgb(0, 161, 255)");j.addGetterSetter(bn,"borderStrokeWidth",1,De());j.addGetterSetter(bn,"borderDash");j.addGetterSetter(bn,"keepRatio",!0);j.addGetterSetter(bn,"centeredScaling",!1);j.addGetterSetter(bn,"ignoreStroke",!1);j.addGetterSetter(bn,"padding",0,De());j.addGetterSetter(bn,"node");j.addGetterSetter(bn,"nodes");j.addGetterSetter(bn,"boundBoxFunc");j.addGetterSetter(bn,"anchorDragBoundFunc");j.addGetterSetter(bn,"shouldOverdrawWholeArea",!1);j.addGetterSetter(bn,"useSingleNodeRotation",!0);j.backCompat(bn,{lineEnabled:"borderEnabled",rotateHandlerOffset:"rotateAnchorOffset",enabledHandlers:"enabledAnchors"});class Eu extends Ae{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.radius(),0,Je.getAngle(this.angle()),this.clockwise()),t.lineTo(0,0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}Eu.prototype.className="Wedge";Eu.prototype._centroid=!0;Eu.prototype._attrsAffectingSize=["radius"];hr(Eu);j.addGetterSetter(Eu,"radius",0,De());j.addGetterSetter(Eu,"angle",0,De());j.addGetterSetter(Eu,"clockwise",!1);j.backCompat(Eu,{angleDeg:"angle",getAngleDeg:"getAngle",setAngleDeg:"setAngle"});function NA(){this.r=0,this.g=0,this.b=0,this.a=0,this.next=null}var xbe=[512,512,456,512,328,456,335,512,405,328,271,456,388,335,292,512,454,405,364,328,298,271,496,456,420,388,360,335,312,292,273,512,482,454,428,405,383,364,345,328,312,298,284,271,259,496,475,456,437,420,404,388,374,360,347,335,323,312,302,292,282,273,265,512,497,482,468,454,441,428,417,405,394,383,373,364,354,345,337,328,320,312,305,298,291,284,278,271,265,259,507,496,485,475,465,456,446,437,428,420,412,404,396,388,381,374,367,360,354,347,341,335,329,323,318,312,307,302,297,292,287,282,278,273,269,265,261,512,505,497,489,482,475,468,461,454,447,441,435,428,422,417,411,405,399,394,389,383,378,373,368,364,359,354,350,345,341,337,332,328,324,320,316,312,309,305,301,298,294,291,287,284,281,278,274,271,268,265,262,259,257,507,501,496,491,485,480,475,470,465,460,456,451,446,442,437,433,428,424,420,416,412,408,404,400,396,392,388,385,381,377,374,370,367,363,360,357,354,350,347,344,341,338,335,332,329,326,323,320,318,315,312,310,307,304,302,299,297,294,292,289,287,285,282,280,278,275,273,271,269,267,265,263,261,259],bbe=[9,11,12,13,13,14,14,15,15,15,15,16,16,16,16,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24];function Sbe(e,t){var n=e.data,r=e.width,i=e.height,o,a,s,l,d,p,g,m,y,b,S,E,P,k,L,I,O,N,D,F,U,W,q,pe,fe=t+t+1,ye=r-1,Pe=i-1,xe=t+1,Y=xe*(xe+1)/2,V=new NA,ae=null,oe=V,X=null,me=null,ve=xbe[t],Se=bbe[t];for(s=1;s>Se,q!==0?(q=255/q,n[p]=(m*ve>>Se)*q,n[p+1]=(y*ve>>Se)*q,n[p+2]=(b*ve>>Se)*q):n[p]=n[p+1]=n[p+2]=0,m-=E,y-=P,b-=k,S-=L,E-=X.r,P-=X.g,k-=X.b,L-=X.a,l=g+((l=o+t+1)>Se,q>0?(q=255/q,n[l]=(m*ve>>Se)*q,n[l+1]=(y*ve>>Se)*q,n[l+2]=(b*ve>>Se)*q):n[l]=n[l+1]=n[l+2]=0,m-=E,y-=P,b-=k,S-=L,E-=X.r,P-=X.g,k-=X.b,L-=X.a,l=o+((l=a+xe)0&&Sbe(t,n)};j.addGetterSetter(ze,"blurRadius",0,De(),j.afterSetFilter);const Cbe=function(e){var t=this.brightness()*255,n=e.data,r=n.length,i;for(i=0;i255?255:i,o=o<0?0:o>255?255:o,a=a<0?0:a>255?255:a,n[s]=i,n[s+1]=o,n[s+2]=a};j.addGetterSetter(ze,"contrast",0,De(),j.afterSetFilter);const kbe=function(e){var t=this.embossStrength()*10,n=this.embossWhiteLevel()*255,r=this.embossDirection(),i=this.embossBlend(),o=0,a=0,s=e.data,l=e.width,d=e.height,p=l*4,g=d;switch(r){case"top-left":o=-1,a=-1;break;case"top":o=-1,a=0;break;case"top-right":o=-1,a=1;break;case"right":o=0,a=1;break;case"bottom-right":o=1,a=1;break;case"bottom":o=1,a=0;break;case"bottom-left":o=1,a=-1;break;case"left":o=0,a=-1;break;default:se.error("Unknown emboss direction: "+r)}do{var m=(g-1)*p,y=o;g+y<1&&(y=0),g+y>d&&(y=0);var b=(g-1+y)*l*4,S=l;do{var E=m+(S-1)*4,P=a;S+P<1&&(P=0),S+P>l&&(P=0);var k=b+(S-1+P)*4,L=s[E]-s[k],I=s[E+1]-s[k+1],O=s[E+2]-s[k+2],N=L,D=N>0?N:-N,F=I>0?I:-I,U=O>0?O:-O;if(F>D&&(N=I),U>D&&(N=O),N*=t,i){var W=s[E]+N,q=s[E+1]+N,pe=s[E+2]+N;s[E]=W>255?255:W<0?0:W,s[E+1]=q>255?255:q<0?0:q,s[E+2]=pe>255?255:pe<0?0:pe}else{var fe=n-N;fe<0?fe=0:fe>255&&(fe=255),s[E]=s[E+1]=s[E+2]=fe}}while(--S)}while(--g)};j.addGetterSetter(ze,"embossStrength",.5,De(),j.afterSetFilter);j.addGetterSetter(ze,"embossWhiteLevel",.5,De(),j.afterSetFilter);j.addGetterSetter(ze,"embossDirection","top-left",null,j.afterSetFilter);j.addGetterSetter(ze,"embossBlend",!1,null,j.afterSetFilter);function BS(e,t,n,r,i){var o=n-t,a=i-r,s;return o===0?r+a/2:a===0?r:(s=(e-t)/o,s=a*s+r,s)}const Ebe=function(e){var t=e.data,n=t.length,r=t[0],i=r,o,a=t[1],s=a,l,d=t[2],p=d,g,m,y=this.enhance();if(y!==0){for(m=0;mi&&(i=o),l=t[m+1],ls&&(s=l),g=t[m+2],gp&&(p=g);i===r&&(i=255,r=0),s===a&&(s=255,a=0),p===d&&(p=255,d=0);var b,S,E,P,k,L,I,O,N;for(y>0?(S=i+y*(255-i),E=r-y*(r-0),k=s+y*(255-s),L=a-y*(a-0),O=p+y*(255-p),N=d-y*(d-0)):(b=(i+r)*.5,S=i+y*(i-b),E=r+y*(r-b),P=(s+a)*.5,k=s+y*(s-P),L=a+y*(a-P),I=(p+d)*.5,O=p+y*(p-I),N=d+y*(d-I)),m=0;mP?E:P;var k=a,L=o,I,O,N=360/L*Math.PI/180,D,F;for(O=0;OL?k:L;var I=a,O=o,N,D,F=n.polarRotation||0,U,W;for(p=0;pt&&(I=L,O=0,N=-1),i=0;i=0&&y=0&&b=0&&y=0&&b=255*4?255:0}return a}function Bbe(e,t,n){for(var r=[.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111],i=Math.round(Math.sqrt(r.length)),o=Math.floor(i/2),a=[],s=0;s=0&&y=0&&b=n))for(o=S;o=r||(a=(n*o+i)*4,s+=I[a+0],l+=I[a+1],d+=I[a+2],p+=I[a+3],L+=1);for(s=s/L,l=l/L,d=d/L,p=p/L,i=y;i=n))for(o=S;o=r||(a=(n*o+i)*4,I[a+0]=s,I[a+1]=l,I[a+2]=d,I[a+3]=p)}};j.addGetterSetter(ze,"pixelSize",8,De(),j.afterSetFilter);const Vbe=function(e){var t=Math.round(this.levels()*254)+1,n=e.data,r=n.length,i=255/t,o;for(o=0;o255?255:e<0?0:Math.round(e)});j.addGetterSetter(ze,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});j.addGetterSetter(ze,"blue",0,v$,j.afterSetFilter);const Gbe=function(e){var t=e.data,n=t.length,r=this.red(),i=this.green(),o=this.blue(),a=this.alpha(),s,l;for(s=0;s255?255:e<0?0:Math.round(e)});j.addGetterSetter(ze,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});j.addGetterSetter(ze,"blue",0,v$,j.afterSetFilter);j.addGetterSetter(ze,"alpha",1,function(e){return this._filterUpToDate=!1,e>1?1:e<0?0:e});const jbe=function(e){var t=e.data,n=t.length,r,i,o,a;for(r=0;r127&&(d=255-d),p>127&&(p=255-p),g>127&&(g=255-g),t[l]=d,t[l+1]=p,t[l+2]=g}while(--s)}while(--o)},Kbe=function(e){var t=this.threshold()*255,n=e.data,r=n.length,i;for(i=0;iee||T[$]!==M[ee]){var le=` +`+T[$].replace(" at new "," at ");return c.displayName&&le.includes("")&&(le=le.replace("",c.displayName)),le}while(1<=$&&0<=ee);break}}}finally{As=!1,Error.prepareStackTrace=v}return(c=c?c.displayName||c.name:"")?Il(c):""}var ah=Object.prototype.hasOwnProperty,Au=[],Is=-1;function Mo(c){return{current:c}}function Cn(c){0>Is||(c.current=Au[Is],Au[Is]=null,Is--)}function gn(c,f){Is++,Au[Is]=c.current,c.current=f}var Ro={},Cr=Mo(Ro),Vr=Mo(!1),Oo=Ro;function Ms(c,f){var v=c.type.contextTypes;if(!v)return Ro;var _=c.stateNode;if(_&&_.__reactInternalMemoizedUnmaskedChildContext===f)return _.__reactInternalMemoizedMaskedChildContext;var T={},M;for(M in v)T[M]=f[M];return _&&(c=c.stateNode,c.__reactInternalMemoizedUnmaskedChildContext=f,c.__reactInternalMemoizedMaskedChildContext=T),T}function Ur(c){return c=c.childContextTypes,c!=null}function Ka(){Cn(Vr),Cn(Cr)}function hd(c,f,v){if(Cr.current!==Ro)throw Error(a(168));gn(Cr,f),gn(Vr,v)}function Rl(c,f,v){var _=c.stateNode;if(f=f.childContextTypes,typeof _.getChildContext!="function")return v;_=_.getChildContext();for(var T in _)if(!(T in f))throw Error(a(108,F(c)||"Unknown",T));return o({},v,_)}function Za(c){return c=(c=c.stateNode)&&c.__reactInternalMemoizedMergedChildContext||Ro,Oo=Cr.current,gn(Cr,c),gn(Vr,Vr.current),!0}function pd(c,f,v){var _=c.stateNode;if(!_)throw Error(a(169));v?(c=Rl(c,f,Oo),_.__reactInternalMemoizedMergedChildContext=c,Cn(Vr),Cn(Cr),gn(Cr,c)):Cn(Vr),gn(Vr,v)}var ci=Math.clz32?Math.clz32:gd,sh=Math.log,lh=Math.LN2;function gd(c){return c>>>=0,c===0?32:31-(sh(c)/lh|0)|0}var Rs=64,so=4194304;function Os(c){switch(c&-c){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return c&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return c&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return c}}function Ol(c,f){var v=c.pendingLanes;if(v===0)return 0;var _=0,T=c.suspendedLanes,M=c.pingedLanes,$=v&268435455;if($!==0){var ee=$&~T;ee!==0?_=Os(ee):(M&=$,M!==0&&(_=Os(M)))}else $=v&~T,$!==0?_=Os($):M!==0&&(_=Os(M));if(_===0)return 0;if(f!==0&&f!==_&&(f&T)===0&&(T=_&-_,M=f&-f,T>=M||T===16&&(M&4194240)!==0))return f;if((_&4)!==0&&(_|=v&16),f=c.entangledLanes,f!==0)for(c=c.entanglements,f&=_;0v;v++)f.push(c);return f}function ga(c,f,v){c.pendingLanes|=f,f!==536870912&&(c.suspendedLanes=0,c.pingedLanes=0),c=c.eventTimes,f=31-ci(f),c[f]=v}function vd(c,f){var v=c.pendingLanes&~f;c.pendingLanes=f,c.suspendedLanes=0,c.pingedLanes=0,c.expiredLanes&=f,c.mutableReadLanes&=f,c.entangledLanes&=f,f=c.entanglements;var _=c.eventTimes;for(c=c.expirationTimes;0>=$,T-=$,Wi=1<<32-ci(f)+T|v<Ot?(Dr=xt,xt=null):Dr=xt.sibling;var Ut=Ue(ce,xt,he[Ot],Be);if(Ut===null){xt===null&&(xt=Dr);break}c&&xt&&Ut.alternate===null&&f(ce,xt),re=M(Ut,re,Ot),_t===null?ke=Ut:_t.sibling=Ut,_t=Ut,xt=Dr}if(Ot===he.length)return v(ce,xt),Rn&&Ns(ce,Ot),ke;if(xt===null){for(;OtOt?(Dr=xt,xt=null):Dr=xt.sibling;var is=Ue(ce,xt,Ut.value,Be);if(is===null){xt===null&&(xt=Dr);break}c&&xt&&is.alternate===null&&f(ce,xt),re=M(is,re,Ot),_t===null?ke=is:_t.sibling=is,_t=is,xt=Dr}if(Ut.done)return v(ce,xt),Rn&&Ns(ce,Ot),ke;if(xt===null){for(;!Ut.done;Ot++,Ut=he.next())Ut=Ct(ce,Ut.value,Be),Ut!==null&&(re=M(Ut,re,Ot),_t===null?ke=Ut:_t.sibling=Ut,_t=Ut);return Rn&&Ns(ce,Ot),ke}for(xt=_(ce,xt);!Ut.done;Ot++,Ut=he.next())Ut=Nn(xt,ce,Ot,Ut.value,Be),Ut!==null&&(c&&Ut.alternate!==null&&xt.delete(Ut.key===null?Ot:Ut.key),re=M(Ut,re,Ot),_t===null?ke=Ut:_t.sibling=Ut,_t=Ut);return c&&xt.forEach(function(ii){return f(ce,ii)}),Rn&&Ns(ce,Ot),ke}function Go(ce,re,he,Be){if(typeof he=="object"&&he!==null&&he.type===p&&he.key===null&&(he=he.props.children),typeof he=="object"&&he!==null){switch(he.$$typeof){case l:e:{for(var ke=he.key,_t=re;_t!==null;){if(_t.key===ke){if(ke=he.type,ke===p){if(_t.tag===7){v(ce,_t.sibling),re=T(_t,he.props.children),re.return=ce,ce=re;break e}}else if(_t.elementType===ke||typeof ke=="object"&&ke!==null&&ke.$$typeof===L&&c1(ke)===_t.type){v(ce,_t.sibling),re=T(_t,he.props),re.ref=ya(ce,_t,he),re.return=ce,ce=re;break e}v(ce,_t);break}else f(ce,_t);_t=_t.sibling}he.type===p?(re=Zs(he.props.children,ce.mode,Be,he.key),re.return=ce,ce=re):(Be=Gd(he.type,he.key,he.props,null,ce.mode,Be),Be.ref=ya(ce,re,he),Be.return=ce,ce=Be)}return $(ce);case d:e:{for(_t=he.key;re!==null;){if(re.key===_t)if(re.tag===4&&re.stateNode.containerInfo===he.containerInfo&&re.stateNode.implementation===he.implementation){v(ce,re.sibling),re=T(re,he.children||[]),re.return=ce,ce=re;break e}else{v(ce,re);break}else f(ce,re);re=re.sibling}re=Ys(he,ce.mode,Be),re.return=ce,ce=re}return $(ce);case L:return _t=he._init,Go(ce,re,_t(he._payload),Be)}if(Pe(he))return _n(ce,re,he,Be);if(N(he))return Xn(ce,re,he,Be);Mi(ce,he)}return typeof he=="string"&&he!==""||typeof he=="number"?(he=""+he,re!==null&&re.tag===6?(v(ce,re.sibling),re=T(re,he),re.return=ce,ce=re):(v(ce,re),re=Zh(he,ce.mode,Be),re.return=ce,ce=re),$(ce)):v(ce,re)}return Go}var Hu=Hv(!0),Wv=Hv(!1),Td={},fo=Mo(Td),xa=Mo(Td),Q=Mo(Td);function ge(c){if(c===Td)throw Error(a(174));return c}function de(c,f){gn(Q,f),gn(xa,c),gn(fo,Td),c=Y(f),Cn(fo),gn(fo,c)}function Ve(){Cn(fo),Cn(xa),Cn(Q)}function yt(c){var f=ge(Q.current),v=ge(fo.current);f=V(v,c.type,f),v!==f&&(gn(xa,c),gn(fo,f))}function Yt(c){xa.current===c&&(Cn(fo),Cn(xa))}var Pt=Mo(0);function on(c){for(var f=c;f!==null;){if(f.tag===13){var v=f.memoizedState;if(v!==null&&(v=v.dehydrated,v===null||Tu(v)||fd(v)))return f}else if(f.tag===19&&f.memoizedProps.revealOrder!==void 0){if((f.flags&128)!==0)return f}else if(f.child!==null){f.child.return=f,f=f.child;continue}if(f===c)break;for(;f.sibling===null;){if(f.return===null||f.return===c)return null;f=f.return}f.sibling.return=f.return,f=f.sibling}return null}var Ld=[];function d1(){for(var c=0;cv?v:4,c(!0);var _=Wu.transition;Wu.transition={};try{c(!1),f()}finally{zt=v,Wu.transition=_}}function Zu(){return hi().memoizedState}function x1(c,f,v){var _=Tr(c);if(v={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null},Xu(c))Qu(f,v);else if(v=$u(c,f,v,_),v!==null){var T=ri();go(v,c,_,T),Nd(v,f,_)}}function Yu(c,f,v){var _=Tr(c),T={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null};if(Xu(c))Qu(f,T);else{var M=c.alternate;if(c.lanes===0&&(M===null||M.lanes===0)&&(M=f.lastRenderedReducer,M!==null))try{var $=f.lastRenderedState,ee=M($,v);if(T.hasEagerState=!0,T.eagerState=ee,H(ee,$)){var le=f.interleaved;le===null?(T.next=T,Ed(f)):(T.next=le.next,le.next=T),f.interleaved=T;return}}catch{}finally{}v=$u(c,f,T,_),v!==null&&(T=ri(),go(v,c,_,T),Nd(v,f,_))}}function Xu(c){var f=c.alternate;return c===mn||f!==null&&f===mn}function Qu(c,f){Ad=Qt=!0;var v=c.pending;v===null?f.next=f:(f.next=v.next,v.next=f),c.pending=f}function Nd(c,f,v){if((v&4194240)!==0){var _=f.lanes;_&=c.pendingLanes,v|=_,f.lanes=v,Nl(c,v)}}var Qa={readContext:Vi,useCallback:Jr,useContext:Jr,useEffect:Jr,useImperativeHandle:Jr,useInsertionEffect:Jr,useLayoutEffect:Jr,useMemo:Jr,useReducer:Jr,useRef:Jr,useState:Jr,useDebugValue:Jr,useDeferredValue:Jr,useTransition:Jr,useMutableSource:Jr,useSyncExternalStore:Jr,useId:Jr,unstable_isNewReconciler:!1},Px={readContext:Vi,useCallback:function(c,f){return jr().memoizedState=[c,f===void 0?null:f],c},useContext:Vi,useEffect:Gv,useImperativeHandle:function(c,f,v){return v=v!=null?v.concat([c]):null,Bl(4194308,4,gr.bind(null,f,c),v)},useLayoutEffect:function(c,f){return Bl(4194308,4,c,f)},useInsertionEffect:function(c,f){return Bl(4,2,c,f)},useMemo:function(c,f){var v=jr();return f=f===void 0?null:f,c=c(),v.memoizedState=[c,f],c},useReducer:function(c,f,v){var _=jr();return f=v!==void 0?v(f):f,_.memoizedState=_.baseState=f,c={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:c,lastRenderedState:f},_.queue=c,c=c.dispatch=x1.bind(null,mn,c),[_.memoizedState,c]},useRef:function(c){var f=jr();return c={current:c},f.memoizedState=c},useState:Uv,useDebugValue:m1,useDeferredValue:function(c){return jr().memoizedState=c},useTransition:function(){var c=Uv(!1),f=c[0];return c=y1.bind(null,c[1]),jr().memoizedState=c,[f,c]},useMutableSource:function(){},useSyncExternalStore:function(c,f,v){var _=mn,T=jr();if(Rn){if(v===void 0)throw Error(a(407));v=v()}else{if(v=f(),Nr===null)throw Error(a(349));(Fl&30)!==0||g1(_,f,v)}T.memoizedState=v;var M={value:v,getSnapshot:f};return T.queue=M,Gv(Fs.bind(null,_,M,c),[c]),_.flags|=2048,Rd(9,qu.bind(null,_,M,v,f),void 0,null),v},useId:function(){var c=jr(),f=Nr.identifierPrefix;if(Rn){var v=ma,_=Wi;v=(_&~(1<<32-ci(_)-1)).toString(32)+v,f=":"+f+"R"+v,v=Vu++,0Bh&&(f.flags|=128,_=!0,tc(T,!1),f.lanes=4194304)}else{if(!_)if(c=on(M),c!==null){if(f.flags|=128,_=!0,c=c.updateQueue,c!==null&&(f.updateQueue=c,f.flags|=4),tc(T,!0),T.tail===null&&T.tailMode==="hidden"&&!M.alternate&&!Rn)return ei(f),null}else 2*$n()-T.renderingStartTime>Bh&&v!==1073741824&&(f.flags|=128,_=!0,tc(T,!1),f.lanes=4194304);T.isBackwards?(M.sibling=f.child,f.child=M):(c=T.last,c!==null?c.sibling=M:f.child=M,T.last=M)}return T.tail!==null?(f=T.tail,T.rendering=f,T.tail=f.sibling,T.renderingStartTime=$n(),f.sibling=null,c=Pt.current,gn(Pt,_?c&1|2:c&1),f):(ei(f),null);case 22:case 23:return cc(),v=f.memoizedState!==null,c!==null&&c.memoizedState!==null!==v&&(f.flags|=8192),v&&(f.mode&1)!==0?(Gi&1073741824)!==0&&(ei(f),it&&f.subtreeFlags&6&&(f.flags|=8192)):ei(f),null;case 24:return null;case 25:return null}throw Error(a(156,f.tag))}function P1(c,f){switch(a1(f),f.tag){case 1:return Ur(f.type)&&Ka(),c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 3:return Ve(),Cn(Vr),Cn(Cr),d1(),c=f.flags,(c&65536)!==0&&(c&128)===0?(f.flags=c&-65537|128,f):null;case 5:return Yt(f),null;case 13:if(Cn(Pt),c=f.memoizedState,c!==null&&c.dehydrated!==null){if(f.alternate===null)throw Error(a(340));zu()}return c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 19:return Cn(Pt),null;case 4:return Ve(),null;case 10:return _d(f.type._context),null;case 22:case 23:return cc(),null;case 24:return null;default:return null}}var $s=!1,kr=!1,Rx=typeof WeakSet=="function"?WeakSet:Set,Ke=null;function nc(c,f){var v=c.ref;if(v!==null)if(typeof v=="function")try{v(null)}catch(_){Wn(c,f,_)}else v.current=null}function Ho(c,f,v){try{v()}catch(_){Wn(c,f,_)}}var Eh=!1;function Hl(c,f){for(ae(c.containerInfo),Ke=f;Ke!==null;)if(c=Ke,f=c.child,(c.subtreeFlags&1028)!==0&&f!==null)f.return=c,Ke=f;else for(;Ke!==null;){c=Ke;try{var v=c.alternate;if((c.flags&1024)!==0)switch(c.tag){case 0:case 11:case 15:break;case 1:if(v!==null){var _=v.memoizedProps,T=v.memoizedState,M=c.stateNode,$=M.getSnapshotBeforeUpdate(c.elementType===c.type?_:Do(c.type,_),T);M.__reactInternalSnapshotBeforeUpdate=$}break;case 3:it&&Ps(c.stateNode.containerInfo);break;case 5:case 6:case 4:case 17:break;default:throw Error(a(163))}}catch(ee){Wn(c,c.return,ee)}if(f=c.sibling,f!==null){f.return=c.return,Ke=f;break}Ke=c.return}return v=Eh,Eh=!1,v}function ti(c,f,v){var _=f.updateQueue;if(_=_!==null?_.lastEffect:null,_!==null){var T=_=_.next;do{if((T.tag&c)===c){var M=T.destroy;T.destroy=void 0,M!==void 0&&Ho(f,v,M)}T=T.next}while(T!==_)}}function Ph(c,f){if(f=f.updateQueue,f=f!==null?f.lastEffect:null,f!==null){var v=f=f.next;do{if((v.tag&c)===c){var _=v.create;v.destroy=_()}v=v.next}while(v!==f)}}function Th(c){var f=c.ref;if(f!==null){var v=c.stateNode;switch(c.tag){case 5:c=xe(v);break;default:c=v}typeof f=="function"?f(c):f.current=c}}function T1(c){var f=c.alternate;f!==null&&(c.alternate=null,T1(f)),c.child=null,c.deletions=null,c.sibling=null,c.tag===5&&(f=c.stateNode,f!==null&&rt(f)),c.stateNode=null,c.return=null,c.dependencies=null,c.memoizedProps=null,c.memoizedState=null,c.pendingProps=null,c.stateNode=null,c.updateQueue=null}function rc(c){return c.tag===5||c.tag===3||c.tag===4}function es(c){e:for(;;){for(;c.sibling===null;){if(c.return===null||rc(c.return))return null;c=c.return}for(c.sibling.return=c.return,c=c.sibling;c.tag!==5&&c.tag!==6&&c.tag!==18;){if(c.flags&2||c.child===null||c.tag===4)continue e;c.child.return=c,c=c.child}if(!(c.flags&2))return c.stateNode}}function Lh(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?Fe(v,c,f):kt(v,c);else if(_!==4&&(c=c.child,c!==null))for(Lh(c,f,v),c=c.sibling;c!==null;)Lh(c,f,v),c=c.sibling}function L1(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?Mn(v,c,f):_e(v,c);else if(_!==4&&(c=c.child,c!==null))for(L1(c,f,v),c=c.sibling;c!==null;)L1(c,f,v),c=c.sibling}var vr=null,Wo=!1;function Vo(c,f,v){for(v=v.child;v!==null;)Er(c,f,v),v=v.sibling}function Er(c,f,v){if(Ft&&typeof Ft.onCommitFiberUnmount=="function")try{Ft.onCommitFiberUnmount(rn,v)}catch{}switch(v.tag){case 5:kr||nc(v,f);case 6:if(it){var _=vr,T=Wo;vr=null,Vo(c,f,v),vr=_,Wo=T,vr!==null&&(Wo?Xe(vr,v.stateNode):lt(vr,v.stateNode))}else Vo(c,f,v);break;case 18:it&&vr!==null&&(Wo?t1(vr,v.stateNode):e1(vr,v.stateNode));break;case 4:it?(_=vr,T=Wo,vr=v.stateNode.containerInfo,Wo=!0,Vo(c,f,v),vr=_,Wo=T):(At&&(_=v.stateNode.containerInfo,T=pa(_),Pu(_,T)),Vo(c,f,v));break;case 0:case 11:case 14:case 15:if(!kr&&(_=v.updateQueue,_!==null&&(_=_.lastEffect,_!==null))){T=_=_.next;do{var M=T,$=M.destroy;M=M.tag,$!==void 0&&((M&2)!==0||(M&4)!==0)&&Ho(v,f,$),T=T.next}while(T!==_)}Vo(c,f,v);break;case 1:if(!kr&&(nc(v,f),_=v.stateNode,typeof _.componentWillUnmount=="function"))try{_.props=v.memoizedProps,_.state=v.memoizedState,_.componentWillUnmount()}catch(ee){Wn(v,f,ee)}Vo(c,f,v);break;case 21:Vo(c,f,v);break;case 22:v.mode&1?(kr=(_=kr)||v.memoizedState!==null,Vo(c,f,v),kr=_):Vo(c,f,v);break;default:Vo(c,f,v)}}function Ah(c){var f=c.updateQueue;if(f!==null){c.updateQueue=null;var v=c.stateNode;v===null&&(v=c.stateNode=new Rx),f.forEach(function(_){var T=u2.bind(null,c,_);v.has(_)||(v.add(_),_.then(T,T))})}}function ho(c,f){var v=f.deletions;if(v!==null)for(var _=0;_";case Oh:return":has("+(M1(c)||"")+")";case Nh:return'[role="'+c.value+'"]';case Dh:return'"'+c.value+'"';case ic:return'[data-testname="'+c.value+'"]';default:throw Error(a(365))}}function oc(c,f){var v=[];c=[c,0];for(var _=0;_T&&(T=$),_&=~M}if(_=T,_=$n()-_,_=(120>_?120:480>_?480:1080>_?1080:1920>_?1920:3e3>_?3e3:4320>_?4320:1960*Ox(_/1960))-_,10<_){c.timeoutHandle=ut(Ks.bind(null,c,gi,ns),_);break}Ks(c,gi,ns);break;case 5:Ks(c,gi,ns);break;default:throw Error(a(329))}}}return Kr(c,$n()),c.callbackNode===v?Wh.bind(null,c):null}function Vh(c,f){var v=lc;return c.current.memoizedState.isDehydrated&&(js(c,f).flags|=256),c=dc(c,f),c!==2&&(f=gi,gi=v,f!==null&&Uh(f)),c}function Uh(c){gi===null?gi=c:gi.push.apply(gi,c)}function ji(c){for(var f=c;;){if(f.flags&16384){var v=f.updateQueue;if(v!==null&&(v=v.stores,v!==null))for(var _=0;_c?16:c,vt===null)var _=!1;else{if(c=vt,vt=null,$h=0,(Rt&6)!==0)throw Error(a(331));var T=Rt;for(Rt|=4,Ke=c.current;Ke!==null;){var M=Ke,$=M.child;if((Ke.flags&16)!==0){var ee=M.deletions;if(ee!==null){for(var le=0;le$n()-N1?js(c,0):O1|=v),Kr(c,f)}function $1(c,f){f===0&&((c.mode&1)===0?f=1:(f=so,so<<=1,(so&130023424)===0&&(so=4194304)));var v=ri();c=zo(c,f),c!==null&&(ga(c,f,v),Kr(c,v))}function Dx(c){var f=c.memoizedState,v=0;f!==null&&(v=f.retryLane),$1(c,v)}function u2(c,f){var v=0;switch(c.tag){case 13:var _=c.stateNode,T=c.memoizedState;T!==null&&(v=T.retryLane);break;case 19:_=c.stateNode;break;default:throw Error(a(314))}_!==null&&_.delete(f),$1(c,v)}var H1;H1=function(c,f,v){if(c!==null)if(c.memoizedProps!==f.pendingProps||Vr.current)Ri=!0;else{if((c.lanes&v)===0&&(f.flags&128)===0)return Ri=!1,Ix(c,f,v);Ri=(c.flags&131072)!==0}else Ri=!1,Rn&&(f.flags&1048576)!==0&&o1(f,pr,f.index);switch(f.lanes=0,f.tag){case 2:var _=f.type;ba(c,f),c=f.pendingProps;var T=Ms(f,Cr.current);Bu(f,v),T=h1(null,f,_,c,T,v);var M=Uu();return f.flags|=1,typeof T=="object"&&T!==null&&typeof T.render=="function"&&T.$$typeof===void 0?(f.tag=1,f.memoizedState=null,f.updateQueue=null,Ur(_)?(M=!0,Za(f)):M=!1,f.memoizedState=T.state!==null&&T.state!==void 0?T.state:null,l1(f),T.updater=Fo,f.stateNode=T,T._reactInternals=f,u1(f,_,c,v),f=Bo(null,f,_,!0,M,v)):(f.tag=0,Rn&&M&&di(f),pi(null,f,T,v),f=f.child),f;case 16:_=f.elementType;e:{switch(ba(c,f),c=f.pendingProps,T=_._init,_=T(_._payload),f.type=_,T=f.tag=qh(_),c=Do(_,c),T){case 0:f=w1(null,f,_,c,v);break e;case 1:f=e2(null,f,_,c,v);break e;case 11:f=Yv(null,f,_,c,v);break e;case 14:f=Bs(null,f,_,Do(_.type,c),v);break e}throw Error(a(306,_,""))}return f;case 0:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Do(_,T),w1(c,f,_,T,v);case 1:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Do(_,T),e2(c,f,_,T,v);case 3:e:{if(t2(f),c===null)throw Error(a(387));_=f.pendingProps,M=f.memoizedState,T=M.element,zv(c,f),vh(f,_,null,v);var $=f.memoizedState;if(_=$.element,wt&&M.isDehydrated)if(M={element:_,isDehydrated:!1,cache:$.cache,pendingSuspenseBoundaries:$.pendingSuspenseBoundaries,transitions:$.transitions},f.updateQueue.baseState=M,f.memoizedState=M,f.flags&256){T=Ju(Error(a(423)),f),f=n2(c,f,_,v,T);break e}else if(_!==T){T=Ju(Error(a(424)),f),f=n2(c,f,_,v,T);break e}else for(wt&&(uo=q0(f.stateNode.containerInfo),Hn=f,Rn=!0,Ii=null,co=!1),v=Wv(f,null,_,v),f.child=v;v;)v.flags=v.flags&-3|4096,v=v.sibling;else{if(zu(),_===T){f=Ja(c,f,v);break e}pi(c,f,_,v)}f=f.child}return f;case 5:return yt(f),c===null&&bd(f),_=f.type,T=f.pendingProps,M=c!==null?c.memoizedProps:null,$=T.children,He(_,T)?$=null:M!==null&&He(_,M)&&(f.flags|=32),Jv(c,f),pi(c,f,$,v),f.child;case 6:return c===null&&bd(f),null;case 13:return r2(c,f,v);case 4:return de(f,f.stateNode.containerInfo),_=f.pendingProps,c===null?f.child=Hu(f,null,_,v):pi(c,f,_,v),f.child;case 11:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Do(_,T),Yv(c,f,_,T,v);case 7:return pi(c,f,f.pendingProps,v),f.child;case 8:return pi(c,f,f.pendingProps.children,v),f.child;case 12:return pi(c,f,f.pendingProps.children,v),f.child;case 10:e:{if(_=f.type._context,T=f.pendingProps,M=f.memoizedProps,$=T.value,Dv(f,_,$),M!==null)if(H(M.value,$)){if(M.children===T.children&&!Vr.current){f=Ja(c,f,v);break e}}else for(M=f.child,M!==null&&(M.return=f);M!==null;){var ee=M.dependencies;if(ee!==null){$=M.child;for(var le=ee.firstContext;le!==null;){if(le.context===_){if(M.tag===1){le=Xa(-1,v&-v),le.tag=2;var Oe=M.updateQueue;if(Oe!==null){Oe=Oe.shared;var Ye=Oe.pending;Ye===null?le.next=le:(le.next=Ye.next,Ye.next=le),Oe.pending=le}}M.lanes|=v,le=M.alternate,le!==null&&(le.lanes|=v),kd(M.return,v,f),ee.lanes|=v;break}le=le.next}}else if(M.tag===10)$=M.type===f.type?null:M.child;else if(M.tag===18){if($=M.return,$===null)throw Error(a(341));$.lanes|=v,ee=$.alternate,ee!==null&&(ee.lanes|=v),kd($,v,f),$=M.sibling}else $=M.child;if($!==null)$.return=M;else for($=M;$!==null;){if($===f){$=null;break}if(M=$.sibling,M!==null){M.return=$.return,$=M;break}$=$.return}M=$}pi(c,f,T.children,v),f=f.child}return f;case 9:return T=f.type,_=f.pendingProps.children,Bu(f,v),T=Vi(T),_=_(T),f.flags|=1,pi(c,f,_,v),f.child;case 14:return _=f.type,T=Do(_,f.pendingProps),T=Do(_.type,T),Bs(c,f,_,T,v);case 15:return Xv(c,f,f.type,f.pendingProps,v);case 17:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Do(_,T),ba(c,f),f.tag=1,Ur(_)?(c=!0,Za(f)):c=!1,Bu(f,v),Bv(f,_,T),u1(f,_,T,v),Bo(null,f,_,!0,c,v);case 19:return o2(c,f,v);case 22:return Qv(c,f,v)}throw Error(a(156,f.tag))};function vi(c,f){return Ou(c,f)}function Sa(c,f,v,_){this.tag=c,this.key=v,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=f,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=_,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function mo(c,f,v,_){return new Sa(c,f,v,_)}function W1(c){return c=c.prototype,!(!c||!c.isReactComponent)}function qh(c){if(typeof c=="function")return W1(c)?1:0;if(c!=null){if(c=c.$$typeof,c===S)return 11;if(c===k)return 14}return 2}function qi(c,f){var v=c.alternate;return v===null?(v=mo(c.tag,f,c.key,c.mode),v.elementType=c.elementType,v.type=c.type,v.stateNode=c.stateNode,v.alternate=c,c.alternate=v):(v.pendingProps=f,v.type=c.type,v.flags=0,v.subtreeFlags=0,v.deletions=null),v.flags=c.flags&14680064,v.childLanes=c.childLanes,v.lanes=c.lanes,v.child=c.child,v.memoizedProps=c.memoizedProps,v.memoizedState=c.memoizedState,v.updateQueue=c.updateQueue,f=c.dependencies,v.dependencies=f===null?null:{lanes:f.lanes,firstContext:f.firstContext},v.sibling=c.sibling,v.index=c.index,v.ref=c.ref,v}function Gd(c,f,v,_,T,M){var $=2;if(_=c,typeof c=="function")W1(c)&&($=1);else if(typeof c=="string")$=5;else e:switch(c){case p:return Zs(v.children,T,M,f);case g:$=8,T|=8;break;case m:return c=mo(12,v,f,T|2),c.elementType=m,c.lanes=M,c;case E:return c=mo(13,v,f,T),c.elementType=E,c.lanes=M,c;case P:return c=mo(19,v,f,T),c.elementType=P,c.lanes=M,c;case I:return Kh(v,T,M,f);default:if(typeof c=="object"&&c!==null)switch(c.$$typeof){case y:$=10;break e;case b:$=9;break e;case S:$=11;break e;case k:$=14;break e;case L:$=16,_=null;break e}throw Error(a(130,c==null?c:typeof c,""))}return f=mo($,v,f,T),f.elementType=c,f.type=_,f.lanes=M,f}function Zs(c,f,v,_){return c=mo(7,c,_,f),c.lanes=v,c}function Kh(c,f,v,_){return c=mo(22,c,_,f),c.elementType=I,c.lanes=v,c.stateNode={isHidden:!1},c}function Zh(c,f,v){return c=mo(6,c,null,f),c.lanes=v,c}function Ys(c,f,v){return f=mo(4,c.children!==null?c.children:[],c.key,f),f.lanes=v,f.stateNode={containerInfo:c.containerInfo,pendingChildren:null,implementation:c.implementation},f}function jd(c,f,v,_,T){this.tag=f,this.containerInfo=c,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=at,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Ru(0),this.expirationTimes=Ru(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ru(0),this.identifierPrefix=_,this.onRecoverableError=T,wt&&(this.mutableSourceEagerHydrationData=null)}function c2(c,f,v,_,T,M,$,ee,le){return c=new jd(c,f,v,ee,le),f===1?(f=1,M===!0&&(f|=8)):f=0,M=mo(3,null,null,f),c.current=M,M.stateNode=c,M.memoizedState={element:_,isDehydrated:v,cache:null,transitions:null,pendingSuspenseBoundaries:null},l1(M),c}function V1(c){if(!c)return Ro;c=c._reactInternals;e:{if(U(c)!==c||c.tag!==1)throw Error(a(170));var f=c;do{switch(f.tag){case 3:f=f.stateNode.context;break e;case 1:if(Ur(f.type)){f=f.stateNode.__reactInternalMemoizedMergedChildContext;break e}}f=f.return}while(f!==null);throw Error(a(171))}if(c.tag===1){var v=c.type;if(Ur(v))return Rl(c,v,f)}return f}function U1(c){var f=c._reactInternals;if(f===void 0)throw typeof c.render=="function"?Error(a(188)):(c=Object.keys(c).join(","),Error(a(268,c)));return c=pe(f),c===null?null:c.stateNode}function qd(c,f){if(c=c.memoizedState,c!==null&&c.dehydrated!==null){var v=c.retryLane;c.retryLane=v!==0&&v=Oe&&M>=Ct&&T<=Ye&&$<=Ue){c.splice(f,1);break}else if(_!==Oe||v.width!==le.width||Ue$){if(!(M!==Ct||v.height!==le.height||Ye<_||Oe>T)){Oe>_&&(le.width+=Oe-_,le.x=_),YeM&&(le.height+=Ct-M,le.y=M),Ue<$&&(le.height=$-Ct),c.splice(f,1);break}}}return c},n.findHostInstance=U1,n.findHostInstanceWithNoPortals=function(c){return c=q(c),c=c!==null?ye(c):null,c===null?null:c.stateNode},n.findHostInstanceWithWarning=function(c){return U1(c)},n.flushControlled=function(c){var f=Rt;Rt|=1;var v=ir.transition,_=zt;try{ir.transition=null,zt=1,c()}finally{zt=_,ir.transition=v,Rt=f,Rt===0&&(Us(),dt())}},n.flushPassiveEffects=Ul,n.flushSync=D1,n.focusWithin=function(c,f){if(!bt)throw Error(a(363));for(c=zh(c),f=oc(c,f),f=Array.from(f),c=0;cv&&(v=$)),$ ")+` + +No matching component was found for: + `)+c.join(" > ")}return null},n.getPublicRootInstance=function(c){if(c=c.current,!c.child)return null;switch(c.child.tag){case 5:return xe(c.child.stateNode);default:return c.child.stateNode}},n.injectIntoDevTools=function(c){if(c={bundleType:c.bundleType,version:c.version,rendererPackageName:c.rendererPackageName,rendererConfig:c.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:s.ReactCurrentDispatcher,findHostInstanceByFiber:Yh,findFiberByHostInstance:c.findFiberByHostInstance||G1,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0"},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")c=!1;else{var f=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(f.isDisabled||!f.supportsFiber)c=!0;else{try{rn=f.inject(c),Ft=f}catch{}c=!!f.checkDCE}}return c},n.isAlreadyRendering=function(){return!1},n.observeVisibleRects=function(c,f,v,_){if(!bt)throw Error(a(363));c=R1(c,f);var T=Vt(c,v,_).disconnect;return{disconnect:function(){T()}}},n.registerMutableSourceForHydration=function(c,f){var v=f._getVersion;v=v(f._source),c.mutableSourceEagerHydrationData==null?c.mutableSourceEagerHydrationData=[f,v]:c.mutableSourceEagerHydrationData.push(f,v)},n.runWithPriority=function(c,f){var v=zt;try{return zt=c,f()}finally{zt=v}},n.shouldError=function(){return null},n.shouldSuspend=function(){return!1},n.updateContainer=function(c,f,v,_){var T=f.current,M=ri(),$=Tr(T);return v=V1(v),f.context===null?f.context=v:f.pendingContext=v,f=Xa(M,$),f.payload={element:c},_=_===void 0?null:_,_!==null&&(f.callback=_),c=zs(T,f,$),c!==null&&(go(c,T,$,M),mh(c,T,$)),$},n};(function(e){e.exports=Zbe})(Z$);const Ybe=GC(Z$.exports);var o_={exports:{}},nh={};/** + * @license React + * react-reconciler-constants.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */nh.ConcurrentRoot=1;nh.ContinuousEventPriority=4;nh.DefaultEventPriority=16;nh.DiscreteEventPriority=1;nh.IdleEventPriority=536870912;nh.LegacyRoot=0;(function(e){e.exports=nh})(o_);const DA={children:!0,ref:!0,key:!0,style:!0,forwardedRef:!0,unstable_applyCache:!0,unstable_applyDrawHitFromCache:!0};let zA=!1,FA=!1;const a_=".react-konva-event",Xbe=`ReactKonva: You have a Konva node with draggable = true and position defined but no onDragMove or onDragEnd events are handled. +Position of a node will be changed during drag&drop, so you should update state of the react app as well. +Consider to add onDragMove or onDragEnd events. +For more info see: https://github.com/konvajs/react-konva/issues/256 +`,Qbe=`ReactKonva: You are using "zIndex" attribute for a Konva node. +react-konva may get confused with ordering. Just define correct order of elements in your render function of a component. +For more info see: https://github.com/konvajs/react-konva/issues/194 +`,Jbe={};function Cx(e,t,n=Jbe){if(!zA&&"zIndex"in t&&(console.warn(Qbe),zA=!0),!FA&&t.draggable){var r=t.x!==void 0||t.y!==void 0,i=t.onDragEnd||t.onDragMove;r&&!i&&(console.warn(Xbe),FA=!0)}for(var o in n)if(!DA[o]){var a=o.slice(0,2)==="on",s=n[o]!==t[o];if(a&&s){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),e.off(l,n[o])}var d=!t.hasOwnProperty(o);d&&e.setAttr(o,void 0)}var p=t._useStrictMode,g={},m=!1;const y={};for(var o in t)if(!DA[o]){var a=o.slice(0,2)==="on",b=n[o]!==t[o];if(a&&b){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),t[o]&&(y[l]=t[o])}!a&&(t[o]!==n[o]||p&&t[o]!==e.getAttr(o))&&(m=!0,g[o]=t[o])}m&&(e.setAttrs(g),cd(e));for(var l in y)e.on(l+a_,y[l])}function cd(e){if(!Je.autoDrawEnabled){var t=e.getLayer()||e.getStage();t&&t.batchDraw()}}const Y$={},eSe={};$f.Node.prototype._applyProps=Cx;function tSe(e,t){if(typeof t=="string"){console.error(`Do not use plain text as child of Konva.Node. You are using text: ${t}`);return}e.add(t),cd(e)}function nSe(e,t,n){let r=$f[e];r||(console.error(`Konva has no node with the type ${e}. Group will be used instead. If you use minimal version of react-konva, just import required nodes into Konva: "import "konva/lib/shapes/${e}" If you want to render DOM elements as part of canvas tree take a look into this demo: https://konvajs.github.io/docs/react/DOM_Portal.html`),r=$f.Group);const i={},o={};for(var a in t){var s=a.slice(0,2)==="on";s?o[a]=t[a]:i[a]=t[a]}const l=new r(i);return Cx(l,o),l}function rSe(e,t,n){console.error(`Text components are not supported for now in ReactKonva. Your text is: "${e}"`)}function iSe(e,t,n){return!1}function oSe(e){return e}function aSe(){return null}function sSe(){return null}function lSe(e,t,n,r){return eSe}function uSe(){}function cSe(e){}function dSe(e,t){return!1}function fSe(){return Y$}function hSe(){return Y$}const pSe=setTimeout,gSe=clearTimeout,mSe=-1;function vSe(e,t){return!1}const ySe=!1,xSe=!0,bSe=!0;function SSe(e,t){t.parent===e?t.moveToTop():e.add(t),cd(e)}function wSe(e,t){t.parent===e?t.moveToTop():e.add(t),cd(e)}function X$(e,t,n){t._remove(),e.add(t),t.setZIndex(n.getZIndex()),cd(e)}function CSe(e,t,n){X$(e,t,n)}function _Se(e,t){t.destroy(),t.off(a_),cd(e)}function kSe(e,t){t.destroy(),t.off(a_),cd(e)}function ESe(e,t,n){console.error(`Text components are not yet supported in ReactKonva. You text is: "${n}"`)}function PSe(e,t,n){}function TSe(e,t,n,r,i){Cx(e,i,r)}function LSe(e){e.hide(),cd(e)}function ASe(e){}function ISe(e,t){(t.visible==null||t.visible)&&e.show()}function MSe(e,t){}function RSe(e){}function OSe(){}const NSe=()=>o_.exports.DefaultEventPriority,DSe=Object.freeze(Object.defineProperty({__proto__:null,appendInitialChild:tSe,createInstance:nSe,createTextInstance:rSe,finalizeInitialChildren:iSe,getPublicInstance:oSe,prepareForCommit:aSe,preparePortalMount:sSe,prepareUpdate:lSe,resetAfterCommit:uSe,resetTextContent:cSe,shouldDeprioritizeSubtree:dSe,getRootHostContext:fSe,getChildHostContext:hSe,scheduleTimeout:pSe,cancelTimeout:gSe,noTimeout:mSe,shouldSetTextContent:vSe,isPrimaryRenderer:ySe,warnsIfNotActing:xSe,supportsMutation:bSe,appendChild:SSe,appendChildToContainer:wSe,insertBefore:X$,insertInContainerBefore:CSe,removeChild:_Se,removeChildFromContainer:kSe,commitTextUpdate:ESe,commitMount:PSe,commitUpdate:TSe,hideInstance:LSe,hideTextInstance:ASe,unhideInstance:ISe,unhideTextInstance:MSe,clearContainer:RSe,detachDeletedInstance:OSe,getCurrentEventPriority:NSe,now:Ip.exports.unstable_now,idlePriority:Ip.exports.unstable_IdlePriority,run:Ip.exports.unstable_runWithPriority},Symbol.toStringTag,{value:"Module"}));var zSe=Object.defineProperty,FSe=Object.defineProperties,BSe=Object.getOwnPropertyDescriptors,BA=Object.getOwnPropertySymbols,$Se=Object.prototype.hasOwnProperty,HSe=Object.prototype.propertyIsEnumerable,$A=(e,t,n)=>t in e?zSe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,HA=(e,t)=>{for(var n in t||(t={}))$Se.call(t,n)&&$A(e,n,t[n]);if(BA)for(var n of BA(t))HSe.call(t,n)&&$A(e,n,t[n]);return e},WSe=(e,t)=>FSe(e,BSe(t));function s_(e,t,n){if(!e)return;if(n(e)===!0)return e;let r=t?e.return:e.child;for(;r;){const i=s_(r,t,n);if(i)return i;r=t?null:r.sibling}}function Q$(e){try{return Object.defineProperties(e,{_currentRenderer:{get(){return null},set(){}},_currentRenderer2:{get(){return null},set(){}}})}catch{return e}}const l_=Q$(C.exports.createContext(null));class J$ extends C.exports.Component{render(){return w(l_.Provider,{value:this._reactInternals,children:this.props.children})}}const{ReactCurrentOwner:VSe,ReactCurrentDispatcher:USe}=C.exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function GSe(){const e=C.exports.useContext(l_);if(!e)throw new Error("its-fine: useFiber must be called within a !");const t=C.exports.useId();return C.exports.useMemo(()=>{var r;return(r=VSe.current)!=null?r:s_(e,!1,i=>{let o=i.memoizedState;for(;o;){if(o.memoizedState===t)return!0;o=o.next}})},[e,t])}const pg=[],WA=new WeakMap;function jSe(){var e;const t=GSe();pg.splice(0,pg.length),s_(t,!0,n=>{var r;const i=(r=n.type)==null?void 0:r._context;i&&i!==l_&&pg.push(Q$(i))});for(const n of pg){const r=(e=USe.current)==null?void 0:e.readContext(n);WA.set(n,r)}return C.exports.useMemo(()=>pg.reduce((n,r)=>i=>C.exports.createElement(n,null,C.exports.createElement(r.Provider,WSe(HA({},i),{value:WA.get(r)}))),n=>w(J$,{...HA({},n)})),[])}function qSe(e){const t=ne.useRef();return ne.useLayoutEffect(()=>{t.current=e}),t.current}const KSe=e=>{const t=ne.useRef(),n=ne.useRef(),r=ne.useRef(),i=qSe(e),o=jSe(),a=s=>{const{forwardedRef:l}=e;!l||(typeof l=="function"?l(s):l.current=s)};return ne.useLayoutEffect(()=>(n.current=new $f.Stage({width:e.width,height:e.height,container:t.current}),a(n.current),r.current=Og.createContainer(n.current,o_.exports.LegacyRoot,!1,null),Og.updateContainer(w(o,{children:e.children}),r.current),()=>{!$f.isBrowser||(a(null),Og.updateContainer(null,r.current,null),n.current.destroy())}),[]),ne.useLayoutEffect(()=>{a(n.current),Cx(n.current,e,i),Og.updateContainer(w(o,{children:e.children}),r.current,null)}),w("div",{ref:t,accessKey:e.accessKey,className:e.className,role:e.role,style:e.style,tabIndex:e.tabIndex,title:e.title})},$S="Layer",ZSe="Group",CC="Rect",_C="Circle",YSe="Line",HS="Image",XSe="Transformer",Og=Ybe(DSe);Og.injectIntoDevTools({findHostInstanceByFiber:()=>null,bundleType:0,version:ne.version,rendererPackageName:"react-konva"});const QSe=ne.forwardRef((e,t)=>w(J$,{children:w(KSe,{...e,forwardedRef:t})})),JSe=e=>{const{r:t,g:n,b:r,a:i}=e;return`rgba(${t}, ${n}, ${r}, ${i})`},eH=e=>{const{r:t,g:n,b:r}=e;return`rgba(${t}, ${n}, ${r})`},ewe=jt(e=>e.inpainting,e=>{const{lines:t,maskColor:n}=e;return{lines:t,maskColorString:eH(n)}}),twe=jt([e=>e.inpainting,e=>e.options,Ga],(e,t,n)=>{const{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,lines:d,pastLines:p,futureLines:g,shouldShowBoundingBoxFill:m}=e,{showDualDisplay:y}=t;return{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,canUndo:p.length>0,canRedo:g.length>0,isMaskEmpty:d.length===0,activeTabName:n,showDualDisplay:y,shouldShowBoundingBoxFill:m}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),nwe=jt(e=>e.inpainting,e=>{const{tool:t,brushSize:n,maskColor:r,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}=e;return{tool:t,brushSize:n,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,maskColor:r,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}},{memoizeOptions:{resultEqualityCheck:(e,t)=>{const{imageToInpaint:n,...r}=e,{imageToInpaint:i,...o}=t;return Wt.isEqual(r,o)&&n==i}}}),rwe=()=>{const{lines:e,maskColorString:t}=$e(ewe);return w(Fn,{children:e.map((n,r)=>w(YSe,{points:n.points,stroke:t,strokeWidth:n.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,listening:!1,globalCompositeOperation:n.tool==="brush"?"source-over":"destination-out"},r))})},iwe=jt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},shouldShowBrushPreview:i,brushSize:o,maskColor:a,tool:s,shouldShowBrush:l}=e;return{cursorPosition:t,width:n,height:r,shouldShowBrushPreview:i,brushSize:o,maskColorString:eH(a),tool:s,shouldShowBrush:l}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),owe=()=>{const{cursorPosition:e,width:t,height:n,shouldShowBrushPreview:r,brushSize:i,maskColorString:o,tool:a,shouldShowBrush:s}=$e(iwe);return!s||!(e||r)?null:w(_C,{x:e?e.x:t/2,y:e?e.y:n/2,radius:i/2,fill:o,listening:!1,globalCompositeOperation:a==="eraser"?"destination-out":"source-over"})},awe=jt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},shouldShowBrushPreview:i,brushSize:o,stageScale:a,shouldShowBrush:s}=e;return{cursorPosition:t,width:n,height:r,shouldShowBrushPreview:i,brushSize:o,strokeWidth:1/a,shouldShowBrush:s}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),swe=()=>{const{cursorPosition:e,width:t,height:n,shouldShowBrushPreview:r,brushSize:i,strokeWidth:o,shouldShowBrush:a}=$e(awe);return!a||!(e||r)?null:te(Fn,{children:[w(_C,{x:e?e.x:t/2,y:e?e.y:n/2,radius:i/2,stroke:"rgba(0,0,0,1)",strokeWidth:o,strokeEnabled:!0,listening:!1}),w(_C,{x:e?e.x:t/2,y:e?e.y:n/2,radius:1,fill:"rgba(0,0,0,1)",listening:!1})]})},lwe=()=>{const{tool:e,lines:t,cursorPosition:n,brushSize:r,canvasDimensions:{width:i,height:o},maskColor:a,shouldInvertMask:s,shouldShowMask:l,shouldShowBrushPreview:d,shouldShowCheckboardTransparency:p,imageToInpaint:g,shouldShowBrush:m,shouldShowBoundingBoxFill:y,shouldLockBoundingBox:b,stageScale:S,pastLines:E,futureLines:P,needsCache:k,isDrawing:L}=$e(I=>I.inpainting);return C.exports.useLayoutEffect(()=>{!ll.current||ll.current.cache({x:0,y:0,width:i,height:o})},[t,n,i,o,e,r,a,s,l,d,p,g,m,y,b,S,E,P,k,L]),C.exports.useEffect(()=>{const I=window.setTimeout(()=>{!ll.current||ll.current.cache({x:0,y:0,width:i,height:o})},0);return()=>{window.clearTimeout(I)}}),null},ky=e=>{const t=e.getPointerPosition(),n=e.getAbsoluteTransform().copy();if(!t||!n)return;const r=n.invert().point(t);return{x:Math.floor(r.x),y:Math.floor(r.y)}},uwe=4,tH=jt(e=>e.inpainting,e=>{const{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFill:r,canvasDimensions:i,stageScale:o,imageToInpaint:a,shouldLockBoundingBox:s}=e;return{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFillString:JSe(r),canvasDimensions:i,stageScale:o,imageToInpaint:a,dash:uwe/o,strokeWidth:1/o,shouldLockBoundingBox:s}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),cwe=()=>{const{boundingBoxCoordinate:e,boundingBoxDimensions:t,boundingBoxPreviewFillString:n,canvasDimensions:r}=$e(tH);return te(ZSe,{children:[w(CC,{x:0,y:0,height:r.height,width:r.width,fill:n}),w(CC,{x:e.x,y:e.y,width:t.width,height:t.height,fill:"rgb(255,255,255)",listening:!1,globalCompositeOperation:"destination-out"})]})},dwe=()=>{const e=ct(),{boundingBoxCoordinate:t,boundingBoxDimensions:n,strokeWidth:r,stageScale:i,imageToInpaint:o,shouldLockBoundingBox:a}=$e(tH),s=C.exports.useRef(null),l=C.exports.useRef(null);C.exports.useEffect(()=>{!s.current||!l.current||(s.current.nodes([l.current]),s.current.getLayer()?.batchDraw())},[a]),C.exports.useEffect(()=>()=>{const S=fs.current?.container();!S||(S.style.cursor="unset")},[a]);const d=64*i,p=C.exports.useCallback(S=>{e(VL({x:Math.floor(S.target.x()),y:Math.floor(S.target.y())}))},[e]),g=C.exports.useCallback(S=>{if(!o)return t;const{x:E,y:P}=S,k=o.width-n.width,L=o.height-n.height,I=Math.floor(Wt.clamp(E,0,k*i)),O=Math.floor(Wt.clamp(P,0,L*i));return{x:I,y:O}},[t,n,o,i]),m=C.exports.useCallback(()=>{if(!l.current)return;const S=l.current,E=S.scaleX(),P=S.scaleY(),k=Math.round(S.width()*E),L=Math.round(S.height()*P),I=Math.round(S.x()),O=Math.round(S.y());e(Tg({width:k,height:L})),e(VL({x:I,y:O})),S.scaleX(1),S.scaleY(1)},[e]),y=C.exports.useCallback((S,E,P)=>{const k=S.x%d,L=S.y%d,I=FL(E.x,d)+k,O=FL(E.y,d)+L,N=Math.abs(E.x-I),D=Math.abs(E.y-O),F=N!o||E.width+E.x>o.width*i||E.height+E.y>o.height*i||E.x<0||E.y<0?S:E,[o,i]);return te(Fn,{children:[w(CC,{x:t.x,y:t.y,width:n.width,height:n.height,ref:l,stroke:"white",strokeWidth:r,listening:!a,onMouseEnter:S=>{const E=S?.target?.getStage()?.container();!E||(E.style.cursor=a?"none":"move")},onMouseLeave:S=>{const E=S?.target?.getStage()?.container();!E||(E.style.cursor=a?"none":"default")},draggable:!a,onDragMove:p,dragBoundFunc:g,onTransform:m}),w(XSe,{ref:s,anchorCornerRadius:3,anchorFill:"rgba(212,216,234,1)",anchorSize:15,anchorStroke:"rgb(42,42,42)",borderDash:[4,4],borderStroke:"black",rotateEnabled:!1,borderEnabled:!0,flipEnabled:!1,ignoreStroke:!0,keepRatio:!1,listening:!a,enabledAnchors:a?[]:void 0,boundBoxFunc:b,anchorDragBoundFunc:y})]})},fwe=jt([e=>e.options,e=>e.inpainting,Ga],(e,t,n)=>{const{shouldShowMask:r,cursorPosition:i,shouldLockBoundingBox:o}=t;return{activeTabName:n,shouldShowMask:r,isCursorOnCanvas:Boolean(i),shouldLockBoundingBox:o}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),hwe=()=>{const e=ct(),{shouldShowMask:t,activeTabName:n,isCursorOnCanvas:r,shouldLockBoundingBox:i}=$e(fwe),o=C.exports.useRef(!1),a=C.exports.useRef(null);return C.exports.useEffect(()=>{const s=l=>{if(!(!["x"," "].includes(l.key)||n!=="inpainting"||!t)){if(!r){a.current||(a.current=l),o.current=!1;return}if(l.stopPropagation(),l.preventDefault(),!l.repeat){if(a.current||(o.current=!0,a.current=l),!o.current&&l.type==="keyup"){o.current=!0,a.current=l;return}switch(l.key){case"x":{e(yye());break}case" ":{if(!t)break;l.type==="keydown"&&e(Lg(!1)),e(TB(!i));break}}a.current=l,o.current=!0}}};return document.addEventListener("keydown",s),document.addEventListener("keyup",s),()=>{document.removeEventListener("keydown",s),document.removeEventListener("keyup",s)}},[e,n,t,r,i]),null};let fs,ll,N5;const pwe=()=>{const e=ct(),{tool:t,brushSize:n,shouldInvertMask:r,shouldShowMask:i,shouldShowCheckboardTransparency:o,maskColor:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}=$e(nwe),b=od();fs=C.exports.useRef(null),ll=C.exports.useRef(null),N5=C.exports.useRef(null);const S=C.exports.useRef({x:0,y:0}),E=C.exports.useRef(!1),[P,k]=C.exports.useState(null);C.exports.useEffect(()=>{if(s){const F=new Image;F.onload=()=>{N5.current=F,k(F)},F.onerror=()=>{b({title:"Unable to Load Image",description:`Image ${s.url} failed to load`,status:"error",isClosable:!0}),e(U7())},F.src=s.url}else k(null)},[s,e,l,b]);const L=C.exports.useCallback(()=>{if(!fs.current)return;const F=ky(fs.current);!F||!ll.current||!m||(e(Lg(!0)),e($L({tool:t,strokeWidth:n/2,points:[F.x,F.y]})))},[e,n,t,m]),I=C.exports.useCallback(()=>{if(!fs.current)return;const F=ky(fs.current);!F||(e(WL(F)),!(!ll.current||!m)&&(S.current=F,g&&(E.current=!0,e(HL([F.x,F.y])))))},[e,g,m]),O=C.exports.useCallback(()=>{if(!E.current&&g&&fs.current){const F=ky(fs.current);if(!F||!ll.current||!m)return;e(HL([F.x,F.y]))}else E.current=!1;e(Lg(!1))},[e,g,m]),N=C.exports.useCallback(()=>{e(WL(null)),e(Lg(!1))},[e]),D=C.exports.useCallback(F=>{if(F.evt.buttons===1){if(!fs.current)return;const U=ky(fs.current);if(!U||!ll.current||!m)return;e(Lg(!0)),e($L({tool:t,strokeWidth:n/2,points:[U.x,U.y]}))}},[e,n,t,m]);return te("div",{className:"inpainting-canvas-wrapper",tabIndex:1,children:[te("div",{className:"inpainting-alerts",children:[!i&&w("div",{style:{pointerEvents:"none"},children:"Mask Hidden (H)"}),r&&w("div",{style:{pointerEvents:"none"},children:"Mask Inverted (Shift+M)"}),!m&&w("div",{style:{pointerEvents:"none"},children:`Transforming Bounding Box ${y.width}x${y.height} (M)`})]}),P&&te(QSe,{width:Math.floor(P.width*l),height:Math.floor(P.height*l),scale:{x:l,y:l},onMouseDown:L,onMouseMove:I,onMouseEnter:D,onMouseUp:O,onMouseOut:N,onMouseLeave:N,style:{cursor:i?"none":"default"},className:"inpainting-canvas-stage checkerboard",ref:fs,children:[!r&&!o&&w($S,{name:"image-layer",listening:!1,children:w(HS,{listening:!1,image:P})}),i&&te(Fn,{children:[te($S,{name:"mask-layer",listening:!1,opacity:o||r?1:a.a,ref:ll,children:[w(rwe,{}),m&&w(owe,{}),r&&w(HS,{image:P,listening:!1,globalCompositeOperation:"source-in"}),!r&&o&&w(HS,{image:P,listening:!1,globalCompositeOperation:"source-out"})]}),i&&te($S,{children:[p&&d&&w(cwe,{}),d&&w(dwe,{}),m&&w(swe,{})]})]})]}),w(lwe,{}),w(hwe,{})]})},gwe=()=>{const e=ct(),{needsCache:t,imageToInpaint:n}=$e(i=>i.inpainting),r=C.exports.useRef(null);return C.exports.useLayoutEffect(()=>{window.setTimeout(()=>{if(!r.current||!n)return;const i=r.current.clientWidth,o=r.current.clientHeight,a=Math.min(1,Math.min(i/n.width,o/n.height));e(vye(a))},0)},[e,n,t]),w("div",{ref:r,className:"inpainting-canvas-area",children:w(A0,{thickness:"2px",speed:"1s",size:"xl"})})};function mwe(e){return mt({tag:"svg",attr:{viewBox:"0 0 16 16",fill:"currentColor"},child:[{tag:"path",attr:{d:"M14 1H3L2 2v11l1 1h11l1-1V2l-1-1zM8 13H3V2h5v11zm6 0H9V2h5v11z"}}]})(e)}function _x(){return(_x=Object.assign||function(e){for(var t=1;t=0||(i[n]=e[n]);return i}function kC(e){var t=C.exports.useRef(e),n=C.exports.useRef(function(r){t.current&&t.current(r)});return t.current=e,n.current}var S0=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e0:E.buttons>0)&&i.current?o(VA(i.current,E,s.current)):S(!1)},b=function(){return S(!1)};function S(E){var P=l.current,k=EC(i.current),L=E?k.addEventListener:k.removeEventListener;L(P?"touchmove":"mousemove",y),L(P?"touchend":"mouseup",b)}return[function(E){var P=E.nativeEvent,k=i.current;if(k&&(UA(P),!function(I,O){return O&&!cm(I)}(P,l.current)&&k)){if(cm(P)){l.current=!0;var L=P.changedTouches||[];L.length&&(s.current=L[0].identifier)}k.focus(),o(VA(k,P,s.current)),S(!0)}},function(E){var P=E.which||E.keyCode;P<37||P>40||(E.preventDefault(),a({left:P===39?.05:P===37?-.05:0,top:P===40?.05:P===38?-.05:0}))},S]},[a,o]),p=d[0],g=d[1],m=d[2];return C.exports.useEffect(function(){return m},[m]),w("div",{..._x({},r,{onTouchStart:p,onMouseDown:p,className:"react-colorful__interactive",ref:i,onKeyDown:g,tabIndex:0,role:"slider"})})}),kx=function(e){return e.filter(Boolean).join(" ")},c_=function(e){var t=e.color,n=e.left,r=e.top,i=r===void 0?.5:r,o=kx(["react-colorful__pointer",e.className]);return w("div",{className:o,style:{top:100*i+"%",left:100*n+"%"},children:w("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}})})},eo=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},rH=function(e){var t=e.s,n=e.v,r=e.a,i=(200-t)*n/100;return{h:eo(e.h),s:eo(i>0&&i<200?t*n/100/(i<=100?i:200-i)*100:0),l:eo(i/2),a:eo(r,2)}},PC=function(e){var t=rH(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},WS=function(e){var t=rH(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},vwe=function(e){var t=e.h,n=e.s,r=e.v,i=e.a;t=t/360*6,n/=100,r/=100;var o=Math.floor(t),a=r*(1-n),s=r*(1-(t-o)*n),l=r*(1-(1-t+o)*n),d=o%6;return{r:eo(255*[r,s,a,a,l,r][d]),g:eo(255*[l,r,r,s,a,a][d]),b:eo(255*[a,a,l,r,r,s][d]),a:eo(i,2)}},ywe=function(e){var t=e.r,n=e.g,r=e.b,i=e.a,o=Math.max(t,n,r),a=o-Math.min(t,n,r),s=a?o===t?(n-r)/a:o===n?2+(r-t)/a:4+(t-n)/a:0;return{h:eo(60*(s<0?s+6:s)),s:eo(o?a/o*100:0),v:eo(o/255*100),a:i}},xwe=ne.memo(function(e){var t=e.hue,n=e.onChange,r=kx(["react-colorful__hue",e.className]);return ne.createElement("div",{className:r},ne.createElement(u_,{onMove:function(i){n({h:360*i.left})},onKey:function(i){n({h:S0(t+360*i.left,0,360)})},"aria-label":"Hue","aria-valuenow":eo(t),"aria-valuemax":"360","aria-valuemin":"0"},ne.createElement(c_,{className:"react-colorful__hue-pointer",left:t/360,color:PC({h:t,s:100,v:100,a:1})})))}),bwe=ne.memo(function(e){var t=e.hsva,n=e.onChange,r={backgroundColor:PC({h:t.h,s:100,v:100,a:1})};return ne.createElement("div",{className:"react-colorful__saturation",style:r},ne.createElement(u_,{onMove:function(i){n({s:100*i.left,v:100-100*i.top})},onKey:function(i){n({s:S0(t.s+100*i.left,0,100),v:S0(t.v-100*i.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+eo(t.s)+"%, Brightness "+eo(t.v)+"%"},ne.createElement(c_,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:PC(t)})))}),iH=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0};function Swe(e,t,n){var r=kC(n),i=C.exports.useState(function(){return e.toHsva(t)}),o=i[0],a=i[1],s=C.exports.useRef({color:t,hsva:o});C.exports.useEffect(function(){if(!e.equal(t,s.current.color)){var d=e.toHsva(t);s.current={hsva:d,color:t},a(d)}},[t,e]),C.exports.useEffect(function(){var d;iH(o,s.current.hsva)||e.equal(d=e.fromHsva(o),s.current.color)||(s.current={hsva:o,color:d},r(d))},[o,e,r]);var l=C.exports.useCallback(function(d){a(function(p){return Object.assign({},p,d)})},[]);return[o,l]}var wwe=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,Cwe=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},GA=new Map,_we=function(e){wwe(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!GA.has(t)){var n=t.createElement("style");n.innerHTML=`.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,GA.set(t,n);var r=Cwe();r&&n.setAttribute("nonce",r),t.head.appendChild(n)}},[])},kwe=function(e){var t=e.className,n=e.hsva,r=e.onChange,i={backgroundImage:"linear-gradient(90deg, "+WS(Object.assign({},n,{a:0}))+", "+WS(Object.assign({},n,{a:1}))+")"},o=kx(["react-colorful__alpha",t]),a=eo(100*n.a);return ne.createElement("div",{className:o},w("div",{className:"react-colorful__alpha-gradient",style:i}),ne.createElement(u_,{onMove:function(s){r({a:s.left})},onKey:function(s){r({a:S0(n.a+s.left)})},"aria-label":"Alpha","aria-valuetext":a+"%","aria-valuenow":a,"aria-valuemin":"0","aria-valuemax":"100"},ne.createElement(c_,{className:"react-colorful__alpha-pointer",left:n.a,color:WS(n)})))},Ewe=function(e){var t=e.className,n=e.colorModel,r=e.color,i=r===void 0?n.defaultColor:r,o=e.onChange,a=nH(e,["className","colorModel","color","onChange"]),s=C.exports.useRef(null);_we(s);var l=Swe(n,i,o),d=l[0],p=l[1],g=kx(["react-colorful",t]);return ne.createElement("div",_x({},a,{ref:s,className:g}),w(bwe,{hsva:d,onChange:p}),w(xwe,{hue:d.h,onChange:p}),ne.createElement(kwe,{hsva:d,onChange:p,className:"react-colorful__last-control"}))},Pwe={defaultColor:{r:0,g:0,b:0,a:1},toHsva:ywe,fromHsva:vwe,equal:iH},Twe=function(e){return ne.createElement(Ewe,_x({},e,{colorModel:Pwe}))};const Lwe=e=>{const{styleClass:t,...n}=e;return w(Twe,{className:`invokeai__color-picker ${t}`,...n})},Awe=()=>{const{tool:e,brushSize:t,maskColor:n,shouldInvertMask:r,shouldShowMask:i,canUndo:o,canRedo:a,isMaskEmpty:s,activeTabName:l,showDualDisplay:d}=$e(twe),p=ct(),g=od(),[m,y]=C.exports.useState(!1);Dt("[",q=>{q.preventDefault(),t-5>0?P(t-5):P(1)},{enabled:l==="inpainting"&&i},[l,i,t]),Dt("]",q=>{q.preventDefault(),P(t+5)},{enabled:l==="inpainting"&&i},[l,i,t]),Dt("shift+[",q=>{q.preventDefault(),N({...n,a:Math.max(n.a-.05,0)})},{enabled:l==="inpainting"&&i},[l,i,n.a]),Dt("shift+]",q=>{q.preventDefault(),N({...n,a:Math.min(n.a+.05,100)})},{enabled:l==="inpainting"&&i},[l,i,n.a]),Dt("e",q=>{q.preventDefault(),!(l!=="inpainting"||!i)&&S()},{enabled:l==="inpainting"&&i},[l,i]),Dt("b",q=>{q.preventDefault(),E()},{enabled:l==="inpainting"&&i},[l,i]),Dt("m",q=>{q.preventDefault(),p(_ye())},{enabled:l==="inpainting"&&i},[l,i]),Dt("cmd+z, control+z",q=>{q.preventDefault(),D()},{enabled:l==="inpainting"&&i&&o},[l,i,o]),Dt("cmd+shift+z, control+shift+z, control+y, cmd+y",q=>{q.preventDefault(),F()},{enabled:l==="inpainting"&&i&&a},[l,i,a]),Dt("h",q=>{q.preventDefault(),k()},{enabled:l==="inpainting"},[l,i]),Dt("shift+m",q=>{q.preventDefault(),L()},{enabled:l==="inpainting"&&i},[l,r,i]),Dt("shift+c",q=>{q.preventDefault(),b(),g({title:"Mask Cleared",status:"success",duration:2500,isClosable:!0})},{enabled:l==="inpainting"&&i&&!s},[l,s,i]),Dt("shift+j",()=>{U()},[d]);const b=()=>{p(pye())},S=()=>p(BL("eraser")),E=()=>p(BL("brush")),P=q=>{p(kS(!0)),p(cye(q))},k=()=>p(fye(!i)),L=()=>p(dye(!r)),I=()=>{p(kS(!0))},O=()=>{p(kS(!1))},N=q=>{p(hye(q))},D=()=>p(gye()),F=()=>p(mye()),U=()=>{p(Qwe(!d)),p(Cf(!0))};return te("div",{className:"inpainting-settings",children:[te("div",{className:"inpainting-buttons-group",children:[w(l3,{trigger:"hover",onOpen:I,onClose:O,triggerComponent:w(sn,{"aria-label":"Brush (B)",tooltip:"Brush (B)",icon:w(mB,{}),onClick:E,"data-selected":e==="brush",isDisabled:!i}),children:te("div",{className:"inpainting-slider-numberinput",children:[w(R5,{label:"Brush Size",value:t,onChange:P,min:1,max:200,width:"100px",focusThumbOnChange:!1,isDisabled:!i}),w(no,{value:t,onChange:P,width:"80px",min:1,max:999,isDisabled:!i})]})}),w(sn,{"aria-label":"Eraser (E)",tooltip:"Eraser (E)",icon:w(A2e,{}),onClick:S,"data-selected":e==="eraser",isDisabled:!i})]}),te("div",{className:"inpainting-buttons-group",children:[w(l3,{trigger:"click",onOpen:()=>y(!0),onClose:()=>y(!1),triggerComponent:w(sn,{"aria-label":"Mask Options",tooltip:"Mask Options",icon:w(M2e,{}),cursor:"pointer","data-selected":m}),children:te("div",{className:"inpainting-button-dropdown",children:[w(sn,{"aria-label":"Hide/Show Mask (H)",tooltip:"Hide/Show Mask (H)","data-selected":!i,icon:i?w(m$,{size:22}):w(g$,{size:22}),onClick:k}),w(sn,{tooltip:"Invert Mask Display (Shift+M)","aria-label":"Invert Mask Display (Shift+M)","data-selected":r,icon:r?w(c2e,{size:22}):w(h2e,{size:22}),onClick:L,isDisabled:!i}),w(l3,{trigger:"hover",placement:"right",styleClass:"inpainting-color-picker",triggerComponent:w(sn,{"aria-label":"Mask Color",tooltip:"Mask Color",icon:w(N2e,{}),isDisabled:!i,cursor:"pointer"}),children:w(Lwe,{color:n,onChange:N})})]})}),w(sn,{"aria-label":"Clear Mask (Shift+C)",tooltip:"Clear Mask (Shift+C)",icon:w(z2e,{size:18,style:{transform:"rotate(45deg)"}}),onClick:b,isDisabled:s||!i})]}),te("div",{className:"inpainting-buttons-group",children:[w(sn,{"aria-label":"Undo",tooltip:"Undo",icon:w(U2e,{}),onClick:D,isDisabled:!o||!i}),w(sn,{"aria-label":"Redo",tooltip:"Redo",icon:w(B2e,{}),onClick:F,isDisabled:!a||!i})]}),w("div",{className:"inpainting-buttons-group",children:w(sn,{"aria-label":"Clear Image",tooltip:"Clear Image",icon:w(V2e,{size:16}),onClick:()=>{p(U7())}})}),w(sn,{"aria-label":"Split Layout (Shift+J)",tooltip:"Split Layout (Shift+J)",icon:w(mwe,{}),"data-selected":d,onClick:U})]})},Iwe=jt([e=>e.inpainting,e=>e.options],(e,t)=>{const{needsCache:n,imageToInpaint:r}=e,{showDualDisplay:i}=t;return{needsCache:n,showDualDisplay:i,imageToInpaint:r}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),Mwe=()=>{const e=ct(),{showDualDisplay:t,needsCache:n,imageToInpaint:r}=$e(Iwe);return C.exports.useLayoutEffect(()=>{const o=Wt.debounce(()=>e(Cf(!0)),250);return window.addEventListener("resize",o),()=>window.removeEventListener("resize",o)},[e]),te("div",{className:t?"workarea-split-view":"workarea-single-view",children:[te("div",{className:"workarea-split-view-left",children:[r?te("div",{className:"inpainting-main-area",children:[w(Awe,{}),w("div",{className:"inpainting-canvas-area",children:n?w(gwe,{}):w(pwe,{})})]}):w(IB,{})," "]}),t&&w("div",{className:"workarea-split-view-right",children:w(j7,{})})]})};function Rwe(){return w(J7,{optionsPanel:w(F4e,{}),styleClass:"inpainting-workarea-overrides",children:w(Mwe,{})})}function Owe(){const e=$e(n=>n.options.showAdvancedOptions),t={seed:{header:w(M7,{}),feature:Ji.SEED,options:w(R7,{})},variations:{header:w(N7,{}),feature:Ji.VARIATIONS,options:w(D7,{})},face_restore:{header:w(L7,{}),feature:Ji.FACE_CORRECTION,options:w(fx,{})},upscale:{header:w(O7,{}),feature:Ji.UPSCALE,options:w(hx,{})},other:{header:w(oB,{}),feature:Ji.OTHER,options:w(aB,{})}};return te(G7,{children:[w(W7,{}),w(H7,{}),w(B7,{}),w(z7,{}),e?w($7,{accordionInfo:t}):null]})}const Nwe=()=>w("div",{className:"workarea-single-view",children:w("div",{className:"text-to-image-area",children:w(j7,{})})});function Dwe(){return w(J7,{optionsPanel:w(Owe,{}),children:w(Nwe,{})})}const pp={txt2img:{title:w(xve,{fill:"black",boxSize:"2.5rem"}),workarea:w(Dwe,{}),tooltip:"Text To Image"},img2img:{title:w(pve,{fill:"black",boxSize:"2.5rem"}),workarea:w(R4e,{}),tooltip:"Image To Image"},inpainting:{title:w(gve,{fill:"black",boxSize:"2.5rem"}),workarea:w(Rwe,{}),tooltip:"Inpainting"},outpainting:{title:w(vve,{fill:"black",boxSize:"2.5rem"}),workarea:w(fve,{}),tooltip:"Outpainting"},nodes:{title:w(mve,{fill:"black",boxSize:"2.5rem"}),workarea:w(dve,{}),tooltip:"Nodes"},postprocess:{title:w(yve,{fill:"black",boxSize:"2.5rem"}),workarea:w(hve,{}),tooltip:"Post Processing"}},Av=Wt.map(pp,(e,t)=>t);[...Av];function zwe(){const e=$e(i=>i.options.activeTab),t=ct();Dt("1",()=>{t(Pa(0))}),Dt("2",()=>{t(Pa(1))}),Dt("3",()=>{t(Pa(2))}),Dt("4",()=>{t(Pa(3))}),Dt("5",()=>{t(Pa(4))}),Dt("6",()=>{t(Pa(5))});const n=()=>{const i=[];return Object.keys(pp).forEach(o=>{i.push(w(Xr,{hasArrow:!0,label:pp[o].tooltip,placement:"right",children:w(CF,{children:pp[o].title})},o))}),i},r=()=>{const i=[];return Object.keys(pp).forEach(o=>{i.push(w(SF,{className:"app-tabs-panel",children:pp[o].workarea},o))}),i};return te(bF,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:i=>{t(Pa(i))},children:[w("div",{className:"app-tabs-list",children:n()}),w(wF,{className:"app-tabs-panels",children:r()})]})}const oH={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,img2imgStrength:.75,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunFacetool:!1,facetoolStrength:.8,facetoolType:"gfpgan",codeformerFidelity:.75,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,showDualDisplay:!0,shouldShowOptionsPanel:!0,shouldPinOptionsPanel:!0,optionsPanelScrollPosition:0,shouldHoldOptionsPanelOpen:!1,shouldLoopback:!1},Fwe=oH,aH=J4({name:"options",initialState:Fwe,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=s3(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setFacetoolStrength:(e,t)=>{e.facetoolStrength=t.payload},setCodeformerFidelity:(e,t)=>{e.codeformerFidelity=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,i={...e,[n]:r};return n==="seed"&&(i.shouldRandomizeSeed=!1),i},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllTextToImageParameters:(e,t)=>{const{sampler:n,prompt:r,seed:i,variations:o,steps:a,cfg_scale:s,threshold:l,perlin:d,seamless:p,hires_fix:g,width:m,height:y}=t.payload.image;o&&o.length>0?(e.seedWeights=_5(o),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),r&&(e.prompt=s3(r)),n&&(e.sampler=n),a&&(e.steps=a),s&&(e.cfgScale=s),l&&(e.threshold=l),typeof l>"u"&&(e.threshold=0),d&&(e.perlin=d),typeof d>"u"&&(e.perlin=0),typeof p=="boolean"&&(e.seamless=p),typeof g=="boolean"&&(e.hiresFix=g),m&&(e.width=m),y&&(e.height=y)},setAllImageToImageParameters:(e,t)=>{const{type:n,strength:r,fit:i,init_image_path:o,mask_image_path:a}=t.payload.image;n==="img2img"&&(o&&(e.initialImage=o),a&&(e.maskPath=a),r&&(e.img2imgStrength=r),typeof i=="boolean"&&(e.shouldFitToWidthHeight=i))},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:i,seed:o,variations:a,steps:s,cfg_scale:l,threshold:d,perlin:p,seamless:g,hires_fix:m,width:y,height:b,strength:S,fit:E,init_image_path:P,mask_image_path:k}=t.payload.image;n==="img2img"&&(P&&(e.initialImage=P),k&&(e.maskPath=k),S&&(e.img2imgStrength=S),typeof E=="boolean"&&(e.shouldFitToWidthHeight=E)),a&&a.length>0?(e.seedWeights=_5(a),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,o&&(e.seed=o,e.shouldRandomizeSeed=!1),i&&(e.prompt=s3(i)),r&&(e.sampler=r),s&&(e.steps=s),l&&(e.cfgScale=l),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),p&&(e.perlin=p),typeof p>"u"&&(e.perlin=0),typeof g=="boolean"&&(e.seamless=g),typeof m=="boolean"&&(e.hiresFix=m),y&&(e.width=y),b&&(e.height=b)},resetOptionsState:e=>({...e,...oH}),setShouldRunFacetool:(e,t)=>{e.shouldRunFacetool=t.payload},setFacetoolType:(e,t)=>{e.facetoolType=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{typeof t.payload=="number"?e.activeTab=t.payload:e.activeTab=Av.indexOf(t.payload)},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShowDualDisplay:(e,t)=>{e.showDualDisplay=t.payload},setInitialImage:(e,t)=>{e.initialImage=t.payload},clearInitialImage:e=>{e.initialImage=void 0},setShouldPinOptionsPanel:(e,t)=>{e.shouldPinOptionsPanel=t.payload},setShouldShowOptionsPanel:(e,t)=>{e.shouldShowOptionsPanel=t.payload},setOptionsPanelScrollPosition:(e,t)=>{e.optionsPanelScrollPosition=t.payload},setShouldHoldOptionsPanelOpen:(e,t)=>{e.shouldHoldOptionsPanelOpen=t.payload},setShouldLoopback:(e,t)=>{e.shouldLoopback=t.payload}}}),{setPrompt:d_,setIterations:Bwe,setSteps:sH,setCfgScale:lH,setThreshold:$we,setPerlin:Hwe,setHeight:uH,setWidth:cH,setSampler:dH,setSeed:Iv,setSeamless:fH,setHiresFix:hH,setImg2imgStrength:pH,setFacetoolStrength:h3,setFacetoolType:p3,setCodeformerFidelity:gH,setUpscalingLevel:TC,setUpscalingStrength:LC,setMaskPath:AC,resetSeed:q9e,resetOptionsState:K9e,setShouldFitToWidthHeight:mH,setParameter:Z9e,setShouldGenerateVariations:Wwe,setSeedWeights:vH,setVariationAmount:Vwe,setAllParameters:Uwe,setShouldRunFacetool:Gwe,setShouldRunESRGAN:jwe,setShouldRandomizeSeed:qwe,setShowAdvancedOptions:Kwe,setActiveTab:Pa,setShouldShowImageDetails:Zwe,setAllTextToImageParameters:Ywe,setAllImageToImageParameters:Xwe,setShowDualDisplay:Qwe,setInitialImage:nv,clearInitialImage:IC,setShouldShowOptionsPanel:MC,setShouldPinOptionsPanel:Jwe,setOptionsPanelScrollPosition:e6e,setShouldHoldOptionsPanelOpen:t6e,setShouldLoopback:n6e}=aH.actions,r6e=aH.reducer,kl=Object.create(null);kl.open="0";kl.close="1";kl.ping="2";kl.pong="3";kl.message="4";kl.upgrade="5";kl.noop="6";const g3=Object.create(null);Object.keys(kl).forEach(e=>{g3[kl[e]]=e});const i6e={type:"error",data:"parser error"},o6e=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",a6e=typeof ArrayBuffer=="function",s6e=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,yH=({type:e,data:t},n,r)=>o6e&&t instanceof Blob?n?r(t):jA(t,r):a6e&&(t instanceof ArrayBuffer||s6e(t))?n?r(t):jA(new Blob([t]),r):r(kl[e]+(t||"")),jA=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},qA="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ng=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,i=0,o,a,s,l;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),p=new Uint8Array(d);for(r=0;r>4,p[i++]=(a&15)<<4|s>>2,p[i++]=(s&3)<<6|l&63;return d},u6e=typeof ArrayBuffer=="function",xH=(e,t)=>{if(typeof e!="string")return{type:"message",data:bH(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:c6e(e.substring(1),t)}:g3[n]?e.length>1?{type:g3[n],data:e.substring(1)}:{type:g3[n]}:i6e},c6e=(e,t)=>{if(u6e){const n=l6e(e);return bH(n,t)}else return{base64:!0,data:e}},bH=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},SH=String.fromCharCode(30),d6e=(e,t)=>{const n=e.length,r=new Array(n);let i=0;e.forEach((o,a)=>{yH(o,!1,s=>{r[a]=s,++i===n&&t(r.join(SH))})})},f6e=(e,t)=>{const n=e.split(SH),r=[];for(let i=0;itypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function CH(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const p6e=setTimeout,g6e=clearTimeout;function Ex(e,t){t.useNativeTimers?(e.setTimeoutFn=p6e.bind(Mc),e.clearTimeoutFn=g6e.bind(Mc)):(e.setTimeoutFn=setTimeout.bind(Mc),e.clearTimeoutFn=clearTimeout.bind(Mc))}const m6e=1.33;function v6e(e){return typeof e=="string"?y6e(e):Math.ceil((e.byteLength||e.size)*m6e)}function y6e(e){let t=0,n=0;for(let r=0,i=e.length;r=57344?n+=3:(r++,n+=4);return n}class x6e extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class _H extends Wr{constructor(t){super(),this.writable=!1,Ex(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new x6e(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=xH(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const kH="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),RC=64,b6e={};let KA=0,Ey=0,ZA;function YA(e){let t="";do t=kH[e%RC]+t,e=Math.floor(e/RC);while(e>0);return t}function EH(){const e=YA(+new Date);return e!==ZA?(KA=0,ZA=e):e+"."+YA(KA++)}for(;Ey{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};f6e(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,d6e(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=EH()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const i=PH(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new Sl(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(i,o)=>{this.onError("xhr post error",i,o)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class Sl extends Wr{constructor(t,n){super(),Ex(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=CH(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new LH(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=Sl.requestsCount++,Sl.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=C6e,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete Sl.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}Sl.requestsCount=0;Sl.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",XA);else if(typeof addEventListener=="function"){const e="onpagehide"in Mc?"pagehide":"unload";addEventListener(e,XA,!1)}}function XA(){for(let e in Sl.requests)Sl.requests.hasOwnProperty(e)&&Sl.requests[e].abort()}const AH=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Py=Mc.WebSocket||Mc.MozWebSocket,QA=!0,E6e="arraybuffer",JA=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class P6e extends _H{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=JA?{}:CH(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=QA&&!JA?n?new Py(t,n):new Py(t):new Py(t,n,r)}catch(i){return this.emitReserved("error",i)}this.ws.binaryType=this.socket.binaryType||E6e,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const a={};try{QA&&this.ws.send(o)}catch{}i&&AH(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=EH()),this.supportsBinary||(t.b64=1);const i=PH(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}check(){return!!Py}}const T6e={websocket:P6e,polling:k6e},L6e=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,A6e=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function OC(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let i=L6e.exec(e||""),o={},a=14;for(;a--;)o[A6e[a]]=i[a]||"";return n!=-1&&r!=-1&&(o.source=t,o.host=o.host.substring(1,o.host.length-1).replace(/;/g,":"),o.authority=o.authority.replace("[","").replace("]","").replace(/;/g,":"),o.ipv6uri=!0),o.pathNames=I6e(o,o.path),o.queryKey=M6e(o,o.query),o}function I6e(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.slice(0,1)=="/"||t.length===0)&&r.splice(0,1),t.slice(-1)=="/"&&r.splice(r.length-1,1),r}function M6e(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,i,o){i&&(n[i]=o)}),n}class Ec extends Wr{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=OC(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=OC(n.host).host),Ex(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=S6e(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&(this.beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=wH,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new T6e[t](r)}open(){let t;if(this.opts.rememberUpgrade&&Ec.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;Ec.priorWebsocketSuccess=!1;const i=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",g=>{if(!r)if(g.type==="pong"&&g.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Ec.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(p(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function o(){r||(r=!0,p(),n.close(),n=null)}const a=g=>{const m=new Error("probe error: "+g);m.transport=n.name,o(),this.emitReserved("upgradeError",m)};function s(){a("transport closed")}function l(){a("socket closed")}function d(g){n&&g.name!==n.name&&o()}const p=()=>{n.removeListener("open",i),n.removeListener("error",a),n.removeListener("close",s),this.off("close",l),this.off("upgrading",d)};n.once("open",i),n.once("error",a),n.once("close",s),this.once("close",l),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",Ec.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,i){if(typeof n=="function"&&(i=n,n=void 0),typeof r=="function"&&(i=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const o={type:t,data:n,options:r};this.emitReserved("packetCreate",o),this.writeBuffer.push(o),i&&this.once("flush",i),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){Ec.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const i=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,IH=Object.prototype.toString,D6e=typeof Blob=="function"||typeof Blob<"u"&&IH.call(Blob)==="[object BlobConstructor]",z6e=typeof File=="function"||typeof File<"u"&&IH.call(File)==="[object FileConstructor]";function f_(e){return O6e&&(e instanceof ArrayBuffer||N6e(e))||D6e&&e instanceof Blob||z6e&&e instanceof File}function m3(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case Jt.ACK:case Jt.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class W6e{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=B6e(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const V6e=Object.freeze(Object.defineProperty({__proto__:null,protocol:$6e,get PacketType(){return Jt},Encoder:H6e,Decoder:h_},Symbol.toStringTag,{value:"Module"}));function gs(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const U6e=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class MH extends Wr{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[gs(t,"open",this.onopen.bind(this)),gs(t,"packet",this.onpacket.bind(this)),gs(t,"error",this.onerror.bind(this)),gs(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(U6e.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:Jt.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const a=this.ids++,s=n.pop();this._registerAckCallback(a,s),r.id=a}const i=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!i||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const i=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let o=0;o{this.io.clearTimeoutFn(i),n.apply(this,[null,...o])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:Jt.CONNECT,data:t})}):this.packet({type:Jt.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Jt.CONNECT:if(t.data&&t.data.sid){const i=t.data.sid;this.onconnect(i)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Jt.EVENT:case Jt.BINARY_EVENT:this.onevent(t);break;case Jt.ACK:case Jt.BINARY_ACK:this.onack(t);break;case Jt.DISCONNECT:this.ondisconnect();break;case Jt.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...i){r||(r=!0,n.packet({type:Jt.ACK,id:t,data:i}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Jt.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}H0.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};H0.prototype.reset=function(){this.attempts=0};H0.prototype.setMin=function(e){this.ms=e};H0.prototype.setMax=function(e){this.max=e};H0.prototype.setJitter=function(e){this.jitter=e};class zC extends Wr{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Ex(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new H0({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const i=n.parser||V6e;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Ec(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const i=gs(n,"open",function(){r.onopen(),t&&t()}),o=gs(n,"error",a=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",a),t?t(a):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const a=this._timeout;a===0&&i();const s=this.setTimeoutFn(()=>{i(),n.close(),n.emit("error",new Error("timeout"))},a);this.opts.autoUnref&&s.unref(),this.subs.push(function(){clearTimeout(s)})}return this.subs.push(i),this.subs.push(o),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(gs(t,"ping",this.onping.bind(this)),gs(t,"data",this.ondata.bind(this)),gs(t,"error",this.onerror.bind(this)),gs(t,"close",this.onclose.bind(this)),gs(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(n){this.onclose("parse error",n)}}ondecoded(t){AH(()=>{this.emitReserved("packet",t)},this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new MH(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(i=>{i?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",i)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const gg={};function v3(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=R6e(e,t.path||"/socket.io"),r=n.source,i=n.id,o=n.path,a=gg[i]&&o in gg[i].nsps,s=t.forceNew||t["force new connection"]||t.multiplex===!1||a;let l;return s?l=new zC(r,t):(gg[i]||(gg[i]=new zC(r,t)),l=gg[i]),n.query&&!t.query&&(t.query=n.queryKey),l.socket(n.path,t)}Object.assign(v3,{Manager:zC,Socket:MH,io:v3,connect:v3});let Ty;const G6e=new Uint8Array(16);function j6e(){if(!Ty&&(Ty=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Ty))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Ty(G6e)}const xi=[];for(let e=0;e<256;++e)xi.push((e+256).toString(16).slice(1));function q6e(e,t=0){return(xi[e[t+0]]+xi[e[t+1]]+xi[e[t+2]]+xi[e[t+3]]+"-"+xi[e[t+4]]+xi[e[t+5]]+"-"+xi[e[t+6]]+xi[e[t+7]]+"-"+xi[e[t+8]]+xi[e[t+9]]+"-"+xi[e[t+10]]+xi[e[t+11]]+xi[e[t+12]]+xi[e[t+13]]+xi[e[t+14]]+xi[e[t+15]]).toLowerCase()}const K6e=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),eI={randomUUID:K6e};function mg(e,t,n){if(eI.randomUUID&&!t&&!e)return eI.randomUUID();e=e||{};const r=e.random||(e.rng||j6e)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let i=0;i<16;++i)t[n+i]=r[i];return t}return q6e(r)}var Z6e=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,Y6e=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,X6e=/[^-+\dA-Z]/g;function wi(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(tI[t]||t||tI.default);var i=t.slice(0,4);(i==="UTC:"||i==="GMT:")&&(t=t.slice(4),n=!0,i==="GMT:"&&(r=!0));var o=function(){return n?"getUTC":"get"},a=function(){return e[o()+"Date"]()},s=function(){return e[o()+"Day"]()},l=function(){return e[o()+"Month"]()},d=function(){return e[o()+"FullYear"]()},p=function(){return e[o()+"Hours"]()},g=function(){return e[o()+"Minutes"]()},m=function(){return e[o()+"Seconds"]()},y=function(){return e[o()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},S=function(){return Q6e(e)},E=function(){return J6e(e)},P={d:function(){return a()},dd:function(){return Zo(a())},ddd:function(){return bo.dayNames[s()]},DDD:function(){return nI({y:d(),m:l(),d:a(),_:o(),dayName:bo.dayNames[s()],short:!0})},dddd:function(){return bo.dayNames[s()+7]},DDDD:function(){return nI({y:d(),m:l(),d:a(),_:o(),dayName:bo.dayNames[s()+7]})},m:function(){return l()+1},mm:function(){return Zo(l()+1)},mmm:function(){return bo.monthNames[l()]},mmmm:function(){return bo.monthNames[l()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return Zo(d(),4)},h:function(){return p()%12||12},hh:function(){return Zo(p()%12||12)},H:function(){return p()},HH:function(){return Zo(p())},M:function(){return g()},MM:function(){return Zo(g())},s:function(){return m()},ss:function(){return Zo(m())},l:function(){return Zo(y(),3)},L:function(){return Zo(Math.floor(y()/10))},t:function(){return p()<12?bo.timeNames[0]:bo.timeNames[1]},tt:function(){return p()<12?bo.timeNames[2]:bo.timeNames[3]},T:function(){return p()<12?bo.timeNames[4]:bo.timeNames[5]},TT:function(){return p()<12?bo.timeNames[6]:bo.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":eCe(e)},o:function(){return(b()>0?"-":"+")+Zo(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+Zo(Math.floor(Math.abs(b())/60),2)+":"+Zo(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][a()%10>3?0:(a()%100-a()%10!=10)*a()%10]},W:function(){return S()},WW:function(){return Zo(S())},N:function(){return E()}};return t.replace(Z6e,function(k){return k in P?P[k]():k.slice(1,k.length-1)})}var tI={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},bo={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},Zo=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},nI=function(t){var n=t.y,r=t.m,i=t.d,o=t._,a=t.dayName,s=t.short,l=s===void 0?!1:s,d=new Date,p=new Date;p.setDate(p[o+"Date"]()-1);var g=new Date;g.setDate(g[o+"Date"]()+1);var m=function(){return d[o+"Date"]()},y=function(){return d[o+"Month"]()},b=function(){return d[o+"FullYear"]()},S=function(){return p[o+"Date"]()},E=function(){return p[o+"Month"]()},P=function(){return p[o+"FullYear"]()},k=function(){return g[o+"Date"]()},L=function(){return g[o+"Month"]()},I=function(){return g[o+"FullYear"]()};return b()===n&&y()===r&&m()===i?l?"Tdy":"Today":P()===n&&E()===r&&S()===i?l?"Ysd":"Yesterday":I()===n&&L()===r&&k()===i?l?"Tmw":"Tomorrow":a},Q6e=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var i=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-i);var o=(n-r)/(864e5*7);return 1+Math.floor(o)},J6e=function(t){var n=t.getDay();return n===0&&(n=7),n},eCe=function(t){return(String(t).match(Y6e)||[""]).pop().replace(X6e,"").replace(/GMT\+0000/g,"UTC")};const tCe=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(AL(!0)),t(CS("Connected"));const r=n().gallery;r.categories.user.latest_mtime?t(OL("user")):t(J6("user")),r.categories.result.latest_mtime?t(OL("result")):t(J6("result"))}catch(r){console.error(r)}},onDisconnect:()=>{try{t(AL(!1)),t(CS("Disconnected")),t(Si({timestamp:wi(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{shouldLoopback:i,activeTab:o}=n().options,a={uuid:mg(),...r,category:"result"};if(t(oy({category:"result",image:a})),i)switch(Av[o]){case"img2img":{t(nv(a));break}case"inpainting":{t(E5(a));break}}t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Image generated: ${r.url}`}))}catch(i){console.error(i)}},onIntermediateResult:r=>{try{t(Rye({uuid:mg(),...r})),r.isBase64||t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Intermediate image generated: ${r.url}`}))}catch(i){console.error(i)}},onPostprocessingResult:r=>{try{t(oy({category:"result",image:{uuid:mg(),...r,category:"result"}})),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Postprocessed: ${r.url}`}))}catch(i){console.error(i)}},onProgressUpdate:r=>{try{t(Jp(!0)),t(Jve(r))}catch(i){console.error(i)}},onError:r=>{const{message:i,additionalData:o}=r;try{t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Server error: ${i}`,level:"error"})),t(X6()),t(GL())}catch(a){console.error(a)}},onGalleryImages:r=>{const{images:i,areMoreImagesAvailable:o,category:a}=r,s=i.map(l=>({uuid:mg(),...l}));t(Mye({images:s,areMoreImagesAvailable:o,category:a})),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Loaded ${i.length} images`}))},onProcessingCanceled:()=>{t(n2e());const{intermediateImage:r}=n().gallery;r&&(r.isBase64||(t(oy({category:"result",image:r})),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`}))),t(GL())),t(Si({timestamp:wi(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:i}=r;t(RB(r));const{initialImage:o,maskPath:a}=n().options,{imageToInpaint:s}=n().inpainting;(o?.url===i||o===i)&&t(IC()),s?.url===i&&t(U7()),a===i&&t(AC("")),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Image deleted: ${i}`}))},onImageUploaded:r=>{const{destination:i,...o}=r,a={uuid:mg(),...o};try{switch(t(oy({image:a,category:"user"})),i){case"img2img":{t(nv(a));break}case"inpainting":{t(E5(a));break}default:{t(OB(a));break}}t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Image uploaded: ${r.url}`}))}catch(s){console.error(s)}},onMaskImageUploaded:r=>{const{url:i}=r;t(AC(i)),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Mask image uploaded: ${i}`}))},onSystemConfig:r=>{t(e2e(r))},onModelChanged:r=>{const{model_name:i,model_list:o}=r;t(IL(o)),t(CS("Model Changed")),t(Jp(!1)),t(ML(!0)),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Model changed: ${i}`,level:"info"}))},onModelChangeFailed:r=>{const{model_name:i,model_list:o}=r;t(IL(o)),t(Jp(!1)),t(ML(!0)),t(X6()),t(Si({timestamp:wi(new Date,"isoDateTime"),message:`Model change failed: ${i}`,level:"error"}))}}},nCe=(e,t)=>{const{width:n,height:r}=e,i=document.createElement("div"),o=new f3.Stage({container:i,width:n,height:r}),a=new f3.Layer;return o.add(a),t.forEach(s=>a.add(new f3.Line({points:s.points,stroke:"rgb(0,0,0)",strokeWidth:s.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,globalCompositeOperation:s.tool==="brush"?"source-over":"destination-out"}))),a.draw(),i.remove(),{stage:o,layer:a}},rCe=(e,t)=>{const n=e.toCanvas().getContext("2d")?.getImageData(t.x,t.y,t.width,t.height);if(!n)throw new Error("Unable to get image data from generated canvas");return!new Uint32Array(n.data.buffer).some(i=>i!==0)},iCe=(e,t,n)=>{const{stage:r,layer:i}=nCe(e,t),o=rCe(r,n);return i.add(new f3.Image({image:e,globalCompositeOperation:"source-out"})),{maskDataURL:r.toDataURL(),isMaskEmpty:o}},oCe=e=>{const{generationMode:t,optionsState:n,inpaintingState:r,systemState:i,imageToProcessUrl:o,maskImageElement:a}=e,{prompt:s,iterations:l,steps:d,cfgScale:p,threshold:g,perlin:m,height:y,width:b,sampler:S,seed:E,seamless:P,hiresFix:k,img2imgStrength:L,initialImage:I,shouldFitToWidthHeight:O,shouldGenerateVariations:N,variationAmount:D,seedWeights:F,shouldRunESRGAN:U,upscalingLevel:W,upscalingStrength:q,shouldRunFacetool:pe,facetoolStrength:fe,codeformerFidelity:ye,facetoolType:Pe,shouldRandomizeSeed:xe}=n,{shouldDisplayInProgressType:Y}=i,V={prompt:s,iterations:l,steps:d,cfg_scale:p,threshold:g,perlin:m,height:y,width:b,sampler_name:S,seed:E,progress_images:Y==="full-res",progress_latents:Y==="latents"};if(V.seed=xe?sB(A7,I7):E,["txt2img","img2img"].includes(t)&&(V.seamless=P,V.hires_fix=k),t==="img2img"&&I&&(V.init_img=typeof I=="string"?I:I.url,V.strength=L,V.fit=O),t==="inpainting"&&a){const{lines:X,boundingBoxCoordinate:me,boundingBoxDimensions:ve,inpaintReplace:Se,shouldUseInpaintReplace:He}=r,je={...me,...ve};V.init_img=o,V.strength=L,V.fit=!1;const{maskDataURL:ut,isMaskEmpty:qe}=iCe(a,X,je);V.is_mask_empty=qe,V.init_mask=ut.split("data:image/png;base64,")[1],He&&(V.inpaint_replace=Se),V.bounding_box=je,V.progress_images=!1}N?(V.variation_amount=D,F&&(V.with_variations=Jme(F))):V.variation_amount=0;let ae=!1,oe=!1;return U&&(ae={level:W,strength:q}),pe&&(oe={type:Pe,strength:fe},Pe==="codeformer"&&(oe.codeformer_fidelity=ye)),{generationParameters:V,esrganParameters:ae,facetoolParameters:oe}},aCe=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:i=>{n(Jp(!0));const o=r(),{options:a,system:s,inpainting:l,gallery:d}=o,p={generationMode:i,optionsState:a,inpaintingState:l,systemState:s};if(i==="inpainting"){if(!N5.current||!l.imageToInpaint?.url){n(Si({timestamp:wi(new Date,"isoDateTime"),message:"Inpainting image not loaded, cannot generate image.",level:"error"})),n(X6());return}p.imageToProcessUrl=l.imageToInpaint.url,p.maskImageElement=N5.current}else if(!["txt2img","img2img"].includes(i)){if(!d.currentImage?.url)return;p.imageToProcessUrl=d.currentImage.url}const{generationParameters:g,esrganParameters:m,facetoolParameters:y}=oCe(p);t.emit("generateImage",g,m,y),g.init_mask&&(g.init_mask=g.init_mask.substr(0,20).concat("...")),n(Si({timestamp:wi(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...g,...m,...y})}`}))},emitRunESRGAN:i=>{n(Jp(!0));const o=r().options,{upscalingLevel:a,upscalingStrength:s}=o,l={upscale:[a,s]};t.emit("runPostprocessing",i,{type:"esrgan",...l}),n(Si({timestamp:wi(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:i.url,...l})}`}))},emitRunFacetool:i=>{n(Jp(!0));const o=r().options,{facetoolType:a,facetoolStrength:s,codeformerFidelity:l}=o,d={facetool_strength:s};a==="codeformer"&&(d.codeformer_fidelity=l),t.emit("runPostprocessing",i,{type:a,...d}),n(Si({timestamp:wi(new Date,"isoDateTime"),message:`Face restoration (${a}) requested: ${JSON.stringify({file:i.url,...d})}`}))},emitDeleteImage:i=>{const{url:o,uuid:a,category:s}=i;n(RB(i)),t.emit("deleteImage",o,a,s)},emitRequestImages:i=>{const o=r().gallery,{earliest_mtime:a}=o.categories[i];t.emit("requestImages",i,a)},emitRequestNewImages:i=>{const o=r().gallery,{latest_mtime:a}=o.categories[i];t.emit("requestLatestImages",i,a)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadImage:i=>{const{file:o,destination:a}=i;t.emit("uploadImage",o,o.name,a)},emitUploadMaskImage:i=>{t.emit("uploadMaskImage",i,i.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")},emitRequestModelChange:i=>{n(r2e()),t.emit("requestModelChange",i)}}},sCe=()=>{const{origin:e}=new URL(window.location.href),t=v3(e,{timeout:6e4,path:window.location.pathname+"socket.io"});let n=!1;return i=>o=>a=>{const{onConnect:s,onDisconnect:l,onError:d,onPostprocessingResult:p,onGenerationResult:g,onIntermediateResult:m,onProgressUpdate:y,onGalleryImages:b,onProcessingCanceled:S,onImageDeleted:E,onImageUploaded:P,onMaskImageUploaded:k,onSystemConfig:L,onModelChanged:I,onModelChangeFailed:O}=tCe(i),{emitGenerateImage:N,emitRunESRGAN:D,emitRunFacetool:F,emitDeleteImage:U,emitRequestImages:W,emitRequestNewImages:q,emitCancelProcessing:pe,emitUploadImage:fe,emitUploadMaskImage:ye,emitRequestSystemConfig:Pe,emitRequestModelChange:xe}=aCe(i,t);switch(n||(t.on("connect",()=>s()),t.on("disconnect",()=>l()),t.on("error",Y=>d(Y)),t.on("generationResult",Y=>g(Y)),t.on("postprocessingResult",Y=>p(Y)),t.on("intermediateResult",Y=>m(Y)),t.on("progressUpdate",Y=>y(Y)),t.on("galleryImages",Y=>b(Y)),t.on("processingCanceled",()=>{S()}),t.on("imageDeleted",Y=>{E(Y)}),t.on("imageUploaded",Y=>{P(Y)}),t.on("maskImageUploaded",Y=>{k(Y)}),t.on("systemConfig",Y=>{L(Y)}),t.on("modelChanged",Y=>{I(Y)}),t.on("modelChangeFailed",Y=>{O(Y)}),n=!0),a.type){case"socketio/generateImage":{N(a.payload);break}case"socketio/runESRGAN":{D(a.payload);break}case"socketio/runFacetool":{F(a.payload);break}case"socketio/deleteImage":{U(a.payload);break}case"socketio/requestImages":{W(a.payload);break}case"socketio/requestNewImages":{q(a.payload);break}case"socketio/cancelProcessing":{pe();break}case"socketio/uploadImage":{fe(a.payload);break}case"socketio/uploadMaskImage":{ye(a.payload);break}case"socketio/requestSystemConfig":{Pe();break}case"socketio/requestModelChange":{xe(a.payload);break}}o(a)}},lCe={key:"root",storage:Ev,blacklist:["gallery","system","inpainting"]},uCe={key:"system",storage:Ev,blacklist:["isCancelable","isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},cCe={key:"gallery",storage:Ev,whitelist:["galleryWidth","shouldPinGallery","shouldShowGallery","galleryScrollPosition","galleryImageMinimumWidth","galleryImageObjectFit"]},dCe={key:"inpainting",storage:Ev,blacklist:["pastLines","futuresLines","cursorPosition"]},fCe=RF({options:r6e,gallery:o3(cCe,Bye),system:o3(uCe,i2e),inpainting:o3(dCe,kye)}),hCe=o3(lCe,fCe),RH=zge({reducer:hCe,middleware:e=>e({serializableCheck:!1}).concat(sCe())}),ct=wme,$e=dme;function y3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?y3=function(n){return typeof n}:y3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},y3(e)}function pCe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rI(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),NH=()=>w(Dn,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:w(A0,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),yCe=jt(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),xCe=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=$e(yCe),i=t?Math.round(t*100/n):0;return w(nF,{value:i,isIndeterminate:e&&!r,className:"progress-bar"})};function bCe(e){const{title:t,hotkey:n,description:r}=e;return te("div",{className:"hotkey-modal-item",children:[te("div",{className:"hotkey-info",children:[w("p",{className:"hotkey-title",children:t}),r&&w("p",{className:"hotkey-description",children:r})]}),w("div",{className:"hotkey-key",children:n})]})}function SCe({children:e}){const{isOpen:t,onOpen:n,onClose:r}=d5(),i=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Toggle Options",desc:"Open and close the options panel",hotkey:"O"},{title:"Pin Options",desc:"Pin the options panel",hotkey:"Shift+O"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],o=[{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send current image to Image to Image",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"}],a=[{title:"Previous Image",desc:"Display the previous image in gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in gallery",hotkey:"Arrow right"},{title:"Toggle Gallery Pin",desc:"Pins and unpins the gallery to the UI",hotkey:"Shift+G"},{title:"Increase Gallery Image Size",desc:"Increases gallery thumbnails size",hotkey:"Shift+Up"},{title:"Decrease Gallery Image Size",desc:"Decreases gallery thumbnails size",hotkey:"Shift+Down"},{title:"Reset Gallery Image Size",desc:"Resets image gallery size",hotkey:"Shift+R"}],s=[{title:"Select Brush",desc:"Selects the inpainting brush",hotkey:"B"},{title:"Select Eraser",desc:"Selects the inpainting eraser",hotkey:"E"},{title:"Quick Toggle Brush/Eraser",desc:"Quick toggle between brush and eraser",hotkey:"X"},{title:"Decrease Brush Size",desc:"Decreases the size of the inpainting brush/eraser",hotkey:"["},{title:"Increase Brush Size",desc:"Increases the size of the inpainting brush/eraser",hotkey:"]"},{title:"Hide Mask",desc:"Hide and unhide mask",hotkey:"H"},{title:"Decrease Mask Opacity",desc:"Decreases the opacity of the mask",hotkey:"Shift+["},{title:"Increase Mask Opacity",desc:"Increases the opacity of the mask",hotkey:"Shift+]"},{title:"Invert Mask",desc:"Invert the mask preview",hotkey:"Shift+M"},{title:"Clear Mask",desc:"Clear the entire mask",hotkey:"Shift+C"},{title:"Undo Stroke",desc:"Undo a brush stroke",hotkey:"Ctrl+Z"},{title:"Redo Stroke",desc:"Redo a brush stroke",hotkey:"Ctrl+Shift+Z, Ctrl+Y"},{title:"Lock Bounding Box",desc:"Locks the bounding box",hotkey:"M"},{title:"Quick Toggle Lock Bounding Box",desc:"Hold to toggle locking the bounding box",hotkey:"Space"},{title:"Expand Inpainting Area",desc:"Expand your inpainting work area",hotkey:"Shift+J"}],l=d=>{const p=[];return d.forEach((g,m)=>{p.push(w(bCe,{title:g.title,description:g.desc,hotkey:g.hotkey},m))}),w("div",{className:"hotkey-modal-category",children:p})};return te(Fn,{children:[C.exports.cloneElement(e,{onClick:n}),te(v0,{isOpen:t,onClose:r,children:[w(Km,{}),te(qm,{className:"hotkeys-modal",children:[w(a7,{}),w("h1",{children:"Keyboard Shorcuts"}),w("div",{className:"hotkeys-modal-items",children:te(N4,{allowMultiple:!0,children:[te(Sf,{children:[te(xf,{className:"hotkeys-modal-button",children:[w("h2",{children:"App Hotkeys"}),w(bf,{})]}),w(wf,{children:l(i)})]}),te(Sf,{children:[te(xf,{className:"hotkeys-modal-button",children:[w("h2",{children:"General Hotkeys"}),w(bf,{})]}),w(wf,{children:l(o)})]}),te(Sf,{children:[te(xf,{className:"hotkeys-modal-button",children:[w("h2",{children:"Gallery Hotkeys"}),w(bf,{})]}),w(wf,{children:l(a)})]}),te(Sf,{children:[te(xf,{className:"hotkeys-modal-button",children:[w("h2",{children:"Inpainting Hotkeys"}),w(bf,{})]}),w(wf,{children:l(s)})]})]})})]})]})]})}const wCe=e=>{const{isProcessing:t,isConnected:n}=$e(l=>l.system),r=ct(),{name:i,status:o,description:a}=e,s=()=>{r(J2e(i))};return te("div",{className:"model-list-item",children:[w(Xr,{label:a,hasArrow:!0,placement:"bottom",children:w("div",{className:"model-list-item-name",children:i})}),w(LD,{}),w("div",{className:`model-list-item-status ${o.split(" ").join("-")}`,children:o}),w("div",{className:"model-list-item-load-btn",children:w(Na,{size:"sm",onClick:s,isDisabled:o==="active"||t||!n,children:"Load"})})]})},CCe=jt(e=>e.system,e=>{const t=Wt.map(e.model_list,(r,i)=>({name:i,...r})),n=t.find(r=>r.status==="active");return{models:t,activeModel:n}}),_Ce=()=>{const{models:e}=$e(CCe);return w("div",{className:"model-list",children:w(N4,{allowToggle:!0,children:te(Sf,{children:[w(xf,{children:te("div",{className:"model-list-button",children:[w("h2",{children:"Models"}),w(bf,{})]})}),w(wf,{children:w("div",{className:"model-list-list",children:e.map((t,n)=>w(wCe,{name:t.name,status:t.status,description:t.description},n))})})]})})})};function oI({settingTitle:e,isChecked:t,dispatcher:n}){const r=ct();return w(Su,{styleClass:"settings-modal-item",label:e,isChecked:t,onChange:i=>r(n(i.target.checked))})}function kCe({settingTitle:e,validValues:t,defaultValue:n,dispatcher:r}){const i=ct();return w(N0,{styleClass:"settings-modal-item",label:e,validValues:t,defaultValue:n,onChange:o=>i(r(o.target.value))})}const ECe=jt(e=>e.system,e=>{const{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,model_list:i}=e;return{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,models:Wt.map(i,(o,a)=>a)}},{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),PCe=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=d5(),{isOpen:i,onOpen:o,onClose:a}=d5(),{shouldDisplayInProgressType:s,shouldConfirmOnDelete:l,shouldDisplayGuides:d}=$e(ECe),p=()=>{qH.purge().then(()=>{r(),o()})};return te(Fn,{children:[C.exports.cloneElement(e,{onClick:n}),te(v0,{isOpen:t,onClose:r,children:[w(Km,{}),te(qm,{className:"settings-modal",children:[w(l7,{className:"settings-modal-header",children:"Settings"}),w(a7,{}),te(g5,{className:"settings-modal-content",children:[w(_Ce,{}),te("div",{className:"settings-modal-items",children:[w(kCe,{settingTitle:"Display In-Progress Images",validValues:Eve,defaultValue:s,dispatcher:Xve}),w(oI,{settingTitle:"Confirm on Delete",isChecked:l,dispatcher:uB}),w(oI,{settingTitle:"Display Help Icons",isChecked:d,dispatcher:t2e})]}),te("div",{className:"settings-modal-reset",children:[w(Af,{size:"md",children:"Reset Web UI"}),w(wo,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),w(wo,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),w(Na,{colorScheme:"red",onClick:p,children:"Reset Web UI"})]})]}),w(s7,{children:w(Na,{onClick:r,children:"Close"})})]})]}),te(v0,{closeOnOverlayClick:!1,isOpen:i,onClose:a,isCentered:!0,children:[w(Km,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),w(qm,{children:w(g5,{pb:6,pt:6,children:w(Dn,{justifyContent:"center",children:w(wo,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},TCe=jt(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),LCe=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:i,hasError:o,wasErrorSeen:a}=$e(TCe),s=ct();let l;e&&!o?l="status-good":l="status-bad";let d=i;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(l="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),w(Xr,{label:o&&!a?"Click to clear, check logs for details":void 0,children:w(wo,{cursor:o&&!a?"pointer":"initial",onClick:()=>{(o||!a)&&s(cB())},className:`status ${l}`,children:d})})},ACe=()=>{const{colorMode:e,toggleColorMode:t}=n4();Dt("shift+d",()=>{t()},[e,t]);const n=e=="light"?w(O2e,{}):w(H2e,{}),r=e=="light"?18:20;return te("div",{className:"site-header",children:[te("div",{className:"site-header-left-side",children:[w("img",{src:LB,alt:"invoke-ai-logo"}),te("h1",{children:["invoke ",w("strong",{children:"ai"})]})]}),te("div",{className:"site-header-right-side",children:[w(LCe,{}),w(SCe,{children:w(Bi,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:w(g2e,{})})}),w(Xr,{hasArrow:!0,label:"Theme",placement:"bottom",children:w(Bi,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})}),w(Xr,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:w(Bi,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:w(jp,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:w(hB,{})})})}),w(Xr,{hasArrow:!0,label:"Github",placement:"bottom",children:w(Bi,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:w(jp,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:w(_2e,{})})})}),w(Xr,{hasArrow:!0,label:"Discord",placement:"bottom",children:w(Bi,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:w(jp,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:w(C2e,{})})})}),w(PCe,{children:w(Bi,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:w(d2e,{})})})]})]})},ICe=jt(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),MCe=jt(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:la.exports.isEqual}}),RCe=()=>{const e=ct(),t=$e(ICe),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:i}=$e(MCe),[o,a]=C.exports.useState(!0),s=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{s.current!==null&&o&&(s.current.scrollTop=s.current.scrollHeight)},[o,t,n]);const l=()=>{e(cB()),e(LL(!n))};return Dt("`",()=>{e(LL(!n))},[n]),te(Fn,{children:[n&&w(FB,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0,zIndex:20},maxHeight:"90vh",children:w("div",{className:"console",ref:s,onScroll:()=>{!s.current||o&&s.current.scrollTop{const{timestamp:m,message:y,level:b}=p;return te("div",{className:`console-entry console-${b}-color`,children:[te("p",{className:"console-timestamp",children:[m,":"]}),w("p",{className:"console-message",children:y})]},g)})})}),n&&w(Xr,{hasArrow:!0,label:o?"Autoscroll On":"Autoscroll Off",children:w(Bi,{className:"console-autoscroll-icon-button","data-autoscroll-enabled":o,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:w(k2e,{}),onClick:()=>a(!o)})}),w(Xr,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:w(Bi,{className:"console-toggle-icon-button","data-error-seen":r||!i,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?w(R2e,{}):w(L2e,{}),onClick:l})})]})};function OCe(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(i=>i)};(!{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}var NCe=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Mv(e,t){var n=DCe(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function DCe(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),i=NCe.get(r);i&&Object.defineProperty(e,"type",{value:i,writable:!1,configurable:!1,enumerable:!0})}return e}var zCe=[".DS_Store","Thumbs.db"];function FCe(e){return T0(this,void 0,void 0,function(){return L0(this,function(t){return D5(e)&&BCe(e.dataTransfer)?[2,VCe(e.dataTransfer,e.type)]:$Ce(e)?[2,HCe(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,WCe(e)]:[2,[]]})})}function BCe(e){return D5(e)}function $Ce(e){return D5(e)&&D5(e.target)}function D5(e){return typeof e=="object"&&e!==null}function HCe(e){return $C(e.target.files).map(function(t){return Mv(t)})}function WCe(e){return T0(this,void 0,void 0,function(){var t;return L0(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Mv(r)})]}})})}function VCe(e,t){return T0(this,void 0,void 0,function(){var n,r;return L0(this,function(i){switch(i.label){case 0:return e.items?(n=$C(e.items).filter(function(o){return o.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(UCe))]):[3,2];case 1:return r=i.sent(),[2,aI(DH(r))];case 2:return[2,aI($C(e.files).map(function(o){return Mv(o)}))]}})})}function aI(e){return e.filter(function(t){return zCe.indexOf(t.name)===-1})}function $C(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,dI(n)];if(e.sizen)return[!1,dI(n)]}return[!0,null]}function df(e){return e!=null}function a9e(e){var t=e.files,n=e.accept,r=e.minSize,i=e.maxSize,o=e.multiple,a=e.maxFiles,s=e.validator;return!o&&t.length>1||o&&a>=1&&t.length>a?!1:t.every(function(l){var d=$H(l,n),p=rv(d,1),g=p[0],m=HH(l,r,i),y=rv(m,1),b=y[0],S=s?s(l):null;return g&&b&&!S})}function z5(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Ly(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function hI(e){e.preventDefault()}function s9e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function l9e(e){return e.indexOf("Edge/")!==-1}function u9e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return s9e(e)||l9e(e)}function nl(){for(var e=arguments.length,t=new Array(e),n=0;n1?i-1:0),a=1;ae.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function E9e(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var p_=C.exports.forwardRef(function(e,t){var n=e.children,r=F5(e,g9e),i=jH(r),o=i.open,a=F5(i,m9e);return C.exports.useImperativeHandle(t,function(){return{open:o}},[o]),w(C.exports.Fragment,{children:n(sr(sr({},a),{},{open:o}))})});p_.displayName="Dropzone";var GH={disabled:!1,getFilesFromEvent:FCe,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};p_.defaultProps=GH;p_.propTypes={children:An.exports.func,accept:An.exports.objectOf(An.exports.arrayOf(An.exports.string)),multiple:An.exports.bool,preventDropOnDocument:An.exports.bool,noClick:An.exports.bool,noKeyboard:An.exports.bool,noDrag:An.exports.bool,noDragEventsBubbling:An.exports.bool,minSize:An.exports.number,maxSize:An.exports.number,maxFiles:An.exports.number,disabled:An.exports.bool,getFilesFromEvent:An.exports.func,onFileDialogCancel:An.exports.func,onFileDialogOpen:An.exports.func,useFsAccessApi:An.exports.bool,autoFocus:An.exports.bool,onDragEnter:An.exports.func,onDragLeave:An.exports.func,onDragOver:An.exports.func,onDrop:An.exports.func,onDropAccepted:An.exports.func,onDropRejected:An.exports.func,onError:An.exports.func,validator:An.exports.func};var UC={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function jH(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=sr(sr({},GH),e),n=t.accept,r=t.disabled,i=t.getFilesFromEvent,o=t.maxSize,a=t.minSize,s=t.multiple,l=t.maxFiles,d=t.onDragEnter,p=t.onDragLeave,g=t.onDragOver,m=t.onDrop,y=t.onDropAccepted,b=t.onDropRejected,S=t.onFileDialogCancel,E=t.onFileDialogOpen,P=t.useFsAccessApi,k=t.autoFocus,L=t.preventDropOnDocument,I=t.noClick,O=t.noKeyboard,N=t.noDrag,D=t.noDragEventsBubbling,F=t.onError,U=t.validator,W=C.exports.useMemo(function(){return f9e(n)},[n]),q=C.exports.useMemo(function(){return d9e(n)},[n]),pe=C.exports.useMemo(function(){return typeof E=="function"?E:gI},[E]),fe=C.exports.useMemo(function(){return typeof S=="function"?S:gI},[S]),ye=C.exports.useRef(null),Pe=C.exports.useRef(null),xe=C.exports.useReducer(P9e,UC),Y=VS(xe,2),V=Y[0],ae=Y[1],oe=V.isFocused,X=V.isFileDialogActive,me=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&P&&c9e()),ve=function(){!me.current&&X&&setTimeout(function(){if(Pe.current){var Ze=Pe.current.files;Ze.length||(ae({type:"closeDialog"}),fe())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",ve,!1),function(){window.removeEventListener("focus",ve,!1)}},[Pe,X,fe,me]);var Se=C.exports.useRef([]),He=function(Ze){ye.current&&ye.current.contains(Ze.target)||(Ze.preventDefault(),Se.current=[])};C.exports.useEffect(function(){return L&&(document.addEventListener("dragover",hI,!1),document.addEventListener("drop",He,!1)),function(){L&&(document.removeEventListener("dragover",hI),document.removeEventListener("drop",He))}},[ye,L]),C.exports.useEffect(function(){return!r&&k&&ye.current&&ye.current.focus(),function(){}},[ye,k,r]);var je=C.exports.useCallback(function(Me){F?F(Me):console.error(Me)},[F]),ut=C.exports.useCallback(function(Me){Me.preventDefault(),Me.persist(),bt(Me),Se.current=[].concat(x9e(Se.current),[Me.target]),Ly(Me)&&Promise.resolve(i(Me)).then(function(Ze){if(!(z5(Me)&&!D)){var Kt=Ze.length,Vt=Kt>0&&a9e({files:Ze,accept:W,minSize:a,maxSize:o,multiple:s,maxFiles:l,validator:U}),_e=Kt>0&&!Vt;ae({isDragAccept:Vt,isDragReject:_e,isDragActive:!0,type:"setDraggedFiles"}),d&&d(Me)}}).catch(function(Ze){return je(Ze)})},[i,d,je,D,W,a,o,s,l,U]),qe=C.exports.useCallback(function(Me){Me.preventDefault(),Me.persist(),bt(Me);var Ze=Ly(Me);if(Ze&&Me.dataTransfer)try{Me.dataTransfer.dropEffect="copy"}catch{}return Ze&&g&&g(Me),!1},[g,D]),at=C.exports.useCallback(function(Me){Me.preventDefault(),Me.persist(),bt(Me);var Ze=Se.current.filter(function(Vt){return ye.current&&ye.current.contains(Vt)}),Kt=Ze.indexOf(Me.target);Kt!==-1&&Ze.splice(Kt,1),Se.current=Ze,!(Ze.length>0)&&(ae({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Ly(Me)&&p&&p(Me))},[ye,p,D]),et=C.exports.useCallback(function(Me,Ze){var Kt=[],Vt=[];Me.forEach(function(_e){var kt=$H(_e,W),Ne=VS(kt,2),tt=Ne[0],nn=Ne[1],Mn=HH(_e,a,o),Fe=VS(Mn,2),lt=Fe[0],Xe=Fe[1],Lt=U?U(_e):null;if(tt&<&&!Lt)Kt.push(_e);else{var Zt=[nn,Xe];Lt&&(Zt=Zt.concat(Lt)),Vt.push({file:_e,errors:Zt.filter(function(Zn){return Zn})})}}),(!s&&Kt.length>1||s&&l>=1&&Kt.length>l)&&(Kt.forEach(function(_e){Vt.push({file:_e,errors:[o9e]})}),Kt.splice(0)),ae({acceptedFiles:Kt,fileRejections:Vt,type:"setFiles"}),m&&m(Kt,Vt,Ze),Vt.length>0&&b&&b(Vt,Ze),Kt.length>0&&y&&y(Kt,Ze)},[ae,s,W,a,o,l,m,y,b,U]),it=C.exports.useCallback(function(Me){Me.preventDefault(),Me.persist(),bt(Me),Se.current=[],Ly(Me)&&Promise.resolve(i(Me)).then(function(Ze){z5(Me)&&!D||et(Ze,Me)}).catch(function(Ze){return je(Ze)}),ae({type:"reset"})},[i,et,je,D]),At=C.exports.useCallback(function(){if(me.current){ae({type:"openDialog"}),pe();var Me={multiple:s,types:q};window.showOpenFilePicker(Me).then(function(Ze){return i(Ze)}).then(function(Ze){et(Ze,null),ae({type:"closeDialog"})}).catch(function(Ze){h9e(Ze)?(fe(Ze),ae({type:"closeDialog"})):p9e(Ze)?(me.current=!1,Pe.current?(Pe.current.value=null,Pe.current.click()):je(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):je(Ze)});return}Pe.current&&(ae({type:"openDialog"}),pe(),Pe.current.value=null,Pe.current.click())},[ae,pe,fe,P,et,je,q,s]),wt=C.exports.useCallback(function(Me){!ye.current||!ye.current.isEqualNode(Me.target)||(Me.key===" "||Me.key==="Enter"||Me.keyCode===32||Me.keyCode===13)&&(Me.preventDefault(),At())},[ye,At]),Le=C.exports.useCallback(function(){ae({type:"focus"})},[]),ot=C.exports.useCallback(function(){ae({type:"blur"})},[]),Et=C.exports.useCallback(function(){I||(u9e()?setTimeout(At,0):At())},[I,At]),rt=function(Ze){return r?null:Ze},pt=function(Ze){return O?null:rt(Ze)},Sn=function(Ze){return N?null:rt(Ze)},bt=function(Ze){D&&Ze.stopPropagation()},qt=C.exports.useMemo(function(){return function(){var Me=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Ze=Me.refKey,Kt=Ze===void 0?"ref":Ze,Vt=Me.role,_e=Me.onKeyDown,kt=Me.onFocus,Ne=Me.onBlur,tt=Me.onClick,nn=Me.onDragEnter,Mn=Me.onDragOver,Fe=Me.onDragLeave,lt=Me.onDrop,Xe=F5(Me,v9e);return sr(sr(VC({onKeyDown:pt(nl(_e,wt)),onFocus:pt(nl(kt,Le)),onBlur:pt(nl(Ne,ot)),onClick:rt(nl(tt,Et)),onDragEnter:Sn(nl(nn,ut)),onDragOver:Sn(nl(Mn,qe)),onDragLeave:Sn(nl(Fe,at)),onDrop:Sn(nl(lt,it)),role:typeof Vt=="string"&&Vt!==""?Vt:"presentation"},Kt,ye),!r&&!O?{tabIndex:0}:{}),Xe)}},[ye,wt,Le,ot,Et,ut,qe,at,it,O,N,r]),wn=C.exports.useCallback(function(Me){Me.stopPropagation()},[]),pn=C.exports.useMemo(function(){return function(){var Me=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Ze=Me.refKey,Kt=Ze===void 0?"ref":Ze,Vt=Me.onChange,_e=Me.onClick,kt=F5(Me,y9e),Ne=VC({accept:W,multiple:s,type:"file",style:{display:"none"},onChange:rt(nl(Vt,it)),onClick:rt(nl(_e,wn)),tabIndex:-1},Kt,Pe);return sr(sr({},Ne),kt)}},[Pe,n,s,it,r]);return sr(sr({},V),{},{isFocused:oe&&!r,getRootProps:qt,getInputProps:pn,rootRef:ye,inputRef:Pe,open:rt(At)})}function P9e(e,t){switch(t.type){case"focus":return sr(sr({},e),{},{isFocused:!0});case"blur":return sr(sr({},e),{},{isFocused:!1});case"openDialog":return sr(sr({},UC),{},{isFileDialogActive:!0});case"closeDialog":return sr(sr({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return sr(sr({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return sr(sr({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return sr({},UC);default:return e}}function gI(){}const T9e=e=>{const{children:t}=e,n=ct(),r=$e(Ga),i=od({}),[o,a]=C.exports.useState(!1),s=C.exports.useCallback(E=>{a(!0);const P=E.errors.reduce((k,L)=>k+` +`+L.message,"");i({title:"Upload failed",description:P,status:"error",isClosable:!0})},[i]),l=C.exports.useCallback(E=>{a(!0);const P={file:E};["img2img","inpainting"].includes(r)&&(P.destination=r),n(NL(P))},[n,r]),d=C.exports.useCallback((E,P)=>{P.forEach(k=>{s(k)}),E.forEach(k=>{l(k)})},[l,s]),{getRootProps:p,getInputProps:g,isDragAccept:m,isDragReject:y,isDragActive:b,open:S}=jH({accept:{"image/png":[".png"],"image/jpeg":[".jpg",".jpeg",".png"]},noClick:!0,onDrop:d,maxFiles:1});return C.exports.useEffect(()=>{const E=P=>{const k=P.clipboardData?.items;if(!k)return;const L=[];for(const N of k)N.kind==="file"&&["image/png","image/jpg"].includes(N.type)&&L.push(N);if(!L.length)return;if(P.stopImmediatePropagation(),L.length>1){i({description:"Multiple images pasted, may only upload one image at a time",status:"error",isClosable:!0});return}const I=L[0].getAsFile();if(!I){i({description:"Unable to load file",status:"error",isClosable:!0});return}const O={file:I};["img2img","inpainting"].includes(r)&&(O.destination=r),n(NL(O))};return document.addEventListener("paste",E),()=>{document.removeEventListener("paste",E)}},[n,i,r]),w(AB.Provider,{value:S,children:te("div",{...p({style:{}}),children:[w("input",{...g()}),t,b&&te("div",{className:"dropzone-container",children:[m&&w("div",{className:"dropzone-overlay is-drag-accept",children:w(Af,{size:"lg",children:"Drop Images"})}),y&&te("div",{className:"dropzone-overlay is-drag-reject",children:[w(Af,{size:"lg",children:"Invalid Upload"}),w(Af,{size:"md",children:"Must be single JPEG or PNG image"})]}),o&&w("div",{className:"dropzone-overlay is-handling-upload",children:w(A0,{})})]})]})})},L9e=()=>{const e=ct();return w(sn,{tooltip:"Show Gallery (G)",tooltipPlacement:"top","aria-label":"Show Gallery",styleClass:"floating-show-hide-button right",onMouseOver:()=>{e(nC(!0))},children:w(pB,{})})};function A9e(e){return mt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M32 384h272v32H32zM400 384h80v32h-80zM384 447.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 240h80v32H32zM208 240h272v32H208zM192 303.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 96h272v32H32zM400 96h80v32h-80zM384 159.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]}]})(e)}const I9e=jt(e=>e.options,e=>{const{shouldPinOptionsPanel:t,shouldShowOptionsPanel:n}=e;return{shouldShowProcessButtons:!t||!n}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),M9e=()=>{const e=ct(),{shouldShowProcessButtons:t}=$e(I9e);return te("div",{className:"show-hide-button-options",children:[w(sn,{tooltip:"Show Options Panel (O)",tooltipPlacement:"top","aria-label":"Show Options Panel",onClick:()=>{e(MC(!0))},children:w(A9e,{})}),t&&te(Fn,{children:[w(yB,{iconButton:!0}),w(bB,{}),w(xB,{})]})]})};OCe();const R9e=jt([e=>e.gallery,e=>e.options,e=>e.system,Ga],(e,t,n,r)=>{const{shouldShowGallery:i,shouldHoldGalleryOpen:o,shouldPinGallery:a}=e,{shouldShowOptionsPanel:s,shouldHoldOptionsPanelOpen:l,shouldPinOptionsPanel:d}=t,p=Wt.reduce(n.model_list,(y,b,S)=>(b.status==="active"&&(y=S),y),""),g=!(i||o&&!a),m=!(s||l&&!d)&&["txt2img","img2img","inpainting"].includes(r);return{modelStatusText:p,shouldShowGalleryButton:g,shouldShowOptionsPanelButton:m}},{memoizeOptions:{resultEqualityCheck:Wt.isEqual}}),O9e=()=>{const e=ct(),[t,n]=C.exports.useState(!1),{shouldShowGalleryButton:r,shouldShowOptionsPanelButton:i}=$e(R9e);return C.exports.useEffect(()=>{e(Q2e()),n(!0)},[e]),t?w("div",{className:"App",children:te(T9e,{children:[w(xCe,{}),te("div",{className:"app-content",children:[w(ACe,{}),w(zwe,{})]}),w("div",{className:"app-console",children:w(RCe,{})}),r&&w(L9e,{}),i&&w(M9e,{})]})}):w(NH,{})};const qH=Wme(RH);GS.createRoot(document.getElementById("root")).render(w(ne.StrictMode,{children:w(xme,{store:RH,children:w(OH,{loading:w(NH,{}),persistor:qH,children:te(oge,{theme:iI,children:[w(QK,{initialColorMode:iI.config.initialColorMode}),w(O9e,{})]})})})})); diff --git a/frontend/dist/assets/index.bf9dd1fc.js b/frontend/dist/assets/index.bf9dd1fc.js new file mode 100644 index 0000000000..988ea2d0ff --- /dev/null +++ b/frontend/dist/assets/index.bf9dd1fc.js @@ -0,0 +1,517 @@ +function zj(e,t){for(var n=0;nr[i]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerpolicy&&(o.referrerPolicy=i.referrerpolicy),i.crossorigin==="use-credentials"?o.credentials="include":i.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=n(i);fetch(i.href,o)}})();var Su=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Y8(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Jt={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var rv=Symbol.for("react.element"),Fj=Symbol.for("react.portal"),Bj=Symbol.for("react.fragment"),$j=Symbol.for("react.strict_mode"),Hj=Symbol.for("react.profiler"),Wj=Symbol.for("react.provider"),Vj=Symbol.for("react.context"),Uj=Symbol.for("react.forward_ref"),Gj=Symbol.for("react.suspense"),jj=Symbol.for("react.memo"),qj=Symbol.for("react.lazy"),xk=Symbol.iterator;function Kj(e){return e===null||typeof e!="object"?null:(e=xk&&e[xk]||e["@@iterator"],typeof e=="function"?e:null)}var II={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},MI=Object.assign,RI={};function F1(e,t,n){this.props=e,this.context=t,this.refs=RI,this.updater=n||II}F1.prototype.isReactComponent={};F1.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};F1.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function OI(){}OI.prototype=F1.prototype;function X8(e,t,n){this.props=e,this.context=t,this.refs=RI,this.updater=n||II}var Q8=X8.prototype=new OI;Q8.constructor=X8;MI(Q8,F1.prototype);Q8.isPureReactComponent=!0;var bk=Array.isArray,NI=Object.prototype.hasOwnProperty,J8={current:null},DI={key:!0,ref:!0,__self:!0,__source:!0};function zI(e,t,n){var r,i={},o=null,a=null;if(t!=null)for(r in t.ref!==void 0&&(a=t.ref),t.key!==void 0&&(o=""+t.key),t)NI.call(t,r)&&!DI.hasOwnProperty(r)&&(i[r]=t[r]);var s=arguments.length-2;if(s===1)i.children=n;else if(1>>1,ie=U[W];if(0>>1;Wi(De,Q))Mei(Ue,De)?(U[W]=Ue,U[Me]=Q,W=Me):(U[W]=De,U[Se]=Q,W=Se);else if(Mei(Ue,Q))U[W]=Ue,U[Me]=Q,W=Me;else break e}}return ee}function i(U,ee){var Q=U.sortIndex-ee.sortIndex;return Q!==0?Q:U.id-ee.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var a=Date,s=a.now();e.unstable_now=function(){return a.now()-s}}var l=[],d=[],p=1,g=null,m=3,y=!1,b=!1,w=!1,P=typeof setTimeout=="function"?setTimeout:null,E=typeof clearTimeout=="function"?clearTimeout:null,k=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function L(U){for(var ee=n(d);ee!==null;){if(ee.callback===null)r(d);else if(ee.startTime<=U)r(d),ee.sortIndex=ee.expirationTime,t(l,ee);else break;ee=n(d)}}function M(U){if(w=!1,L(U),!b)if(n(l)!==null)b=!0,be(N);else{var ee=n(d);ee!==null&&J(M,ee.startTime-U)}}function N(U,ee){b=!1,w&&(w=!1,E(z),z=-1),y=!0;var Q=m;try{for(L(ee),g=n(l);g!==null&&(!(g.expirationTime>ee)||U&&!Y());){var W=g.callback;if(typeof W=="function"){g.callback=null,m=g.priorityLevel;var ie=W(g.expirationTime<=ee);ee=e.unstable_now(),typeof ie=="function"?g.callback=ie:g===n(l)&&r(l),L(ee)}else r(l);g=n(l)}if(g!==null)var de=!0;else{var Se=n(d);Se!==null&&J(M,Se.startTime-ee),de=!1}return de}finally{g=null,m=Q,y=!1}}var F=!1,B=null,z=-1,j=5,q=-1;function Y(){return!(e.unstable_now()-qU||125W?(U.sortIndex=Q,t(d,U),n(l)===null&&U===n(d)&&(w?(E(z),z=-1):w=!0,J(M,Q-W))):(U.sortIndex=ie,t(l,U),b||y||(b=!0,be(N))),U},e.unstable_shouldYield=Y,e.unstable_wrapCallback=function(U){var ee=m;return function(){var Q=m;m=ee;try{return U.apply(this,arguments)}finally{m=Q}}}})(FI);(function(e){e.exports=FI})(Zp);/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var BI=C.exports,va=Zp.exports;function ze(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),KS=Object.prototype.hasOwnProperty,Jj=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,wk={},Ck={};function eq(e){return KS.call(Ck,e)?!0:KS.call(wk,e)?!1:Jj.test(e)?Ck[e]=!0:(wk[e]=!0,!1)}function tq(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function nq(e,t,n,r){if(t===null||typeof t>"u"||tq(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function xo(e,t,n,r,i,o,a){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=a}var Fi={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Fi[e]=new xo(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Fi[t]=new xo(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){Fi[e]=new xo(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Fi[e]=new xo(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Fi[e]=new xo(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){Fi[e]=new xo(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){Fi[e]=new xo(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){Fi[e]=new xo(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){Fi[e]=new xo(e,5,!1,e.toLowerCase(),null,!1,!1)});var tC=/[\-:]([a-z])/g;function nC(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(tC,nC);Fi[t]=new xo(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(tC,nC);Fi[t]=new xo(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(tC,nC);Fi[t]=new xo(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){Fi[e]=new xo(e,1,!1,e.toLowerCase(),null,!1,!1)});Fi.xlinkHref=new xo("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){Fi[e]=new xo(e,1,!1,e.toLowerCase(),null,!0,!0)});function rC(e,t,n,r){var i=Fi.hasOwnProperty(t)?Fi[t]:null;(i!==null?i.type!==0:r||!(2s||i[a]!==o[s]){var l=` +`+i[a].replace(" at new "," at ");return e.displayName&&l.includes("")&&(l=l.replace("",e.displayName)),l}while(1<=a&&0<=s);break}}}finally{ab=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?mg(e):""}function rq(e){switch(e.tag){case 5:return mg(e.type);case 16:return mg("Lazy");case 13:return mg("Suspense");case 19:return mg("SuspenseList");case 0:case 2:case 15:return e=sb(e.type,!1),e;case 11:return e=sb(e.type.render,!1),e;case 1:return e=sb(e.type,!0),e;default:return""}}function QS(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Mp:return"Fragment";case Ip:return"Portal";case ZS:return"Profiler";case iC:return"StrictMode";case YS:return"Suspense";case XS:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case WI:return(e.displayName||"Context")+".Consumer";case HI:return(e._context.displayName||"Context")+".Provider";case oC:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case aC:return t=e.displayName||null,t!==null?t:QS(e.type)||"Memo";case Fc:t=e._payload,e=e._init;try{return QS(e(t))}catch{}}return null}function iq(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return QS(t);case 8:return t===iC?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function ld(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function UI(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function oq(e){var t=UI(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var i=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(a){r=""+a,o.call(this,a)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(a){r=""+a},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function _2(e){e._valueTracker||(e._valueTracker=oq(e))}function GI(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=UI(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function _3(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function JS(e,t){var n=t.checked;return gr({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function kk(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=ld(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function jI(e,t){t=t.checked,t!=null&&rC(e,"checked",t,!1)}function ew(e,t){jI(e,t);var n=ld(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?tw(e,t.type,n):t.hasOwnProperty("defaultValue")&&tw(e,t.type,ld(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function Ek(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function tw(e,t,n){(t!=="number"||_3(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var vg=Array.isArray;function Yp(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i"+t.valueOf().toString()+"",t=k2.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function cm(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Rg={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},aq=["Webkit","ms","Moz","O"];Object.keys(Rg).forEach(function(e){aq.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Rg[t]=Rg[e]})});function YI(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Rg.hasOwnProperty(e)&&Rg[e]?(""+t).trim():t+"px"}function XI(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,i=YI(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}var sq=gr({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function iw(e,t){if(t){if(sq[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(ze(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(ze(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(ze(61))}if(t.style!=null&&typeof t.style!="object")throw Error(ze(62))}}function ow(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var aw=null;function sC(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var sw=null,Xp=null,Qp=null;function Lk(e){if(e=av(e)){if(typeof sw!="function")throw Error(ze(280));var t=e.stateNode;t&&(t=G4(t),sw(e.stateNode,e.type,t))}}function QI(e){Xp?Qp?Qp.push(e):Qp=[e]:Xp=e}function JI(){if(Xp){var e=Xp,t=Qp;if(Qp=Xp=null,Lk(e),t)for(e=0;e>>=0,e===0?32:31-(yq(e)/xq|0)|0}var E2=64,P2=4194304;function yg(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function T3(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,i=e.suspendedLanes,o=e.pingedLanes,a=n&268435455;if(a!==0){var s=a&~i;s!==0?r=yg(s):(o&=a,o!==0&&(r=yg(o)))}else a=n&~i,a!==0?r=yg(a):o!==0&&(r=yg(o));if(r===0)return 0;if(t!==0&&t!==r&&(t&i)===0&&(i=r&-r,o=t&-t,i>=o||i===16&&(o&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function iv(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-As(t),e[t]=n}function Cq(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Ng),Fk=String.fromCharCode(32),Bk=!1;function xM(e,t){switch(e){case"keyup":return Xq.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function bM(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Rp=!1;function Jq(e,t){switch(e){case"compositionend":return bM(t);case"keypress":return t.which!==32?null:(Bk=!0,Fk);case"textInput":return e=t.data,e===Fk&&Bk?null:e;default:return null}}function eK(e,t){if(Rp)return e==="compositionend"||!gC&&xM(e,t)?(e=vM(),zy=fC=jc=null,Rp=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Vk(n)}}function _M(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?_M(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function kM(){for(var e=window,t=_3();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=_3(e.document)}return t}function mC(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function uK(e){var t=kM(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&_M(n.ownerDocument.documentElement,n)){if(r!==null&&mC(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var i=n.textContent.length,o=Math.min(r.start,i);r=r.end===void 0?o:Math.min(r.end,i),!e.extend&&o>r&&(i=r,r=o,o=i),i=Uk(n,o);var a=Uk(n,r);i&&a&&(e.rangeCount!==1||e.anchorNode!==i.node||e.anchorOffset!==i.offset||e.focusNode!==a.node||e.focusOffset!==a.offset)&&(t=t.createRange(),t.setStart(i.node,i.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(a.node,a.offset)):(t.setEnd(a.node,a.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Op=null,hw=null,zg=null,pw=!1;function Gk(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;pw||Op==null||Op!==_3(r)||(r=Op,"selectionStart"in r&&mC(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),zg&&mm(zg,r)||(zg=r,r=I3(hw,"onSelect"),0zp||(e.current=bw[zp],bw[zp]=null,zp--)}function Gn(e,t){zp++,bw[zp]=e.current,e.current=t}var ud={},Xi=yd(ud),Fo=yd(!1),ah=ud;function y1(e,t){var n=e.type.contextTypes;if(!n)return ud;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i={},o;for(o in n)i[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Bo(e){return e=e.childContextTypes,e!=null}function R3(){Xn(Fo),Xn(Xi)}function Qk(e,t,n){if(Xi.current!==ud)throw Error(ze(168));Gn(Xi,t),Gn(Fo,n)}function OM(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var i in r)if(!(i in t))throw Error(ze(108,iq(e)||"Unknown",i));return gr({},n,r)}function O3(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ud,ah=Xi.current,Gn(Xi,e),Gn(Fo,Fo.current),!0}function Jk(e,t,n){var r=e.stateNode;if(!r)throw Error(ze(169));n?(e=OM(e,t,ah),r.__reactInternalMemoizedMergedChildContext=e,Xn(Fo),Xn(Xi),Gn(Xi,e)):Xn(Fo),Gn(Fo,n)}var bu=null,j4=!1,Sb=!1;function NM(e){bu===null?bu=[e]:bu.push(e)}function SK(e){j4=!0,NM(e)}function xd(){if(!Sb&&bu!==null){Sb=!0;var e=0,t=Tn;try{var n=bu;for(Tn=1;e>=a,i-=a,Cu=1<<32-As(t)+i|n<z?(j=B,B=null):j=B.sibling;var q=m(E,B,L[z],M);if(q===null){B===null&&(B=j);break}e&&B&&q.alternate===null&&t(E,B),k=o(q,k,z),F===null?N=q:F.sibling=q,F=q,B=j}if(z===L.length)return n(E,B),rr&&Af(E,z),N;if(B===null){for(;zz?(j=B,B=null):j=B.sibling;var Y=m(E,B,q.value,M);if(Y===null){B===null&&(B=j);break}e&&B&&Y.alternate===null&&t(E,B),k=o(Y,k,z),F===null?N=Y:F.sibling=Y,F=Y,B=j}if(q.done)return n(E,B),rr&&Af(E,z),N;if(B===null){for(;!q.done;z++,q=L.next())q=g(E,q.value,M),q!==null&&(k=o(q,k,z),F===null?N=q:F.sibling=q,F=q);return rr&&Af(E,z),N}for(B=r(E,B);!q.done;z++,q=L.next())q=y(B,E,z,q.value,M),q!==null&&(e&&q.alternate!==null&&B.delete(q.key===null?z:q.key),k=o(q,k,z),F===null?N=q:F.sibling=q,F=q);return e&&B.forEach(function(ge){return t(E,ge)}),rr&&Af(E,z),N}function P(E,k,L,M){if(typeof L=="object"&&L!==null&&L.type===Mp&&L.key===null&&(L=L.props.children),typeof L=="object"&&L!==null){switch(L.$$typeof){case C2:e:{for(var N=L.key,F=k;F!==null;){if(F.key===N){if(N=L.type,N===Mp){if(F.tag===7){n(E,F.sibling),k=i(F,L.props.children),k.return=E,E=k;break e}}else if(F.elementType===N||typeof N=="object"&&N!==null&&N.$$typeof===Fc&&aE(N)===F.type){n(E,F.sibling),k=i(F,L.props),k.ref=J0(E,F,L),k.return=E,E=k;break e}n(E,F);break}else t(E,F);F=F.sibling}L.type===Mp?(k=Qf(L.props.children,E.mode,M,L.key),k.return=E,E=k):(M=Gy(L.type,L.key,L.props,null,E.mode,M),M.ref=J0(E,k,L),M.return=E,E=M)}return a(E);case Ip:e:{for(F=L.key;k!==null;){if(k.key===F)if(k.tag===4&&k.stateNode.containerInfo===L.containerInfo&&k.stateNode.implementation===L.implementation){n(E,k.sibling),k=i(k,L.children||[]),k.return=E,E=k;break e}else{n(E,k);break}else t(E,k);k=k.sibling}k=Lb(L,E.mode,M),k.return=E,E=k}return a(E);case Fc:return F=L._init,P(E,k,F(L._payload),M)}if(vg(L))return b(E,k,L,M);if(K0(L))return w(E,k,L,M);O2(E,L)}return typeof L=="string"&&L!==""||typeof L=="number"?(L=""+L,k!==null&&k.tag===6?(n(E,k.sibling),k=i(k,L),k.return=E,E=k):(n(E,k),k=Tb(L,E.mode,M),k.return=E,E=k),a(E)):n(E,k)}return P}var b1=VM(!0),UM=VM(!1),sv={},_l=yd(sv),bm=yd(sv),Sm=yd(sv);function Wf(e){if(e===sv)throw Error(ze(174));return e}function kC(e,t){switch(Gn(Sm,t),Gn(bm,e),Gn(_l,sv),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:rw(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=rw(t,e)}Xn(_l),Gn(_l,t)}function S1(){Xn(_l),Xn(bm),Xn(Sm)}function GM(e){Wf(Sm.current);var t=Wf(_l.current),n=rw(t,e.type);t!==n&&(Gn(bm,e),Gn(_l,n))}function EC(e){bm.current===e&&(Xn(_l),Xn(bm))}var hr=yd(0);function $3(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var wb=[];function PC(){for(var e=0;en?n:4,e(!0);var r=Cb.transition;Cb.transition={};try{e(!1),t()}finally{Tn=n,Cb.transition=r}}function sR(){return Qa().memoizedState}function kK(e,t,n){var r=id(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},lR(e))uR(t,n);else if(n=BM(e,t,n,r),n!==null){var i=vo();Is(n,e,r,i),cR(n,t,r)}}function EK(e,t,n){var r=id(e),i={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(lR(e))uR(t,i);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var a=t.lastRenderedState,s=o(a,n);if(i.hasEagerState=!0,i.eagerState=s,Rs(s,a)){var l=t.interleaved;l===null?(i.next=i,CC(t)):(i.next=l.next,l.next=i),t.interleaved=i;return}}catch{}finally{}n=BM(e,t,i,r),n!==null&&(i=vo(),Is(n,e,r,i),cR(n,t,r))}}function lR(e){var t=e.alternate;return e===pr||t!==null&&t===pr}function uR(e,t){Fg=H3=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function cR(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,uC(e,n)}}var W3={readContext:Xa,useCallback:ji,useContext:ji,useEffect:ji,useImperativeHandle:ji,useInsertionEffect:ji,useLayoutEffect:ji,useMemo:ji,useReducer:ji,useRef:ji,useState:ji,useDebugValue:ji,useDeferredValue:ji,useTransition:ji,useMutableSource:ji,useSyncExternalStore:ji,useId:ji,unstable_isNewReconciler:!1},PK={readContext:Xa,useCallback:function(e,t){return fl().memoizedState=[e,t===void 0?null:t],e},useContext:Xa,useEffect:lE,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Hy(4194308,4,nR.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Hy(4194308,4,e,t)},useInsertionEffect:function(e,t){return Hy(4,2,e,t)},useMemo:function(e,t){var n=fl();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=fl();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=kK.bind(null,pr,e),[r.memoizedState,e]},useRef:function(e){var t=fl();return e={current:e},t.memoizedState=e},useState:sE,useDebugValue:MC,useDeferredValue:function(e){return fl().memoizedState=e},useTransition:function(){var e=sE(!1),t=e[0];return e=_K.bind(null,e[1]),fl().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=pr,i=fl();if(rr){if(n===void 0)throw Error(ze(407));n=n()}else{if(n=t(),vi===null)throw Error(ze(349));(lh&30)!==0||KM(r,t,n)}i.memoizedState=n;var o={value:n,getSnapshot:t};return i.queue=o,lE(YM.bind(null,r,o,e),[e]),r.flags|=2048,_m(9,ZM.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=fl(),t=vi.identifierPrefix;if(rr){var n=_u,r=Cu;n=(r&~(1<<32-As(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=wm++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=a.createElement(n,{is:r.is}):(e=a.createElement(n),n==="select"&&(a=e,r.multiple?a.multiple=!0:r.size&&(a.size=r.size))):e=a.createElementNS(e,n),e[xl]=t,e[xm]=r,xR(e,t,!1,!1),t.stateNode=e;e:{switch(a=ow(n,r),n){case"dialog":Zn("cancel",e),Zn("close",e),i=r;break;case"iframe":case"object":case"embed":Zn("load",e),i=r;break;case"video":case"audio":for(i=0;iC1&&(t.flags|=128,r=!0,eg(o,!1),t.lanes=4194304)}else{if(!r)if(e=$3(a),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),eg(o,!0),o.tail===null&&o.tailMode==="hidden"&&!a.alternate&&!rr)return qi(t),null}else 2*$r()-o.renderingStartTime>C1&&n!==1073741824&&(t.flags|=128,r=!0,eg(o,!1),t.lanes=4194304);o.isBackwards?(a.sibling=t.child,t.child=a):(n=o.last,n!==null?n.sibling=a:t.child=a,o.last=a)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=$r(),t.sibling=null,n=hr.current,Gn(hr,r?n&1|2:n&1),t):(qi(t),null);case 22:case 23:return FC(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(ca&1073741824)!==0&&(qi(t),t.subtreeFlags&6&&(t.flags|=8192)):qi(t),null;case 24:return null;case 25:return null}throw Error(ze(156,t.tag))}function NK(e,t){switch(yC(t),t.tag){case 1:return Bo(t.type)&&R3(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return S1(),Xn(Fo),Xn(Xi),PC(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return EC(t),null;case 13:if(Xn(hr),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(ze(340));x1()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Xn(hr),null;case 4:return S1(),null;case 10:return wC(t.type._context),null;case 22:case 23:return FC(),null;case 24:return null;default:return null}}var D2=!1,Yi=!1,DK=typeof WeakSet=="function"?WeakSet:Set,at=null;function Hp(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){_r(e,t,r)}else n.current=null}function Mw(e,t,n){try{n()}catch(r){_r(e,t,r)}}var vE=!1;function zK(e,t){if(gw=L3,e=kM(),mC(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var i=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var a=0,s=-1,l=-1,d=0,p=0,g=e,m=null;t:for(;;){for(var y;g!==n||i!==0&&g.nodeType!==3||(s=a+i),g!==o||r!==0&&g.nodeType!==3||(l=a+r),g.nodeType===3&&(a+=g.nodeValue.length),(y=g.firstChild)!==null;)m=g,g=y;for(;;){if(g===e)break t;if(m===n&&++d===i&&(s=a),m===o&&++p===r&&(l=a),(y=g.nextSibling)!==null)break;g=m,m=g.parentNode}g=y}n=s===-1||l===-1?null:{start:s,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(mw={focusedElem:e,selectionRange:n},L3=!1,at=t;at!==null;)if(t=at,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,at=e;else for(;at!==null;){t=at;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var w=b.memoizedProps,P=b.memoizedState,E=t.stateNode,k=E.getSnapshotBeforeUpdate(t.elementType===t.type?w:ks(t.type,w),P);E.__reactInternalSnapshotBeforeUpdate=k}break;case 3:var L=t.stateNode.containerInfo;L.nodeType===1?L.textContent="":L.nodeType===9&&L.documentElement&&L.removeChild(L.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(ze(163))}}catch(M){_r(t,t.return,M)}if(e=t.sibling,e!==null){e.return=t.return,at=e;break}at=t.return}return b=vE,vE=!1,b}function Bg(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var i=r=r.next;do{if((i.tag&e)===e){var o=i.destroy;i.destroy=void 0,o!==void 0&&Mw(t,n,o)}i=i.next}while(i!==r)}}function Z4(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Rw(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function wR(e){var t=e.alternate;t!==null&&(e.alternate=null,wR(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[xl],delete t[xm],delete t[xw],delete t[xK],delete t[bK])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function CR(e){return e.tag===5||e.tag===3||e.tag===4}function yE(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||CR(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ow(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=M3));else if(r!==4&&(e=e.child,e!==null))for(Ow(e,t,n),e=e.sibling;e!==null;)Ow(e,t,n),e=e.sibling}function Nw(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Nw(e,t,n),e=e.sibling;e!==null;)Nw(e,t,n),e=e.sibling}var Oi=null,Es=!1;function Ac(e,t,n){for(n=n.child;n!==null;)_R(e,t,n),n=n.sibling}function _R(e,t,n){if(Cl&&typeof Cl.onCommitFiberUnmount=="function")try{Cl.onCommitFiberUnmount(H4,n)}catch{}switch(n.tag){case 5:Yi||Hp(n,t);case 6:var r=Oi,i=Es;Oi=null,Ac(e,t,n),Oi=r,Es=i,Oi!==null&&(Es?(e=Oi,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):Oi.removeChild(n.stateNode));break;case 18:Oi!==null&&(Es?(e=Oi,n=n.stateNode,e.nodeType===8?bb(e.parentNode,n):e.nodeType===1&&bb(e,n),pm(e)):bb(Oi,n.stateNode));break;case 4:r=Oi,i=Es,Oi=n.stateNode.containerInfo,Es=!0,Ac(e,t,n),Oi=r,Es=i;break;case 0:case 11:case 14:case 15:if(!Yi&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){i=r=r.next;do{var o=i,a=o.destroy;o=o.tag,a!==void 0&&((o&2)!==0||(o&4)!==0)&&Mw(n,t,a),i=i.next}while(i!==r)}Ac(e,t,n);break;case 1:if(!Yi&&(Hp(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(s){_r(n,t,s)}Ac(e,t,n);break;case 21:Ac(e,t,n);break;case 22:n.mode&1?(Yi=(r=Yi)||n.memoizedState!==null,Ac(e,t,n),Yi=r):Ac(e,t,n);break;default:Ac(e,t,n)}}function xE(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new DK),t.forEach(function(r){var i=jK.bind(null,e,r);n.has(r)||(n.add(r),r.then(i,i))})}}function bs(e,t){var n=t.deletions;if(n!==null)for(var r=0;ri&&(i=a),r&=~o}if(r=i,r=$r()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*BK(r/1960))-r,10e?16:e,qc===null)var r=!1;else{if(e=qc,qc=null,G3=0,(dn&6)!==0)throw Error(ze(331));var i=dn;for(dn|=4,at=e.current;at!==null;){var o=at,a=o.child;if((at.flags&16)!==0){var s=o.deletions;if(s!==null){for(var l=0;l$r()-DC?Xf(e,0):NC|=n),$o(e,t)}function MR(e,t){t===0&&((e.mode&1)===0?t=1:(t=P2,P2<<=1,(P2&130023424)===0&&(P2=4194304)));var n=vo();e=Au(e,t),e!==null&&(iv(e,t,n),$o(e,n))}function GK(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),MR(e,n)}function jK(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,i=e.memoizedState;i!==null&&(n=i.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(ze(314))}r!==null&&r.delete(t),MR(e,n)}var RR;RR=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||Fo.current)zo=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return zo=!1,RK(e,t,n);zo=(e.flags&131072)!==0}else zo=!1,rr&&(t.flags&1048576)!==0&&DM(t,D3,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Wy(e,t),e=t.pendingProps;var i=y1(t,Xi.current);e1(t,n),i=LC(null,t,r,e,i,n);var o=AC();return t.flags|=1,typeof i=="object"&&i!==null&&typeof i.render=="function"&&i.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Bo(r)?(o=!0,O3(t)):o=!1,t.memoizedState=i.state!==null&&i.state!==void 0?i.state:null,_C(t),i.updater=q4,t.stateNode=i,i._reactInternals=t,kw(t,r,e,n),t=Tw(null,t,r,!0,o,n)):(t.tag=0,rr&&o&&vC(t),po(null,t,i,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Wy(e,t),e=t.pendingProps,i=r._init,r=i(r._payload),t.type=r,i=t.tag=KK(r),e=ks(r,e),i){case 0:t=Pw(null,t,r,e,n);break e;case 1:t=pE(null,t,r,e,n);break e;case 11:t=fE(null,t,r,e,n);break e;case 14:t=hE(null,t,r,ks(r.type,e),n);break e}throw Error(ze(306,r,""))}return t;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ks(r,i),Pw(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ks(r,i),pE(e,t,r,i,n);case 3:e:{if(mR(t),e===null)throw Error(ze(387));r=t.pendingProps,o=t.memoizedState,i=o.element,$M(e,t),B3(t,r,null,n);var a=t.memoizedState;if(r=a.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:a.cache,pendingSuspenseBoundaries:a.pendingSuspenseBoundaries,transitions:a.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){i=w1(Error(ze(423)),t),t=gE(e,t,r,n,i);break e}else if(r!==i){i=w1(Error(ze(424)),t),t=gE(e,t,r,n,i);break e}else for(fa=td(t.stateNode.containerInfo.firstChild),pa=t,rr=!0,Ts=null,n=UM(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(x1(),r===i){t=Iu(e,t,n);break e}po(e,t,r,n)}t=t.child}return t;case 5:return GM(t),e===null&&ww(t),r=t.type,i=t.pendingProps,o=e!==null?e.memoizedProps:null,a=i.children,vw(r,i)?a=null:o!==null&&vw(r,o)&&(t.flags|=32),gR(e,t),po(e,t,a,n),t.child;case 6:return e===null&&ww(t),null;case 13:return vR(e,t,n);case 4:return kC(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=b1(t,null,r,n):po(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ks(r,i),fE(e,t,r,i,n);case 7:return po(e,t,t.pendingProps,n),t.child;case 8:return po(e,t,t.pendingProps.children,n),t.child;case 12:return po(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,o=t.memoizedProps,a=i.value,Gn(z3,r._currentValue),r._currentValue=a,o!==null)if(Rs(o.value,a)){if(o.children===i.children&&!Fo.current){t=Iu(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var s=o.dependencies;if(s!==null){a=o.child;for(var l=s.firstContext;l!==null;){if(l.context===r){if(o.tag===1){l=Pu(-1,n&-n),l.tag=2;var d=o.updateQueue;if(d!==null){d=d.shared;var p=d.pending;p===null?l.next=l:(l.next=p.next,p.next=l),d.pending=l}}o.lanes|=n,l=o.alternate,l!==null&&(l.lanes|=n),Cw(o.return,n,t),s.lanes|=n;break}l=l.next}}else if(o.tag===10)a=o.type===t.type?null:o.child;else if(o.tag===18){if(a=o.return,a===null)throw Error(ze(341));a.lanes|=n,s=a.alternate,s!==null&&(s.lanes|=n),Cw(a,n,t),a=o.sibling}else a=o.child;if(a!==null)a.return=o;else for(a=o;a!==null;){if(a===t){a=null;break}if(o=a.sibling,o!==null){o.return=a.return,a=o;break}a=a.return}o=a}po(e,t,i.children,n),t=t.child}return t;case 9:return i=t.type,r=t.pendingProps.children,e1(t,n),i=Xa(i),r=r(i),t.flags|=1,po(e,t,r,n),t.child;case 14:return r=t.type,i=ks(r,t.pendingProps),i=ks(r.type,i),hE(e,t,r,i,n);case 15:return hR(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ks(r,i),Wy(e,t),t.tag=1,Bo(r)?(e=!0,O3(t)):e=!1,e1(t,n),WM(t,r,i),kw(t,r,i,n),Tw(null,t,r,!0,e,n);case 19:return yR(e,t,n);case 22:return pR(e,t,n)}throw Error(ze(156,t.tag))};function OR(e,t){return aM(e,t)}function qK(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function qa(e,t,n,r){return new qK(e,t,n,r)}function $C(e){return e=e.prototype,!(!e||!e.isReactComponent)}function KK(e){if(typeof e=="function")return $C(e)?1:0;if(e!=null){if(e=e.$$typeof,e===oC)return 11;if(e===aC)return 14}return 2}function od(e,t){var n=e.alternate;return n===null?(n=qa(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Gy(e,t,n,r,i,o){var a=2;if(r=e,typeof e=="function")$C(e)&&(a=1);else if(typeof e=="string")a=5;else e:switch(e){case Mp:return Qf(n.children,i,o,t);case iC:a=8,i|=8;break;case ZS:return e=qa(12,n,t,i|2),e.elementType=ZS,e.lanes=o,e;case YS:return e=qa(13,n,t,i),e.elementType=YS,e.lanes=o,e;case XS:return e=qa(19,n,t,i),e.elementType=XS,e.lanes=o,e;case VI:return X4(n,i,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case HI:a=10;break e;case WI:a=9;break e;case oC:a=11;break e;case aC:a=14;break e;case Fc:a=16,r=null;break e}throw Error(ze(130,e==null?e:typeof e,""))}return t=qa(a,n,t,i),t.elementType=e,t.type=r,t.lanes=o,t}function Qf(e,t,n,r){return e=qa(7,e,r,t),e.lanes=n,e}function X4(e,t,n,r){return e=qa(22,e,r,t),e.elementType=VI,e.lanes=n,e.stateNode={isHidden:!1},e}function Tb(e,t,n){return e=qa(6,e,null,t),e.lanes=n,e}function Lb(e,t,n){return t=qa(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function ZK(e,t,n,r,i){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=ub(0),this.expirationTimes=ub(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=ub(0),this.identifierPrefix=r,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function HC(e,t,n,r,i,o,a,s,l){return e=new ZK(e,t,n,s,l),t===1?(t=1,o===!0&&(t|=8)):t=0,o=qa(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},_C(o),e}function YK(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Sa})(Bl);const B2=Y8(Bl.exports);var PE=Bl.exports;qS.createRoot=PE.createRoot,qS.hydrateRoot=PE.hydrateRoot;var kl=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,n5={exports:{}},r5={};/** + * @license React + * react-jsx-runtime.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var tZ=C.exports,nZ=Symbol.for("react.element"),rZ=Symbol.for("react.fragment"),iZ=Object.prototype.hasOwnProperty,oZ=tZ.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,aZ={key:!0,ref:!0,__self:!0,__source:!0};function FR(e,t,n){var r,i={},o=null,a=null;n!==void 0&&(o=""+n),t.key!==void 0&&(o=""+t.key),t.ref!==void 0&&(a=t.ref);for(r in t)iZ.call(t,r)&&!aZ.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)i[r]===void 0&&(i[r]=t[r]);return{$$typeof:nZ,type:e,key:o,ref:a,props:i,_owner:oZ.current}}r5.Fragment=rZ;r5.jsx=FR;r5.jsxs=FR;(function(e){e.exports=r5})(n5);const Bn=n5.exports.Fragment,S=n5.exports.jsx,oe=n5.exports.jsxs;var GC=C.exports.createContext({});GC.displayName="ColorModeContext";function jC(){const e=C.exports.useContext(GC);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var $2={light:"chakra-ui-light",dark:"chakra-ui-dark"};function sZ(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const i=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,i?.()},setClassName(r){document.body.classList.add(r?$2.dark:$2.light),document.body.classList.remove(r?$2.light:$2.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const i=n.query(),o=a=>{r(a.matches?"dark":"light")};return typeof i.addListener=="function"?i.addListener(o):i.addEventListener("change",o),()=>{typeof i.removeListener=="function"?i.removeListener(o):i.removeEventListener("change",o)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var lZ="chakra-ui-color-mode";function uZ(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var cZ=uZ(lZ),TE=()=>{};function LE(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function BR(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:i,disableTransitionOnChange:o}={},colorModeManager:a=cZ}=e,s=i==="dark"?"dark":"light",[l,d]=C.exports.useState(()=>LE(a,s)),[p,g]=C.exports.useState(()=>LE(a)),{getSystemTheme:m,setClassName:y,setDataset:b,addListener:w}=C.exports.useMemo(()=>sZ({preventTransition:o}),[o]),P=i==="system"&&!l?p:l,E=C.exports.useCallback(M=>{const N=M==="system"?m():M;d(N),y(N==="dark"),b(N),a.set(N)},[a,m,y,b]);kl(()=>{i==="system"&&g(m())},[]),C.exports.useEffect(()=>{const M=a.get();if(M){E(M);return}if(i==="system"){E("system");return}E(s)},[a,s,i,E]);const k=C.exports.useCallback(()=>{E(P==="dark"?"light":"dark")},[P,E]);C.exports.useEffect(()=>{if(!!r)return w(E)},[r,w,E]);const L=C.exports.useMemo(()=>({colorMode:t??P,toggleColorMode:t?TE:k,setColorMode:t?TE:E}),[P,k,E,t]);return S(GC.Provider,{value:L,children:n})}BR.displayName="ColorModeProvider";var dZ=new Set(["dark","light","system"]);function fZ(e){let t=e;return dZ.has(t)||(t="light"),t}function hZ(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,i=fZ(t),o=n==="cookie",a=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${i}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); + `,s=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${i}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); + `;return`!${o?a:s}`.trim()}function pZ(e={}){return S("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:hZ(e)}})}var $w={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",l="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",g="[object Date]",m="[object Error]",y="[object Function]",b="[object GeneratorFunction]",w="[object Map]",P="[object Number]",E="[object Null]",k="[object Object]",L="[object Proxy]",M="[object RegExp]",N="[object Set]",F="[object String]",B="[object Undefined]",z="[object WeakMap]",j="[object ArrayBuffer]",q="[object DataView]",Y="[object Float32Array]",ge="[object Float64Array]",ce="[object Int8Array]",ve="[object Int16Array]",we="[object Int32Array]",be="[object Uint8Array]",J="[object Uint8ClampedArray]",U="[object Uint16Array]",ee="[object Uint32Array]",Q=/[\\^$.*+?()[\]{}|]/g,W=/^\[object .+?Constructor\]$/,ie=/^(?:0|[1-9]\d*)$/,de={};de[Y]=de[ge]=de[ce]=de[ve]=de[we]=de[be]=de[J]=de[U]=de[ee]=!0,de[s]=de[l]=de[j]=de[p]=de[q]=de[g]=de[m]=de[y]=de[w]=de[P]=de[k]=de[M]=de[N]=de[F]=de[z]=!1;var Se=typeof Su=="object"&&Su&&Su.Object===Object&&Su,De=typeof self=="object"&&self&&self.Object===Object&&self,Me=Se||De||Function("return this")(),Ue=t&&!t.nodeType&&t,ke=Ue&&!0&&e&&!e.nodeType&&e,Ve=ke&&ke.exports===Ue,ot=Ve&&Se.process,pt=function(){try{var I=ke&&ke.require&&ke.require("util").types;return I||ot&&ot.binding&&ot.binding("util")}catch{}}(),Vt=pt&&pt.isTypedArray;function Ft(I,D,G){switch(G.length){case 0:return I.call(D);case 1:return I.call(D,G[0]);case 2:return I.call(D,G[0],G[1]);case 3:return I.call(D,G[0],G[1],G[2])}return I.apply(D,G)}function Re(I,D){for(var G=-1,me=Array(I);++G-1}function Od(I,D){var G=this.__data__,me=Hi(G,I);return me<0?(++this.size,G.push([I,D])):G[me][1]=D,this}or.prototype.clear=Wl,or.prototype.delete=Rd,or.prototype.get=Fs,or.prototype.has=Vl,or.prototype.set=Od;function xi(I){var D=-1,G=I==null?0:I.length;for(this.clear();++D1?G[Ye-1]:void 0,Ke=Ye>2?G[2]:void 0;for(ft=I.length>3&&typeof ft=="function"?(Ye--,ft):void 0,Ke&&Xu(G[0],G[1],Ke)&&(ft=Ye<3?void 0:ft,Ye=1),D=Object(D);++me-1&&I%1==0&&I0){if(++D>=i)return arguments[0]}else D=0;return I.apply(void 0,arguments)}}function Ws(I){if(I!=null){try{return on.call(I)}catch{}try{return I+""}catch{}}return""}function Si(I,D){return I===D||I!==I&&D!==D}var ss=ka(function(){return arguments}())?ka:function(I){return hn(I)&&Bt.call(I,"callee")&&!$e.call(I,"callee")},Ko=Array.isArray;function Mt(I){return I!=null&&Zl(I.length)&&!Ia(I)}function Qu(I){return hn(I)&&Mt(I)}var ls=tn||qd;function Ia(I){if(!Ir(I))return!1;var D=eo(I);return D==y||D==b||D==d||D==L}function Zl(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=a}function Ir(I){var D=typeof I;return I!=null&&(D=="object"||D=="function")}function hn(I){return I!=null&&typeof I=="object"}function Yl(I){if(!hn(I)||eo(I)!=k)return!1;var D=je(I);if(D===null)return!0;var G=Bt.call(D,"constructor")&&D.constructor;return typeof G=="function"&&G instanceof G&&on.call(G)==qt}var Xl=Vt?tt(Vt):$s;function Ql(I){return Ar(I,Jl(I))}function Jl(I){return Mt(I)?Ud(I,!0):Ea(I)}var an=qo(function(I,D,G,me){Wi(I,D,G,me)});function Nt(I){return function(){return I}}function eu(I){return I}function qd(){return!1}e.exports=an})($w,$w.exports);const cd=$w.exports;function wl(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function Vp(e,...t){return gZ(e)?e(...t):e}var gZ=e=>typeof e=="function",mZ=e=>/!(important)?$/.test(e),AE=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,Hw=(e,t)=>n=>{const r=String(t),i=mZ(r),o=AE(r),a=e?`${e}.${o}`:o;let s=wl(n.__cssMap)&&a in n.__cssMap?n.__cssMap[a].varRef:t;return s=AE(s),i?`${s} !important`:s};function Em(e){const{scale:t,transform:n,compose:r}=e;return(o,a)=>{const s=Hw(t,o)(a);let l=n?.(s,a)??s;return r&&(l=r(l,a)),l}}var H2=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Ss(e,t){return n=>{const r={property:n,scale:e};return r.transform=Em({scale:e,transform:t}),r}}var vZ=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function yZ(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:vZ(t),transform:n?Em({scale:n,compose:r}):r}}var $R=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function xZ(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...$R].join(" ")}function bZ(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...$R].join(" ")}var SZ={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},wZ={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function CZ(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var _Z={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},HR="& > :not(style) ~ :not(style)",kZ={[HR]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},EZ={[HR]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},Ww={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},PZ=new Set(Object.values(Ww)),WR=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),TZ=e=>e.trim();function LZ(e,t){var n;if(e==null||WR.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:i,values:o}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!i||!o)return e;const a=i.includes("-gradient")?i:`${i}-gradient`,[s,...l]=o.split(",").map(TZ).filter(Boolean);if(l?.length===0)return e;const d=s in Ww?Ww[s]:s;l.unshift(d);const p=l.map(g=>{if(PZ.has(g))return g;const m=g.indexOf(" "),[y,b]=m!==-1?[g.substr(0,m),g.substr(m+1)]:[g],w=VR(b)?b:b&&b.split(" "),P=`colors.${y}`,E=P in t.__cssMap?t.__cssMap[P].varRef:y;return w?[E,...Array.isArray(w)?w:[w]].join(" "):E});return`${a}(${p.join(", ")})`}var VR=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),AZ=(e,t)=>LZ(e,t??{});function IZ(e){return/^var\(--.+\)$/.test(e)}var MZ=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},sl=e=>t=>`${e}(${t})`,cn={filter(e){return e!=="auto"?e:SZ},backdropFilter(e){return e!=="auto"?e:wZ},ring(e){return CZ(cn.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?xZ():e==="auto-gpu"?bZ():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=MZ(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(IZ(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:AZ,blur:sl("blur"),opacity:sl("opacity"),brightness:sl("brightness"),contrast:sl("contrast"),dropShadow:sl("drop-shadow"),grayscale:sl("grayscale"),hueRotate:sl("hue-rotate"),invert:sl("invert"),saturate:sl("saturate"),sepia:sl("sepia"),bgImage(e){return e==null||VR(e)||WR.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=_Z[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},ne={borderWidths:Ss("borderWidths"),borderStyles:Ss("borderStyles"),colors:Ss("colors"),borders:Ss("borders"),radii:Ss("radii",cn.px),space:Ss("space",H2(cn.vh,cn.px)),spaceT:Ss("space",H2(cn.vh,cn.px)),degreeT(e){return{property:e,transform:cn.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Em({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Ss("sizes",H2(cn.vh,cn.px)),sizesT:Ss("sizes",H2(cn.vh,cn.fraction)),shadows:Ss("shadows"),logical:yZ,blur:Ss("blur",cn.blur)},jy={background:ne.colors("background"),backgroundColor:ne.colors("backgroundColor"),backgroundImage:ne.propT("backgroundImage",cn.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:cn.bgClip},bgSize:ne.prop("backgroundSize"),bgPosition:ne.prop("backgroundPosition"),bg:ne.colors("background"),bgColor:ne.colors("backgroundColor"),bgPos:ne.prop("backgroundPosition"),bgRepeat:ne.prop("backgroundRepeat"),bgAttachment:ne.prop("backgroundAttachment"),bgGradient:ne.propT("backgroundImage",cn.gradient),bgClip:{transform:cn.bgClip}};Object.assign(jy,{bgImage:jy.backgroundImage,bgImg:jy.backgroundImage});var yn={border:ne.borders("border"),borderWidth:ne.borderWidths("borderWidth"),borderStyle:ne.borderStyles("borderStyle"),borderColor:ne.colors("borderColor"),borderRadius:ne.radii("borderRadius"),borderTop:ne.borders("borderTop"),borderBlockStart:ne.borders("borderBlockStart"),borderTopLeftRadius:ne.radii("borderTopLeftRadius"),borderStartStartRadius:ne.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:ne.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:ne.radii("borderTopRightRadius"),borderStartEndRadius:ne.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:ne.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:ne.borders("borderRight"),borderInlineEnd:ne.borders("borderInlineEnd"),borderBottom:ne.borders("borderBottom"),borderBlockEnd:ne.borders("borderBlockEnd"),borderBottomLeftRadius:ne.radii("borderBottomLeftRadius"),borderBottomRightRadius:ne.radii("borderBottomRightRadius"),borderLeft:ne.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:ne.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:ne.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:ne.borders(["borderLeft","borderRight"]),borderInline:ne.borders("borderInline"),borderY:ne.borders(["borderTop","borderBottom"]),borderBlock:ne.borders("borderBlock"),borderTopWidth:ne.borderWidths("borderTopWidth"),borderBlockStartWidth:ne.borderWidths("borderBlockStartWidth"),borderTopColor:ne.colors("borderTopColor"),borderBlockStartColor:ne.colors("borderBlockStartColor"),borderTopStyle:ne.borderStyles("borderTopStyle"),borderBlockStartStyle:ne.borderStyles("borderBlockStartStyle"),borderBottomWidth:ne.borderWidths("borderBottomWidth"),borderBlockEndWidth:ne.borderWidths("borderBlockEndWidth"),borderBottomColor:ne.colors("borderBottomColor"),borderBlockEndColor:ne.colors("borderBlockEndColor"),borderBottomStyle:ne.borderStyles("borderBottomStyle"),borderBlockEndStyle:ne.borderStyles("borderBlockEndStyle"),borderLeftWidth:ne.borderWidths("borderLeftWidth"),borderInlineStartWidth:ne.borderWidths("borderInlineStartWidth"),borderLeftColor:ne.colors("borderLeftColor"),borderInlineStartColor:ne.colors("borderInlineStartColor"),borderLeftStyle:ne.borderStyles("borderLeftStyle"),borderInlineStartStyle:ne.borderStyles("borderInlineStartStyle"),borderRightWidth:ne.borderWidths("borderRightWidth"),borderInlineEndWidth:ne.borderWidths("borderInlineEndWidth"),borderRightColor:ne.colors("borderRightColor"),borderInlineEndColor:ne.colors("borderInlineEndColor"),borderRightStyle:ne.borderStyles("borderRightStyle"),borderInlineEndStyle:ne.borderStyles("borderInlineEndStyle"),borderTopRadius:ne.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:ne.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:ne.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:ne.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(yn,{rounded:yn.borderRadius,roundedTop:yn.borderTopRadius,roundedTopLeft:yn.borderTopLeftRadius,roundedTopRight:yn.borderTopRightRadius,roundedTopStart:yn.borderStartStartRadius,roundedTopEnd:yn.borderStartEndRadius,roundedBottom:yn.borderBottomRadius,roundedBottomLeft:yn.borderBottomLeftRadius,roundedBottomRight:yn.borderBottomRightRadius,roundedBottomStart:yn.borderEndStartRadius,roundedBottomEnd:yn.borderEndEndRadius,roundedLeft:yn.borderLeftRadius,roundedRight:yn.borderRightRadius,roundedStart:yn.borderInlineStartRadius,roundedEnd:yn.borderInlineEndRadius,borderStart:yn.borderInlineStart,borderEnd:yn.borderInlineEnd,borderTopStartRadius:yn.borderStartStartRadius,borderTopEndRadius:yn.borderStartEndRadius,borderBottomStartRadius:yn.borderEndStartRadius,borderBottomEndRadius:yn.borderEndEndRadius,borderStartRadius:yn.borderInlineStartRadius,borderEndRadius:yn.borderInlineEndRadius,borderStartWidth:yn.borderInlineStartWidth,borderEndWidth:yn.borderInlineEndWidth,borderStartColor:yn.borderInlineStartColor,borderEndColor:yn.borderInlineEndColor,borderStartStyle:yn.borderInlineStartStyle,borderEndStyle:yn.borderInlineEndStyle});var RZ={color:ne.colors("color"),textColor:ne.colors("color"),fill:ne.colors("fill"),stroke:ne.colors("stroke")},Vw={boxShadow:ne.shadows("boxShadow"),mixBlendMode:!0,blendMode:ne.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:ne.prop("backgroundBlendMode"),opacity:!0};Object.assign(Vw,{shadow:Vw.boxShadow});var OZ={filter:{transform:cn.filter},blur:ne.blur("--chakra-blur"),brightness:ne.propT("--chakra-brightness",cn.brightness),contrast:ne.propT("--chakra-contrast",cn.contrast),hueRotate:ne.degreeT("--chakra-hue-rotate"),invert:ne.propT("--chakra-invert",cn.invert),saturate:ne.propT("--chakra-saturate",cn.saturate),dropShadow:ne.propT("--chakra-drop-shadow",cn.dropShadow),backdropFilter:{transform:cn.backdropFilter},backdropBlur:ne.blur("--chakra-backdrop-blur"),backdropBrightness:ne.propT("--chakra-backdrop-brightness",cn.brightness),backdropContrast:ne.propT("--chakra-backdrop-contrast",cn.contrast),backdropHueRotate:ne.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:ne.propT("--chakra-backdrop-invert",cn.invert),backdropSaturate:ne.propT("--chakra-backdrop-saturate",cn.saturate)},K3={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:cn.flexDirection},experimental_spaceX:{static:kZ,transform:Em({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:EZ,transform:Em({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:ne.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:ne.space("gap"),rowGap:ne.space("rowGap"),columnGap:ne.space("columnGap")};Object.assign(K3,{flexDir:K3.flexDirection});var UR={gridGap:ne.space("gridGap"),gridColumnGap:ne.space("gridColumnGap"),gridRowGap:ne.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},NZ={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:cn.outline},outlineOffset:!0,outlineColor:ne.colors("outlineColor")},Ha={width:ne.sizesT("width"),inlineSize:ne.sizesT("inlineSize"),height:ne.sizes("height"),blockSize:ne.sizes("blockSize"),boxSize:ne.sizes(["width","height"]),minWidth:ne.sizes("minWidth"),minInlineSize:ne.sizes("minInlineSize"),minHeight:ne.sizes("minHeight"),minBlockSize:ne.sizes("minBlockSize"),maxWidth:ne.sizes("maxWidth"),maxInlineSize:ne.sizes("maxInlineSize"),maxHeight:ne.sizes("maxHeight"),maxBlockSize:ne.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:ne.propT("float",cn.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(Ha,{w:Ha.width,h:Ha.height,minW:Ha.minWidth,maxW:Ha.maxWidth,minH:Ha.minHeight,maxH:Ha.maxHeight,overscroll:Ha.overscrollBehavior,overscrollX:Ha.overscrollBehaviorX,overscrollY:Ha.overscrollBehaviorY});var DZ={listStyleType:!0,listStylePosition:!0,listStylePos:ne.prop("listStylePosition"),listStyleImage:!0,listStyleImg:ne.prop("listStyleImage")};function zZ(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},BZ=FZ(zZ),$Z={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},HZ={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Ab=(e,t,n)=>{const r={},i=BZ(e,t,{});for(const o in i)o in n&&n[o]!=null||(r[o]=i[o]);return r},WZ={srOnly:{transform(e){return e===!0?$Z:e==="focusable"?HZ:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Ab(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Ab(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Ab(t,e,n)}},Wg={position:!0,pos:ne.prop("position"),zIndex:ne.prop("zIndex","zIndices"),inset:ne.spaceT("inset"),insetX:ne.spaceT(["left","right"]),insetInline:ne.spaceT("insetInline"),insetY:ne.spaceT(["top","bottom"]),insetBlock:ne.spaceT("insetBlock"),top:ne.spaceT("top"),insetBlockStart:ne.spaceT("insetBlockStart"),bottom:ne.spaceT("bottom"),insetBlockEnd:ne.spaceT("insetBlockEnd"),left:ne.spaceT("left"),insetInlineStart:ne.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:ne.spaceT("right"),insetInlineEnd:ne.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(Wg,{insetStart:Wg.insetInlineStart,insetEnd:Wg.insetInlineEnd});var VZ={ring:{transform:cn.ring},ringColor:ne.colors("--chakra-ring-color"),ringOffset:ne.prop("--chakra-ring-offset-width"),ringOffsetColor:ne.colors("--chakra-ring-offset-color"),ringInset:ne.prop("--chakra-ring-inset")},Yn={margin:ne.spaceT("margin"),marginTop:ne.spaceT("marginTop"),marginBlockStart:ne.spaceT("marginBlockStart"),marginRight:ne.spaceT("marginRight"),marginInlineEnd:ne.spaceT("marginInlineEnd"),marginBottom:ne.spaceT("marginBottom"),marginBlockEnd:ne.spaceT("marginBlockEnd"),marginLeft:ne.spaceT("marginLeft"),marginInlineStart:ne.spaceT("marginInlineStart"),marginX:ne.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:ne.spaceT("marginInline"),marginY:ne.spaceT(["marginTop","marginBottom"]),marginBlock:ne.spaceT("marginBlock"),padding:ne.space("padding"),paddingTop:ne.space("paddingTop"),paddingBlockStart:ne.space("paddingBlockStart"),paddingRight:ne.space("paddingRight"),paddingBottom:ne.space("paddingBottom"),paddingBlockEnd:ne.space("paddingBlockEnd"),paddingLeft:ne.space("paddingLeft"),paddingInlineStart:ne.space("paddingInlineStart"),paddingInlineEnd:ne.space("paddingInlineEnd"),paddingX:ne.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:ne.space("paddingInline"),paddingY:ne.space(["paddingTop","paddingBottom"]),paddingBlock:ne.space("paddingBlock")};Object.assign(Yn,{m:Yn.margin,mt:Yn.marginTop,mr:Yn.marginRight,me:Yn.marginInlineEnd,marginEnd:Yn.marginInlineEnd,mb:Yn.marginBottom,ml:Yn.marginLeft,ms:Yn.marginInlineStart,marginStart:Yn.marginInlineStart,mx:Yn.marginX,my:Yn.marginY,p:Yn.padding,pt:Yn.paddingTop,py:Yn.paddingY,px:Yn.paddingX,pb:Yn.paddingBottom,pl:Yn.paddingLeft,ps:Yn.paddingInlineStart,paddingStart:Yn.paddingInlineStart,pr:Yn.paddingRight,pe:Yn.paddingInlineEnd,paddingEnd:Yn.paddingInlineEnd});var UZ={textDecorationColor:ne.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:ne.shadows("textShadow")},GZ={clipPath:!0,transform:ne.propT("transform",cn.transform),transformOrigin:!0,translateX:ne.spaceT("--chakra-translate-x"),translateY:ne.spaceT("--chakra-translate-y"),skewX:ne.degreeT("--chakra-skew-x"),skewY:ne.degreeT("--chakra-skew-y"),scaleX:ne.prop("--chakra-scale-x"),scaleY:ne.prop("--chakra-scale-y"),scale:ne.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:ne.degreeT("--chakra-rotate")},jZ={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:ne.prop("transitionDuration","transition.duration"),transitionProperty:ne.prop("transitionProperty","transition.property"),transitionTimingFunction:ne.prop("transitionTimingFunction","transition.easing")},qZ={fontFamily:ne.prop("fontFamily","fonts"),fontSize:ne.prop("fontSize","fontSizes",cn.px),fontWeight:ne.prop("fontWeight","fontWeights"),lineHeight:ne.prop("lineHeight","lineHeights"),letterSpacing:ne.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},KZ={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:ne.spaceT("scrollMargin"),scrollMarginTop:ne.spaceT("scrollMarginTop"),scrollMarginBottom:ne.spaceT("scrollMarginBottom"),scrollMarginLeft:ne.spaceT("scrollMarginLeft"),scrollMarginRight:ne.spaceT("scrollMarginRight"),scrollMarginX:ne.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:ne.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:ne.spaceT("scrollPadding"),scrollPaddingTop:ne.spaceT("scrollPaddingTop"),scrollPaddingBottom:ne.spaceT("scrollPaddingBottom"),scrollPaddingLeft:ne.spaceT("scrollPaddingLeft"),scrollPaddingRight:ne.spaceT("scrollPaddingRight"),scrollPaddingX:ne.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:ne.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function GR(e){return wl(e)&&e.reference?e.reference:String(e)}var i5=(e,...t)=>t.map(GR).join(` ${e} `).replace(/calc/g,""),IE=(...e)=>`calc(${i5("+",...e)})`,ME=(...e)=>`calc(${i5("-",...e)})`,Uw=(...e)=>`calc(${i5("*",...e)})`,RE=(...e)=>`calc(${i5("/",...e)})`,OE=e=>{const t=GR(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:Uw(t,-1)},Df=Object.assign(e=>({add:(...t)=>Df(IE(e,...t)),subtract:(...t)=>Df(ME(e,...t)),multiply:(...t)=>Df(Uw(e,...t)),divide:(...t)=>Df(RE(e,...t)),negate:()=>Df(OE(e)),toString:()=>e.toString()}),{add:IE,subtract:ME,multiply:Uw,divide:RE,negate:OE});function ZZ(e,t="-"){return e.replace(/\s+/g,t)}function YZ(e){const t=ZZ(e.toString());return QZ(XZ(t))}function XZ(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function QZ(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function JZ(e,t=""){return[t,e].filter(Boolean).join("-")}function eY(e,t){return`var(${e}${t?`, ${t}`:""})`}function tY(e,t=""){return YZ(`--${JZ(e,t)}`)}function bd(e,t,n){const r=tY(e,n);return{variable:r,reference:eY(r,t)}}function nY(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function rY(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function iY(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function Gw(e){if(e==null)return e;const{unitless:t}=iY(e);return t||typeof e=="number"?`${e}px`:e}var jR=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,qC=e=>Object.fromEntries(Object.entries(e).sort(jR));function NE(e){const t=qC(e);return Object.assign(Object.values(t),t)}function oY(e){const t=Object.keys(qC(e));return new Set(t)}function DE(e){if(!e)return e;e=Gw(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function bg(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${Gw(e)})`),t&&n.push("and",`(max-width: ${Gw(t)})`),n.join(" ")}function aY(e){if(!e)return null;e.base=e.base??"0px";const t=NE(e),n=Object.entries(e).sort(jR).map(([o,a],s,l)=>{let[,d]=l[s+1]??[];return d=parseFloat(d)>0?DE(d):void 0,{_minW:DE(a),breakpoint:o,minW:a,maxW:d,maxWQuery:bg(null,d),minWQuery:bg(a),minMaxQuery:bg(a,d)}}),r=oY(e),i=Array.from(r.values());return{keys:r,normalized:t,isResponsive(o){const a=Object.keys(o);return a.length>0&&a.every(s=>r.has(s))},asObject:qC(e),asArray:NE(e),details:n,media:[null,...t.map(o=>bg(o)).slice(1)],toArrayValue(o){if(!nY(o))throw new Error("toArrayValue: value must be an object");const a=i.map(s=>o[s]??null);for(;rY(a)===null;)a.pop();return a},toObjectValue(o){if(!Array.isArray(o))throw new Error("toObjectValue: value must be an array");return o.reduce((a,s,l)=>{const d=i[l];return d!=null&&s!=null&&(a[d]=s),a},{})}}}var Li={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},Ic=e=>qR(t=>e(t,"&"),"[role=group]","[data-group]",".group"),pu=e=>qR(t=>e(t,"~ &"),"[data-peer]",".peer"),qR=(e,...t)=>t.map(e).join(", "),o5={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:Ic(Li.hover),_peerHover:pu(Li.hover),_groupFocus:Ic(Li.focus),_peerFocus:pu(Li.focus),_groupFocusVisible:Ic(Li.focusVisible),_peerFocusVisible:pu(Li.focusVisible),_groupActive:Ic(Li.active),_peerActive:pu(Li.active),_groupDisabled:Ic(Li.disabled),_peerDisabled:pu(Li.disabled),_groupInvalid:Ic(Li.invalid),_peerInvalid:pu(Li.invalid),_groupChecked:Ic(Li.checked),_peerChecked:pu(Li.checked),_groupFocusWithin:Ic(Li.focusWithin),_peerFocusWithin:pu(Li.focusWithin),_peerPlaceholderShown:pu(Li.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},sY=Object.keys(o5);function zE(e,t){return bd(String(e).replace(/\./g,"-"),void 0,t)}function lY(e,t){let n={};const r={};for(const[i,o]of Object.entries(e)){const{isSemantic:a,value:s}=o,{variable:l,reference:d}=zE(i,t?.cssVarPrefix);if(!a){if(i.startsWith("space")){const m=i.split("."),[y,...b]=m,w=`${y}.-${b.join(".")}`,P=Df.negate(s),E=Df.negate(d);r[w]={value:P,var:l,varRef:E}}n[l]=s,r[i]={value:s,var:l,varRef:d};continue}const p=m=>{const b=[String(i).split(".")[0],m].join(".");if(!e[b])return m;const{reference:P}=zE(b,t?.cssVarPrefix);return P},g=wl(s)?s:{default:s};n=cd(n,Object.entries(g).reduce((m,[y,b])=>{var w;const P=p(b);if(y==="default")return m[l]=P,m;const E=((w=o5)==null?void 0:w[y])??y;return m[E]={[l]:P},m},{})),r[i]={value:d,var:l,varRef:d}}return{cssVars:n,cssMap:r}}function uY(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function cY(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var dY=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function fY(e){return cY(e,dY)}function hY(e){return e.semanticTokens}function pY(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...i}=e;return i}function gY({tokens:e,semanticTokens:t}){const n=Object.entries(jw(e)??{}).map(([i,o])=>[i,{isSemantic:!1,value:o}]),r=Object.entries(jw(t,1)??{}).map(([i,o])=>[i,{isSemantic:!0,value:o}]);return Object.fromEntries([...n,...r])}function jw(e,t=1/0){return!wl(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,i])=>(wl(i)||Array.isArray(i)?Object.entries(jw(i,t-1)).forEach(([o,a])=>{n[`${r}.${o}`]=a}):n[r]=i,n),{})}function mY(e){var t;const n=pY(e),r=fY(n),i=hY(n),o=gY({tokens:r,semanticTokens:i}),a=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:s,cssVars:l}=lY(o,{cssVarPrefix:a});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...l},__cssMap:s,__breakpoints:aY(n.breakpoints)}),n}var KC=cd({},jy,yn,RZ,K3,Ha,OZ,VZ,NZ,UR,WZ,Wg,Vw,Yn,KZ,qZ,UZ,GZ,DZ,jZ),vY=Object.assign({},Yn,Ha,K3,UR,Wg),yY=Object.keys(vY),xY=[...Object.keys(KC),...sY],bY={...KC,...o5},SY=e=>e in bY;function wY(e){return/^var\(--.+\)$/.test(e)}var CY=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!wY(t),_Y=(e,t)=>{if(t==null)return t;const n=s=>{var l,d;return(d=(l=e.__cssMap)==null?void 0:l[s])==null?void 0:d.varRef},r=s=>n(s)??s,i=t.split(",").map(s=>s.trim()),[o,a]=i;return t=n(o)??r(a)??r(t),t};function kY(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:i,toArrayValue:o,media:a}=r.__breakpoints,s=(l,d=!1)=>{var p;const g=Vp(l,r);let m={};for(let y in g){let b=Vp(g[y],r);if(b==null)continue;if(Array.isArray(b)||wl(b)&&i(b)){let k=Array.isArray(b)?b:o(b);k=k.slice(0,a.length);for(let L=0;Lt=>kY({theme:t,pseudos:o5,configs:KC})(e);function ir(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function EY(e,t){if(Array.isArray(e))return e;if(wl(e))return t(e);if(e!=null)return[e]}function PY(e,t){for(let n=t+1;n{cd(d,{[L]:m?k[L]:{[E]:k[L]}})});continue}if(!y){m?cd(d,k):d[E]=k;continue}d[E]=k}}return d}}function LY(e){return t=>{const{variant:n,size:r,theme:i}=t,o=TY(i);return cd({},Vp(e.baseStyle??{},t),o(e,"sizes",r,t),o(e,"variants",n,t))}}function AY(e,t,n){var r,i;return((i=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:i.varRef)??n}function Sn(e){return uY(e,["styleConfig","size","variant","colorScheme"])}function IY(e){if(e.sheet)return e.sheet;for(var t=0;t0?Oo(H1,--Vo):0,_1--,Kr===10&&(_1=1,s5--),Kr}function ga(){return Kr=Vo2||Tm(Kr)>3?"":" "}function VY(e,t){for(;--t&&ga()&&!(Kr<48||Kr>102||Kr>57&&Kr<65||Kr>70&&Kr<97););return lv(e,qy()+(t<6&&El()==32&&ga()==32))}function Kw(e){for(;ga();)switch(Kr){case e:return Vo;case 34:case 39:e!==34&&e!==39&&Kw(Kr);break;case 40:e===41&&Kw(e);break;case 92:ga();break}return Vo}function UY(e,t){for(;ga()&&e+Kr!==47+10;)if(e+Kr===42+42&&El()===47)break;return"/*"+lv(t,Vo-1)+"*"+a5(e===47?e:ga())}function GY(e){for(;!Tm(El());)ga();return lv(e,Vo)}function jY(e){return eO(Zy("",null,null,null,[""],e=JR(e),0,[0],e))}function Zy(e,t,n,r,i,o,a,s,l){for(var d=0,p=0,g=a,m=0,y=0,b=0,w=1,P=1,E=1,k=0,L="",M=i,N=o,F=r,B=L;P;)switch(b=k,k=ga()){case 40:if(b!=108&&B.charCodeAt(g-1)==58){qw(B+=_n(Ky(k),"&","&\f"),"&\f")!=-1&&(E=-1);break}case 34:case 39:case 91:B+=Ky(k);break;case 9:case 10:case 13:case 32:B+=WY(b);break;case 92:B+=VY(qy()-1,7);continue;case 47:switch(El()){case 42:case 47:W2(qY(UY(ga(),qy()),t,n),l);break;default:B+="/"}break;case 123*w:s[d++]=ml(B)*E;case 125*w:case 59:case 0:switch(k){case 0:case 125:P=0;case 59+p:y>0&&ml(B)-g&&W2(y>32?BE(B+";",r,n,g-1):BE(_n(B," ","")+";",r,n,g-2),l);break;case 59:B+=";";default:if(W2(F=FE(B,t,n,d,p,i,s,L,M=[],N=[],g),o),k===123)if(p===0)Zy(B,t,F,F,M,o,g,s,N);else switch(m){case 100:case 109:case 115:Zy(e,F,F,r&&W2(FE(e,F,F,0,0,i,s,L,i,M=[],g),N),i,N,g,s,r?M:N);break;default:Zy(B,F,F,F,[""],N,0,s,N)}}d=p=y=0,w=E=1,L=B="",g=a;break;case 58:g=1+ml(B),y=b;default:if(w<1){if(k==123)--w;else if(k==125&&w++==0&&HY()==125)continue}switch(B+=a5(k),k*w){case 38:E=p>0?1:(B+="\f",-1);break;case 44:s[d++]=(ml(B)-1)*E,E=1;break;case 64:El()===45&&(B+=Ky(ga())),m=El(),p=g=ml(L=B+=GY(qy())),k++;break;case 45:b===45&&ml(B)==2&&(w=0)}}return o}function FE(e,t,n,r,i,o,a,s,l,d,p){for(var g=i-1,m=i===0?o:[""],y=XC(m),b=0,w=0,P=0;b0?m[E]+" "+k:_n(k,/&\f/g,m[E])))&&(l[P++]=L);return l5(e,t,n,i===0?ZC:s,l,d,p)}function qY(e,t,n){return l5(e,t,n,ZR,a5($Y()),Pm(e,2,-2),0)}function BE(e,t,n,r){return l5(e,t,n,YC,Pm(e,0,r),Pm(e,r+1,-1),r)}function tO(e,t){switch(zY(e,t)){case 5103:return xn+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return xn+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return xn+e+Z3+e+Ki+e+e;case 6828:case 4268:return xn+e+Ki+e+e;case 6165:return xn+e+Ki+"flex-"+e+e;case 5187:return xn+e+_n(e,/(\w+).+(:[^]+)/,xn+"box-$1$2"+Ki+"flex-$1$2")+e;case 5443:return xn+e+Ki+"flex-item-"+_n(e,/flex-|-self/,"")+e;case 4675:return xn+e+Ki+"flex-line-pack"+_n(e,/align-content|flex-|-self/,"")+e;case 5548:return xn+e+Ki+_n(e,"shrink","negative")+e;case 5292:return xn+e+Ki+_n(e,"basis","preferred-size")+e;case 6060:return xn+"box-"+_n(e,"-grow","")+xn+e+Ki+_n(e,"grow","positive")+e;case 4554:return xn+_n(e,/([^-])(transform)/g,"$1"+xn+"$2")+e;case 6187:return _n(_n(_n(e,/(zoom-|grab)/,xn+"$1"),/(image-set)/,xn+"$1"),e,"")+e;case 5495:case 3959:return _n(e,/(image-set\([^]*)/,xn+"$1$`$1");case 4968:return _n(_n(e,/(.+:)(flex-)?(.*)/,xn+"box-pack:$3"+Ki+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+xn+e+e;case 4095:case 3583:case 4068:case 2532:return _n(e,/(.+)-inline(.+)/,xn+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(ml(e)-1-t>6)switch(Oo(e,t+1)){case 109:if(Oo(e,t+4)!==45)break;case 102:return _n(e,/(.+:)(.+)-([^]+)/,"$1"+xn+"$2-$3$1"+Z3+(Oo(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~qw(e,"stretch")?tO(_n(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(Oo(e,t+1)!==115)break;case 6444:switch(Oo(e,ml(e)-3-(~qw(e,"!important")&&10))){case 107:return _n(e,":",":"+xn)+e;case 101:return _n(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+xn+(Oo(e,14)===45?"inline-":"")+"box$3$1"+xn+"$2$3$1"+Ki+"$2box$3")+e}break;case 5936:switch(Oo(e,t+11)){case 114:return xn+e+Ki+_n(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return xn+e+Ki+_n(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return xn+e+Ki+_n(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return xn+e+Ki+e+e}return e}function n1(e,t){for(var n="",r=XC(e),i=0;i-1&&!e.return)switch(e.type){case YC:e.return=tO(e.value,e.length);break;case YR:return n1([ng(e,{value:_n(e.value,"@","@"+xn)})],r);case ZC:if(e.length)return BY(e.props,function(i){switch(FY(i,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return n1([ng(e,{props:[_n(i,/:(read-\w+)/,":"+Z3+"$1")]})],r);case"::placeholder":return n1([ng(e,{props:[_n(i,/:(plac\w+)/,":"+xn+"input-$1")]}),ng(e,{props:[_n(i,/:(plac\w+)/,":"+Z3+"$1")]}),ng(e,{props:[_n(i,/:(plac\w+)/,Ki+"input-$1")]})],r)}return""})}}var $E=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var i=t(r);return n.set(r,i),i}};function nO(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var QY=function(t,n,r){for(var i=0,o=0;i=o,o=El(),i===38&&o===12&&(n[r]=1),!Tm(o);)ga();return lv(t,Vo)},JY=function(t,n){var r=-1,i=44;do switch(Tm(i)){case 0:i===38&&El()===12&&(n[r]=1),t[r]+=QY(Vo-1,n,r);break;case 2:t[r]+=Ky(i);break;case 4:if(i===44){t[++r]=El()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=a5(i)}while(i=ga());return t},eX=function(t,n){return eO(JY(JR(t),n))},HE=new WeakMap,tX=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,i=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!HE.get(r))&&!i){HE.set(t,!0);for(var o=[],a=eX(n,o),s=r.props,l=0,d=0;l=4;++r,i-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var gX={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},mX=/[A-Z]|^ms/g,vX=/_EMO_([^_]+?)_([^]*?)_EMO_/g,uO=function(t){return t.charCodeAt(1)===45},WE=function(t){return t!=null&&typeof t!="boolean"},Ib=nO(function(e){return uO(e)?e:e.replace(mX,"-$&").toLowerCase()}),VE=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(vX,function(r,i,o){return vl={name:i,styles:o,next:vl},i})}return gX[t]!==1&&!uO(t)&&typeof n=="number"&&n!==0?n+"px":n};function Lm(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return vl={name:n.name,styles:n.styles,next:vl},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)vl={name:r.name,styles:r.styles,next:vl},r=r.next;var i=n.styles+";";return i}return yX(e,t,n)}case"function":{if(e!==void 0){var o=vl,a=n(e);return vl=o,Lm(e,t,a)}break}}if(t==null)return n;var s=t[n];return s!==void 0?s:n}function yX(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i{t.includes(r)||(n[r]=e[r])}),n}function OX(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},vO=NX(OX);function yO(e,t){const n={};return Object.keys(e).forEach(r=>{const i=e[r];t(i,r,e)&&(n[r]=i)}),n}var xO=e=>yO(e,t=>t!=null);function r9(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function S5(e){if(!r9(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function DX(e){var t;return r9(e)?((t=cv(e))==null?void 0:t.defaultView)??window:window}function cv(e){return r9(e)?e.ownerDocument??document:document}function zX(e){return e.view??window}function FX(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var dv=FX();function BX(e){const t=cv(e);return t?.activeElement}function i9(e,t){return e?e===t||e.contains(t):!1}var bO=e=>e.hasAttribute("tabindex"),$X=e=>bO(e)&&e.tabIndex===-1;function HX(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function WX(e){return S5(e)&&e.localName==="input"&&"select"in e}function SO(e){return(S5(e)?cv(e):document).activeElement===e}function wO(e){return e.parentElement&&wO(e.parentElement)?!0:e.hidden}function VX(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function CO(e){if(!S5(e)||wO(e)||HX(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():VX(e)?!0:bO(e)}function UX(e){return e?S5(e)&&CO(e)&&!$X(e):!1}var GX=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],jX=GX.join(),qX=e=>e.offsetWidth>0&&e.offsetHeight>0;function KX(e){const t=Array.from(e.querySelectorAll(jX));return t.unshift(e),t.filter(n=>CO(n)&&qX(n))}function Y3(e,...t){return Up(e)?e(...t):e}function ZX(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function YX(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var XX=YX(e=>()=>{const{condition:t,message:n}=e;t&&MX&&console.warn(n)}),QX=(...e)=>t=>e.reduce((n,r)=>r(n),t);function X3(e,t={}){const{isActive:n=SO,nextTick:r,preventScroll:i=!0,selectTextIfInput:o=!0}=t;if(!e||n(e))return-1;function a(){if(!e){XX({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(JX())e.focus({preventScroll:i});else if(e.focus(),i){const s=eQ(e);tQ(s)}if(o){if(WX(e))e.select();else if("setSelectionRange"in e){const s=e;s.setSelectionRange(s.value.length,s.value.length)}}}return r?requestAnimationFrame(a):(a(),-1)}var V2=null;function JX(){if(V2==null){V2=!1;try{document.createElement("div").focus({get preventScroll(){return V2=!0,!0}})}catch{}}return V2}function eQ(e){const t=cv(e),n=t.defaultView??window;let r=e.parentNode;const i=[],o=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==o;)(r.offsetHeight{const n=zX(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var iQ={pageX:0,pageY:0};function oQ(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||iQ;return{x:r[`${t}X`],y:r[`${t}Y`]}}function aQ(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function sQ(e,t="page"){return{point:nQ(e)?oQ(e,t):aQ(e,t)}}var lQ=(e,t=!1)=>{const n=r=>e(r,sQ(r));return t?rQ(n):n},uQ=()=>dv&&window.onpointerdown===null,cQ=()=>dv&&window.ontouchstart===null,dQ=()=>dv&&window.onmousedown===null,fQ={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},hQ={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function pQ(e){return uQ()?e:cQ()?hQ[e]:dQ()?fQ[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function gQ(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function mQ(e){return dv?gQ(window.navigator)===e:!1}function vQ(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,i=C.exports.createContext(void 0);i.displayName=r;function o(){var a;const s=C.exports.useContext(i);if(!s&&t){const l=new Error(n);throw l.name="ContextError",(a=Error.captureStackTrace)==null||a.call(Error,l,o),l}return s}return[i.Provider,o,i]}function Qw(){return Qw=Object.assign?Object.assign.bind():function(e){for(var t=1;t96?bQ:SQ},KE=function(t,n,r){var i;if(n){var o=n.shouldForwardProp;i=t.__emotion_forwardProp&&o?function(a){return t.__emotion_forwardProp(a)&&o(a)}:o}return typeof i!="function"&&r&&(i=t.__emotion_forwardProp),i},wQ=function(t){var n=t.cache,r=t.serialized,i=t.isStringTag;return sO(n,r,i),bX(function(){return lO(n,r,i)}),null},CQ=function e(t,n){var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,o,a;n!==void 0&&(o=n.label,a=n.target);var s=KE(t,n,r),l=s||qE(i),d=!l("as");return function(){var p=arguments,g=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(o!==void 0&&g.push("label:"+o+";"),p[0]==null||p[0].raw===void 0)g.push.apply(g,p);else{g.push(p[0][0]);for(var m=p.length,y=1;y` or ``");return e}function _O(){const e=jC(),t=W1();return{...e,theme:t}}function AQ(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__breakpoints)==null?void 0:o.asArray)==null?void 0:a[i]};return r(t)??r(n)??n}function IQ(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__cssMap)==null?void 0:o[i])==null?void 0:a.value};return r(t)??r(n)??n}function MQ(e,t,n){const r=Array.isArray(t)?t:[t],i=Array.isArray(n)?n:[n];return o=>{const a=i.filter(Boolean),s=r.map((l,d)=>{if(e==="breakpoints")return AQ(o,l,a[d]??l);const p=`${e}.${l}`;return IQ(o,p,a[d]??l)});return Array.isArray(t)?s:s[0]}}function RQ(e){const{cssVarsRoot:t,theme:n,children:r}=e,i=C.exports.useMemo(()=>mY(n),[n]);return oe(CX,{theme:i,children:[S(OQ,{root:t}),r]})}function OQ({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return S(x5,{styles:n=>({[t]:n.__cssVars})})}vQ({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function NQ(){const{colorMode:e}=jC();return S(x5,{styles:t=>{const n=vO(t,"styles.global"),r=Y3(n,{theme:t,colorMode:e});return r?KR(r)(t):void 0}})}var DQ=new Set([...xY,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),zQ=new Set(["htmlWidth","htmlHeight","htmlSize"]);function FQ(e){return zQ.has(e)||!DQ.has(e)}var BQ=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:i,sx:o,...a}=t,s=yO(a,(g,m)=>SY(m)),l=Y3(e,t),d=Object.assign({},i,l,xO(s),o),p=KR(d)(t.theme);return r?[p,r]:p};function Mb(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=FQ);const i=BQ({baseStyle:n});return Jw(e,r)(i)}function Le(e){return C.exports.forwardRef(e)}function kO(e,t={}){const{styleConfig:n,...r}=t,{theme:i,colorMode:o}=_O(),a=vO(i,`components.${e}`),s=n||a,l=cd({theme:i,colorMode:o},s?.defaultProps??{},xO(RX(r,["children"]))),d=C.exports.useRef({});if(s){const g=LY(s)(l);LQ(d.current,g)||(d.current=g)}return d.current}function bo(e,t={}){return kO(e,t)}function Bi(e,t={}){return kO(e,t)}function $Q(){const e=new Map;return new Proxy(Mb,{apply(t,n,r){return Mb(...r)},get(t,n){return e.has(n)||e.set(n,Mb(n)),e.get(n)}})}var Ce=$Q();function HQ(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function kn(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:i="Provider",errorMessage:o}=e,a=C.exports.createContext(void 0);a.displayName=t;function s(){var l;const d=C.exports.useContext(a);if(!d&&n){const p=new Error(o??HQ(r,i));throw p.name="ContextError",(l=Error.captureStackTrace)==null||l.call(Error,p,s),p}return d}return[a.Provider,s,a]}function WQ(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function Fn(...e){return t=>{e.forEach(n=>{WQ(n,t)})}}function VQ(...e){return C.exports.useMemo(()=>Fn(...e),e)}function ZE(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var UQ=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function YE(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function XE(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var e6=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,Q3=e=>e,GQ=class{descendants=new Map;register=e=>{if(e!=null)return UQ(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=ZE(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=YE(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=YE(r,this.enabledCount(),t);return this.enabledItem(i)};prev=(e,t=!0)=>{const n=XE(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=XE(r,this.enabledCount()-1,t);return this.enabledItem(i)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=ZE(n);t?.disabled&&(t.disabled=!!t.disabled);const i={node:e,index:-1,...t};this.descendants.set(e,i),this.assignIndex(r)}};function jQ(){const e=C.exports.useRef(new GQ);return e6(()=>()=>e.current.destroy()),e.current}var[qQ,EO]=kn({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function KQ(e){const t=EO(),[n,r]=C.exports.useState(-1),i=C.exports.useRef(null);e6(()=>()=>{!i.current||t.unregister(i.current)},[]),e6(()=>{if(!i.current)return;const a=Number(i.current.dataset.index);n!=a&&!Number.isNaN(a)&&r(a)});const o=Q3(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(i.current),register:Fn(o,i)}}function PO(){return[Q3(qQ),()=>Q3(EO()),()=>jQ(),i=>KQ(i)]}var Pr=(...e)=>e.filter(Boolean).join(" "),QE={path:oe("g",{stroke:"currentColor",strokeWidth:"1.5",children:[S("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),S("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),S("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},_a=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=Pr("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??QE.viewBox;if(n&&typeof n!="string")return le.createElement(Ce.svg,{as:n,...m,...d});const b=a??QE.path;return le.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});_a.displayName="Icon";function V1(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:i={}}=e,o=C.exports.Children.toArray(e.path),a=Le((s,l)=>S(_a,{ref:l,viewBox:t,...i,...s,children:o.length?o:S("path",{fill:"currentColor",d:n})}));return a.displayName=r,a}function kr(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function w5(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:i=(m,y)=>m!==y}=e,o=kr(r),a=kr(i),[s,l]=C.exports.useState(n),d=t!==void 0,p=d?t:s,g=C.exports.useCallback(m=>{const b=typeof m=="function"?m(p):m;!a(p,b)||(d||l(b),o(b))},[d,o,p,a]);return[p,g]}const o9=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),C5=C.exports.createContext({});function ZQ(){return C.exports.useContext(C5).visualElement}const U1=C.exports.createContext(null),mh=typeof document<"u",J3=mh?C.exports.useLayoutEffect:C.exports.useEffect,TO=C.exports.createContext({strict:!1});function YQ(e,t,n,r){const i=ZQ(),o=C.exports.useContext(TO),a=C.exports.useContext(U1),s=C.exports.useContext(o9).reducedMotion,l=C.exports.useRef(void 0);r=r||o.renderer,!l.current&&r&&(l.current=r(e,{visualState:t,parent:i,props:n,presenceId:a?a.id:void 0,blockInitialAnimation:a?a.initial===!1:!1,reducedMotionConfig:s}));const d=l.current;return J3(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),J3(()=>()=>d&&d.notifyUnmount(),[]),d}function Gp(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function XQ(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Gp(n)&&(n.current=r))},[t])}function Mm(e){return typeof e=="string"||Array.isArray(e)}function _5(e){return typeof e=="object"&&typeof e.start=="function"}const QQ=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function k5(e){return _5(e.animate)||QQ.some(t=>Mm(e[t]))}function LO(e){return Boolean(k5(e)||e.variants)}function JQ(e,t){if(k5(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Mm(n)?n:void 0,animate:Mm(r)?r:void 0}}return e.inherit!==!1?t:{}}function eJ(e){const{initial:t,animate:n}=JQ(e,C.exports.useContext(C5));return C.exports.useMemo(()=>({initial:t,animate:n}),[JE(t),JE(n)])}function JE(e){return Array.isArray(e)?e.join(" "):e}const gu=e=>({isEnabled:t=>e.some(n=>!!t[n])}),Rm={measureLayout:gu(["layout","layoutId","drag"]),animation:gu(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:gu(["exit"]),drag:gu(["drag","dragControls"]),focus:gu(["whileFocus"]),hover:gu(["whileHover","onHoverStart","onHoverEnd"]),tap:gu(["whileTap","onTap","onTapStart","onTapCancel"]),pan:gu(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:gu(["whileInView","onViewportEnter","onViewportLeave"])};function tJ(e){for(const t in e)t==="projectionNodeConstructor"?Rm.projectionNodeConstructor=e[t]:Rm[t].Component=e[t]}function E5(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const Ug={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let nJ=1;function rJ(){return E5(()=>{if(Ug.hasEverUpdated)return nJ++})}const a9=C.exports.createContext({});class iJ extends le.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const AO=C.exports.createContext({}),oJ=Symbol.for("motionComponentSymbol");function aJ({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:i,Component:o}){e&&tJ(e);function a(l,d){const p={...C.exports.useContext(o9),...l,layoutId:sJ(l)},{isStatic:g}=p;let m=null;const y=eJ(l),b=g?void 0:rJ(),w=i(l,g);if(!g&&mh){y.visualElement=YQ(o,w,p,t);const P=C.exports.useContext(TO).strict,E=C.exports.useContext(AO);y.visualElement&&(m=y.visualElement.loadFeatures(p,P,e,b,n||Rm.projectionNodeConstructor,E))}return oe(iJ,{visualElement:y.visualElement,props:p,children:[m,S(C5.Provider,{value:y,children:r(o,l,b,XQ(w,y.visualElement,d),w,g,y.visualElement)})]})}const s=C.exports.forwardRef(a);return s[oJ]=o,s}function sJ({layoutId:e}){const t=C.exports.useContext(a9).id;return t&&e!==void 0?t+"-"+e:e}function lJ(e){function t(r,i={}){return aJ(e(r,i))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,i)=>(n.has(i)||n.set(i,t(i)),n.get(i))})}const uJ=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function s9(e){return typeof e!="string"||e.includes("-")?!1:!!(uJ.indexOf(e)>-1||/[A-Z]/.test(e))}const e4={};function cJ(e){Object.assign(e4,e)}const t4=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],fv=new Set(t4);function IO(e,{layout:t,layoutId:n}){return fv.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!e4[e]||e==="opacity")}const Rl=e=>!!e?.getVelocity,dJ={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},fJ=(e,t)=>t4.indexOf(e)-t4.indexOf(t);function hJ({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},i,o){let a="";t.sort(fJ);for(const s of t)a+=`${dJ[s]||s}(${e[s]}) `;return n&&!e.z&&(a+="translateZ(0)"),a=a.trim(),o?a=o(e,i?"":a):r&&i&&(a="none"),a}function MO(e){return e.startsWith("--")}const pJ=(e,t)=>t&&typeof e=="number"?t.transform(e):e,RO=(e,t)=>n=>Math.max(Math.min(n,t),e),Gg=e=>e%1?Number(e.toFixed(5)):e,Om=/(-)?([\d]*\.?[\d])+/g,t6=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,gJ=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function hv(e){return typeof e=="string"}const vh={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},jg=Object.assign(Object.assign({},vh),{transform:RO(0,1)}),U2=Object.assign(Object.assign({},vh),{default:1}),pv=e=>({test:t=>hv(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),Oc=pv("deg"),Pl=pv("%"),Ct=pv("px"),mJ=pv("vh"),vJ=pv("vw"),eP=Object.assign(Object.assign({},Pl),{parse:e=>Pl.parse(e)/100,transform:e=>Pl.transform(e*100)}),l9=(e,t)=>n=>Boolean(hv(n)&&gJ.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),OO=(e,t,n)=>r=>{if(!hv(r))return r;const[i,o,a,s]=r.match(Om);return{[e]:parseFloat(i),[t]:parseFloat(o),[n]:parseFloat(a),alpha:s!==void 0?parseFloat(s):1}},Vf={test:l9("hsl","hue"),parse:OO("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+Pl.transform(Gg(t))+", "+Pl.transform(Gg(n))+", "+Gg(jg.transform(r))+")"},yJ=RO(0,255),Rb=Object.assign(Object.assign({},vh),{transform:e=>Math.round(yJ(e))}),Kc={test:l9("rgb","red"),parse:OO("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Rb.transform(e)+", "+Rb.transform(t)+", "+Rb.transform(n)+", "+Gg(jg.transform(r))+")"};function xJ(e){let t="",n="",r="",i="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),i=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),i=e.substr(4,1),t+=t,n+=n,r+=r,i+=i),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:i?parseInt(i,16)/255:1}}const n6={test:l9("#"),parse:xJ,transform:Kc.transform},ho={test:e=>Kc.test(e)||n6.test(e)||Vf.test(e),parse:e=>Kc.test(e)?Kc.parse(e):Vf.test(e)?Vf.parse(e):n6.parse(e),transform:e=>hv(e)?e:e.hasOwnProperty("red")?Kc.transform(e):Vf.transform(e)},NO="${c}",DO="${n}";function bJ(e){var t,n,r,i;return isNaN(e)&&hv(e)&&((n=(t=e.match(Om))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((i=(r=e.match(t6))===null||r===void 0?void 0:r.length)!==null&&i!==void 0?i:0)>0}function zO(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(t6);r&&(n=r.length,e=e.replace(t6,NO),t.push(...r.map(ho.parse)));const i=e.match(Om);return i&&(e=e.replace(Om,DO),t.push(...i.map(vh.parse))),{values:t,numColors:n,tokenised:e}}function FO(e){return zO(e).values}function BO(e){const{values:t,numColors:n,tokenised:r}=zO(e),i=t.length;return o=>{let a=r;for(let s=0;stypeof e=="number"?0:e;function wJ(e){const t=FO(e);return BO(e)(t.map(SJ))}const Mu={test:bJ,parse:FO,createTransformer:BO,getAnimatableNone:wJ},CJ=new Set(["brightness","contrast","saturate","opacity"]);function _J(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match(Om)||[];if(!r)return e;const i=n.replace(r,"");let o=CJ.has(t)?1:0;return r!==n&&(o*=100),t+"("+o+i+")"}const kJ=/([a-z-]*)\(.*?\)/g,r6=Object.assign(Object.assign({},Mu),{getAnimatableNone:e=>{const t=e.match(kJ);return t?t.map(_J).join(" "):e}}),tP={...vh,transform:Math.round},$O={borderWidth:Ct,borderTopWidth:Ct,borderRightWidth:Ct,borderBottomWidth:Ct,borderLeftWidth:Ct,borderRadius:Ct,radius:Ct,borderTopLeftRadius:Ct,borderTopRightRadius:Ct,borderBottomRightRadius:Ct,borderBottomLeftRadius:Ct,width:Ct,maxWidth:Ct,height:Ct,maxHeight:Ct,size:Ct,top:Ct,right:Ct,bottom:Ct,left:Ct,padding:Ct,paddingTop:Ct,paddingRight:Ct,paddingBottom:Ct,paddingLeft:Ct,margin:Ct,marginTop:Ct,marginRight:Ct,marginBottom:Ct,marginLeft:Ct,rotate:Oc,rotateX:Oc,rotateY:Oc,rotateZ:Oc,scale:U2,scaleX:U2,scaleY:U2,scaleZ:U2,skew:Oc,skewX:Oc,skewY:Oc,distance:Ct,translateX:Ct,translateY:Ct,translateZ:Ct,x:Ct,y:Ct,z:Ct,perspective:Ct,transformPerspective:Ct,opacity:jg,originX:eP,originY:eP,originZ:Ct,zIndex:tP,fillOpacity:jg,strokeOpacity:jg,numOctaves:tP};function u9(e,t,n,r){const{style:i,vars:o,transform:a,transformKeys:s,transformOrigin:l}=e;s.length=0;let d=!1,p=!1,g=!0;for(const m in t){const y=t[m];if(MO(m)){o[m]=y;continue}const b=$O[m],w=pJ(y,b);if(fv.has(m)){if(d=!0,a[m]=w,s.push(m),!g)continue;y!==(b.default||0)&&(g=!1)}else m.startsWith("origin")?(p=!0,l[m]=w):i[m]=w}if(d||r?i.transform=hJ(e,n,g,r):!t.transform&&i.transform&&(i.transform="none"),p){const{originX:m="50%",originY:y="50%",originZ:b=0}=l;i.transformOrigin=`${m} ${y} ${b}`}}const c9=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function HO(e,t,n){for(const r in t)!Rl(t[r])&&!IO(r,n)&&(e[r]=t[r])}function EJ({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=c9();return u9(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function PJ(e,t,n){const r=e.style||{},i={};return HO(i,r,e),Object.assign(i,EJ(e,t,n)),e.transformValues?e.transformValues(i):i}function TJ(e,t,n){const r={},i=PJ(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=i,r}const LJ=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],AJ=["whileTap","onTap","onTapStart","onTapCancel"],IJ=["onPan","onPanStart","onPanSessionStart","onPanEnd"],MJ=["whileInView","onViewportEnter","onViewportLeave","viewport"],RJ=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...MJ,...AJ,...LJ,...IJ]);function n4(e){return RJ.has(e)}let WO=e=>!n4(e);function OJ(e){!e||(WO=t=>t.startsWith("on")?!n4(t):e(t))}try{OJ(require("@emotion/is-prop-valid").default)}catch{}function NJ(e,t,n){const r={};for(const i in e)(WO(i)||n===!0&&n4(i)||!t&&!n4(i)||e.draggable&&i.startsWith("onDrag"))&&(r[i]=e[i]);return r}function nP(e,t,n){return typeof e=="string"?e:Ct.transform(t+n*e)}function DJ(e,t,n){const r=nP(t,e.x,e.width),i=nP(n,e.y,e.height);return`${r} ${i}`}const zJ={offset:"stroke-dashoffset",array:"stroke-dasharray"},FJ={offset:"strokeDashoffset",array:"strokeDasharray"};function BJ(e,t,n=1,r=0,i=!0){e.pathLength=1;const o=i?zJ:FJ;e[o.offset]=Ct.transform(-r);const a=Ct.transform(t),s=Ct.transform(n);e[o.array]=`${a} ${s}`}function d9(e,{attrX:t,attrY:n,originX:r,originY:i,pathLength:o,pathSpacing:a=1,pathOffset:s=0,...l},d,p){u9(e,l,d,p),e.attrs=e.style,e.style={};const{attrs:g,style:m,dimensions:y}=e;g.transform&&(y&&(m.transform=g.transform),delete g.transform),y&&(r!==void 0||i!==void 0||m.transform)&&(m.transformOrigin=DJ(y,r!==void 0?r:.5,i!==void 0?i:.5)),t!==void 0&&(g.x=t),n!==void 0&&(g.y=n),o!==void 0&&BJ(g,o,a,s,!1)}const VO=()=>({...c9(),attrs:{}});function $J(e,t){const n=C.exports.useMemo(()=>{const r=VO();return d9(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};HO(r,e.style,e),n.style={...r,...n.style}}return n}function HJ(e=!1){return(n,r,i,o,{latestValues:a},s)=>{const d=(s9(n)?$J:TJ)(r,a,s),g={...NJ(r,typeof n=="string",e),...d,ref:o};return i&&(g["data-projection-id"]=i),C.exports.createElement(n,g)}}const UO=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function GO(e,{style:t,vars:n},r,i){Object.assign(e.style,t,i&&i.getProjectionStyles(r));for(const o in n)e.style.setProperty(o,n[o])}const jO=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function qO(e,t,n,r){GO(e,t,void 0,r);for(const i in t.attrs)e.setAttribute(jO.has(i)?i:UO(i),t.attrs[i])}function f9(e){const{style:t}=e,n={};for(const r in t)(Rl(t[r])||IO(r,e))&&(n[r]=t[r]);return n}function KO(e){const t=f9(e);for(const n in e)if(Rl(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function ZO(e,t,n,r={},i={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),t}const Nm=e=>Array.isArray(e),WJ=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),YO=e=>Nm(e)?e[e.length-1]||0:e;function Xy(e){const t=Rl(e)?e.get():e;return WJ(t)?t.toValue():t}function VJ({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,i,o){const a={latestValues:UJ(r,i,o,e),renderState:t()};return n&&(a.mount=s=>n(r,s,a)),a}const XO=e=>(t,n)=>{const r=C.exports.useContext(C5),i=C.exports.useContext(U1),o=()=>VJ(e,t,r,i);return n?o():E5(o)};function UJ(e,t,n,r){const i={},o=r(e);for(const m in o)i[m]=Xy(o[m]);let{initial:a,animate:s}=e;const l=k5(e),d=LO(e);t&&d&&!l&&e.inherit!==!1&&(a===void 0&&(a=t.initial),s===void 0&&(s=t.animate));let p=n?n.initial===!1:!1;p=p||a===!1;const g=p?s:a;return g&&typeof g!="boolean"&&!_5(g)&&(Array.isArray(g)?g:[g]).forEach(y=>{const b=ZO(e,y);if(!b)return;const{transitionEnd:w,transition:P,...E}=b;for(const k in E){let L=E[k];if(Array.isArray(L)){const M=p?L.length-1:0;L=L[M]}L!==null&&(i[k]=L)}for(const k in w)i[k]=w[k]}),i}const GJ={useVisualState:XO({scrapeMotionValuesFromProps:KO,createRenderState:VO,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}d9(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),qO(t,n)}})},jJ={useVisualState:XO({scrapeMotionValuesFromProps:f9,createRenderState:c9})};function qJ(e,{forwardMotionProps:t=!1},n,r,i){return{...s9(e)?GJ:jJ,preloadedFeatures:n,useRender:HJ(t),createVisualElement:r,projectionNodeConstructor:i,Component:e}}var Un;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Un||(Un={}));function P5(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function i6(e,t,n,r){C.exports.useEffect(()=>{const i=e.current;if(n&&i)return P5(i,t,n,r)},[e,t,n,r])}function KJ({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Un.Focus,!0)},i=()=>{n&&n.setActive(Un.Focus,!1)};i6(t,"focus",e?r:void 0),i6(t,"blur",e?i:void 0)}function QO(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function JO(e){return!!e.touches}function ZJ(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const YJ={pageX:0,pageY:0};function XJ(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||YJ;return{x:r[t+"X"],y:r[t+"Y"]}}function QJ(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function h9(e,t="page"){return{point:JO(e)?XJ(e,t):QJ(e,t)}}const eN=(e,t=!1)=>{const n=r=>e(r,h9(r));return t?ZJ(n):n},JJ=()=>mh&&window.onpointerdown===null,eee=()=>mh&&window.ontouchstart===null,tee=()=>mh&&window.onmousedown===null,nee={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},ree={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function tN(e){return JJ()?e:eee()?ree[e]:tee()?nee[e]:e}function r1(e,t,n,r){return P5(e,tN(t),eN(n,t==="pointerdown"),r)}function r4(e,t,n,r){return i6(e,tN(t),n&&eN(n,t==="pointerdown"),r)}function nN(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const rP=nN("dragHorizontal"),iP=nN("dragVertical");function rN(e){let t=!1;if(e==="y")t=iP();else if(e==="x")t=rP();else{const n=rP(),r=iP();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function iN(){const e=rN(!0);return e?(e(),!1):!0}function oP(e,t,n){return(r,i)=>{!QO(r)||iN()||(e.animationState&&e.animationState.setActive(Un.Hover,t),n&&n(r,i))}}function iee({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){r4(r,"pointerenter",e||n?oP(r,!0,e):void 0,{passive:!e}),r4(r,"pointerleave",t||n?oP(r,!1,t):void 0,{passive:!t})}const oN=(e,t)=>t?e===t?!0:oN(e,t.parentElement):!1;function p9(e){return C.exports.useEffect(()=>()=>e(),[])}var bl=function(){return bl=Object.assign||function(t){for(var n,r=1,i=arguments.length;r0&&o[o.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!o||d[1]>o[0]&&d[1]0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function o6(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,o;rMath.min(Math.max(n,e),t),Ob=.001,aee=.01,sP=10,see=.05,lee=1;function uee({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let i,o;oee(e<=sP*1e3);let a=1-t;a=o4(see,lee,a),e=o4(aee,sP,e/1e3),a<1?(i=d=>{const p=d*a,g=p*e,m=p-n,y=a6(d,a),b=Math.exp(-g);return Ob-m/y*b},o=d=>{const g=d*a*e,m=g*n+n,y=Math.pow(a,2)*Math.pow(d,2)*e,b=Math.exp(-g),w=a6(Math.pow(d,2),a);return(-i(d)+Ob>0?-1:1)*((m-y)*b)/w}):(i=d=>{const p=Math.exp(-d*e),g=(d-n)*e+1;return-Ob+p*g},o=d=>{const p=Math.exp(-d*e),g=(n-d)*(e*e);return p*g});const s=5/e,l=dee(i,o,s);if(e=e*1e3,isNaN(l))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(l,2)*r;return{stiffness:d,damping:a*2*Math.sqrt(r*d),duration:e}}}const cee=12;function dee(e,t,n){let r=n;for(let i=1;ie[n]!==void 0)}function pee(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!lP(e,hee)&&lP(e,fee)){const n=uee(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function g9(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:i}=e,o=T5(e,["from","to","restSpeed","restDelta"]);const a={done:!1,value:t};let{stiffness:s,damping:l,mass:d,velocity:p,duration:g,isResolvedFromDuration:m}=pee(o),y=uP,b=uP;function w(){const P=p?-(p/1e3):0,E=n-t,k=l/(2*Math.sqrt(s*d)),L=Math.sqrt(s/d)/1e3;if(i===void 0&&(i=Math.min(Math.abs(n-t)/100,.4)),k<1){const M=a6(L,k);y=N=>{const F=Math.exp(-k*L*N);return n-F*((P+k*L*E)/M*Math.sin(M*N)+E*Math.cos(M*N))},b=N=>{const F=Math.exp(-k*L*N);return k*L*F*(Math.sin(M*N)*(P+k*L*E)/M+E*Math.cos(M*N))-F*(Math.cos(M*N)*(P+k*L*E)-M*E*Math.sin(M*N))}}else if(k===1)y=M=>n-Math.exp(-L*M)*(E+(P+L*E)*M);else{const M=L*Math.sqrt(k*k-1);y=N=>{const F=Math.exp(-k*L*N),B=Math.min(M*N,300);return n-F*((P+k*L*E)*Math.sinh(B)+M*E*Math.cosh(B))/M}}}return w(),{next:P=>{const E=y(P);if(m)a.done=P>=g;else{const k=b(P)*1e3,L=Math.abs(k)<=r,M=Math.abs(n-E)<=i;a.done=L&&M}return a.value=a.done?n:E,a},flipTarget:()=>{p=-p,[t,n]=[n,t],w()}}}g9.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const uP=e=>0,Dm=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Er=(e,t,n)=>-n*e+n*t+e;function Nb(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function cP({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let i=0,o=0,a=0;if(!t)i=o=a=n;else{const s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;i=Nb(l,s,e+1/3),o=Nb(l,s,e),a=Nb(l,s,e-1/3)}return{red:Math.round(i*255),green:Math.round(o*255),blue:Math.round(a*255),alpha:r}}const gee=(e,t,n)=>{const r=e*e,i=t*t;return Math.sqrt(Math.max(0,n*(i-r)+r))},mee=[n6,Kc,Vf],dP=e=>mee.find(t=>t.test(e)),aN=(e,t)=>{let n=dP(e),r=dP(t),i=n.parse(e),o=r.parse(t);n===Vf&&(i=cP(i),n=Kc),r===Vf&&(o=cP(o),r=Kc);const a=Object.assign({},i);return s=>{for(const l in a)l!=="alpha"&&(a[l]=gee(i[l],o[l],s));return a.alpha=Er(i.alpha,o.alpha,s),n.transform(a)}},s6=e=>typeof e=="number",vee=(e,t)=>n=>t(e(n)),L5=(...e)=>e.reduce(vee);function sN(e,t){return s6(e)?n=>Er(e,t,n):ho.test(e)?aN(e,t):uN(e,t)}const lN=(e,t)=>{const n=[...e],r=n.length,i=e.map((o,a)=>sN(o,t[a]));return o=>{for(let a=0;a{const n=Object.assign(Object.assign({},e),t),r={};for(const i in n)e[i]!==void 0&&t[i]!==void 0&&(r[i]=sN(e[i],t[i]));return i=>{for(const o in r)n[o]=r[o](i);return n}};function fP(e){const t=Mu.parse(e),n=t.length;let r=0,i=0,o=0;for(let a=0;a{const n=Mu.createTransformer(t),r=fP(e),i=fP(t);return r.numHSL===i.numHSL&&r.numRGB===i.numRGB&&r.numNumbers>=i.numNumbers?L5(lN(r.parsed,i.parsed),n):a=>`${a>0?t:e}`},xee=(e,t)=>n=>Er(e,t,n);function bee(e){if(typeof e=="number")return xee;if(typeof e=="string")return ho.test(e)?aN:uN;if(Array.isArray(e))return lN;if(typeof e=="object")return yee}function See(e,t,n){const r=[],i=n||bee(e[0]),o=e.length-1;for(let a=0;an(Dm(e,t,r))}function Cee(e,t){const n=e.length,r=n-1;return i=>{let o=0,a=!1;if(i<=e[0]?a=!0:i>=e[r]&&(o=r-1,a=!0),!a){let l=1;for(;li||l===r);l++);o=l-1}const s=Dm(e[o],e[o+1],i);return t[o](s)}}function cN(e,t,{clamp:n=!0,ease:r,mixer:i}={}){const o=e.length;i4(o===t.length),i4(!r||!Array.isArray(r)||r.length===o-1),e[0]>e[o-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const a=See(t,r,i),s=o===2?wee(e,a):Cee(e,a);return n?l=>s(o4(e[0],e[o-1],l)):s}const A5=e=>t=>1-e(1-t),m9=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,_ee=e=>t=>Math.pow(t,e),dN=e=>t=>t*t*((e+1)*t-e),kee=e=>{const t=dN(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},fN=1.525,Eee=4/11,Pee=8/11,Tee=9/10,v9=e=>e,y9=_ee(2),Lee=A5(y9),hN=m9(y9),pN=e=>1-Math.sin(Math.acos(e)),x9=A5(pN),Aee=m9(x9),b9=dN(fN),Iee=A5(b9),Mee=m9(b9),Ree=kee(fN),Oee=4356/361,Nee=35442/1805,Dee=16061/1805,a4=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-a4(1-e*2)):.5*a4(e*2-1)+.5;function Bee(e,t){return e.map(()=>t||hN).splice(0,e.length-1)}function $ee(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function Hee(e,t){return e.map(n=>n*t)}function Qy({from:e=0,to:t=1,ease:n,offset:r,duration:i=300}){const o={done:!1,value:e},a=Array.isArray(t)?t:[e,t],s=Hee(r&&r.length===a.length?r:$ee(a),i);function l(){return cN(s,a,{ease:Array.isArray(n)?n:Bee(a,n)})}let d=l();return{next:p=>(o.value=d(p),o.done=p>=i,o),flipTarget:()=>{a.reverse(),d=l()}}}function Wee({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:i=.5,modifyTarget:o}){const a={done:!1,value:t};let s=n*e;const l=t+s,d=o===void 0?l:o(l);return d!==l&&(s=d-t),{next:p=>{const g=-s*Math.exp(-p/r);return a.done=!(g>i||g<-i),a.value=a.done?d:d+g,a},flipTarget:()=>{}}}const hP={keyframes:Qy,spring:g9,decay:Wee};function Vee(e){if(Array.isArray(e.to))return Qy;if(hP[e.type])return hP[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?Qy:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?g9:Qy}const gN=1/60*1e3,Uee=typeof performance<"u"?()=>performance.now():()=>Date.now(),mN=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(Uee()),gN);function Gee(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=Gee(()=>zm=!0),e),{}),qee=gv.reduce((e,t)=>{const n=I5[t];return e[t]=(r,i=!1,o=!1)=>(zm||Yee(),n.schedule(r,i,o)),e},{}),Kee=gv.reduce((e,t)=>(e[t]=I5[t].cancel,e),{});gv.reduce((e,t)=>(e[t]=()=>I5[t].process(i1),e),{});const Zee=e=>I5[e].process(i1),vN=e=>{zm=!1,i1.delta=l6?gN:Math.max(Math.min(e-i1.timestamp,jee),1),i1.timestamp=e,u6=!0,gv.forEach(Zee),u6=!1,zm&&(l6=!1,mN(vN))},Yee=()=>{zm=!0,l6=!0,u6||mN(vN)},Xee=()=>i1;function yN(e,t,n=0){return e-t-n}function Qee(e,t,n=0,r=!0){return r?yN(t+-e,t,n):t-(e-t)+n}function Jee(e,t,n,r){return r?e>=t+n:e<=-n}const ete=e=>{const t=({delta:n})=>e(n);return{start:()=>qee.update(t,!0),stop:()=>Kee.update(t)}};function xN(e){var t,n,{from:r,autoplay:i=!0,driver:o=ete,elapsed:a=0,repeat:s=0,repeatType:l="loop",repeatDelay:d=0,onPlay:p,onStop:g,onComplete:m,onRepeat:y,onUpdate:b}=e,w=T5(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:P}=w,E,k=0,L=w.duration,M,N=!1,F=!0,B;const z=Vee(w);!((n=(t=z).needsInterpolation)===null||n===void 0)&&n.call(t,r,P)&&(B=cN([0,100],[r,P],{clamp:!1}),r=0,P=100);const j=z(Object.assign(Object.assign({},w),{from:r,to:P}));function q(){k++,l==="reverse"?(F=k%2===0,a=Qee(a,L,d,F)):(a=yN(a,L,d),l==="mirror"&&j.flipTarget()),N=!1,y&&y()}function Y(){E.stop(),m&&m()}function ge(ve){if(F||(ve=-ve),a+=ve,!N){const we=j.next(Math.max(0,a));M=we.value,B&&(M=B(M)),N=F?we.done:a<=0}b?.(M),N&&(k===0&&(L??(L=a)),k{g?.(),E.stop()}}}function bN(e,t){return t?e*(1e3/t):0}function tte({from:e=0,velocity:t=0,min:n,max:r,power:i=.8,timeConstant:o=750,bounceStiffness:a=500,bounceDamping:s=10,restDelta:l=1,modifyTarget:d,driver:p,onUpdate:g,onComplete:m,onStop:y}){let b;function w(L){return n!==void 0&&Lr}function P(L){return n===void 0?r:r===void 0||Math.abs(n-L){var N;g?.(M),(N=L.onUpdate)===null||N===void 0||N.call(L,M)},onComplete:m,onStop:y}))}function k(L){E(Object.assign({type:"spring",stiffness:a,damping:s,restDelta:l},L))}if(w(e))k({from:e,velocity:t,to:P(e)});else{let L=i*t+e;typeof d<"u"&&(L=d(L));const M=P(L),N=M===n?-1:1;let F,B;const z=j=>{F=B,B=j,t=bN(j-F,Xee().delta),(N===1&&j>M||N===-1&&jb?.stop()}}const c6=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),pP=e=>c6(e)&&e.hasOwnProperty("z"),G2=(e,t)=>Math.abs(e-t);function S9(e,t){if(s6(e)&&s6(t))return G2(e,t);if(c6(e)&&c6(t)){const n=G2(e.x,t.x),r=G2(e.y,t.y),i=pP(e)&&pP(t)?G2(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(i,2))}}const SN=(e,t)=>1-3*t+3*e,wN=(e,t)=>3*t-6*e,CN=e=>3*e,s4=(e,t,n)=>((SN(t,n)*e+wN(t,n))*e+CN(t))*e,_N=(e,t,n)=>3*SN(t,n)*e*e+2*wN(t,n)*e+CN(t),nte=1e-7,rte=10;function ite(e,t,n,r,i){let o,a,s=0;do a=t+(n-t)/2,o=s4(a,r,i)-e,o>0?n=a:t=a;while(Math.abs(o)>nte&&++s=ate?ste(a,g,e,n):m===0?g:ite(a,s,s+j2,e,n)}return a=>a===0||a===1?a:s4(o(a),t,r)}function ute({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(!1),s=C.exports.useRef(null),l={passive:!(t||e||n||y)};function d(){s.current&&s.current(),s.current=null}function p(){return d(),a.current=!1,i.animationState&&i.animationState.setActive(Un.Tap,!1),!iN()}function g(b,w){!p()||(oN(i.getInstance(),b.target)?e&&e(b,w):n&&n(b,w))}function m(b,w){!p()||n&&n(b,w)}function y(b,w){d(),!a.current&&(a.current=!0,s.current=L5(r1(window,"pointerup",g,l),r1(window,"pointercancel",m,l)),i.animationState&&i.animationState.setActive(Un.Tap,!0),t&&t(b,w))}r4(i,"pointerdown",o?y:void 0,l),p9(d)}const cte="production",kN=typeof process>"u"||process.env===void 0?cte:"production",gP=new Set;function EN(e,t,n){e||gP.has(t)||(console.warn(t),n&&console.warn(n),gP.add(t))}const d6=new WeakMap,Db=new WeakMap,dte=e=>{const t=d6.get(e.target);t&&t(e)},fte=e=>{e.forEach(dte)};function hte({root:e,...t}){const n=e||document;Db.has(n)||Db.set(n,{});const r=Db.get(n),i=JSON.stringify(t);return r[i]||(r[i]=new IntersectionObserver(fte,{root:e,...t})),r[i]}function pte(e,t,n){const r=hte(t);return d6.set(e,n),r.observe(e),()=>{d6.delete(e),r.unobserve(e)}}function gte({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:i={}}){const o=C.exports.useRef({hasEnteredView:!1,isInView:!1});let a=Boolean(t||n||r);i.once&&o.current.hasEnteredView&&(a=!1),(typeof IntersectionObserver>"u"?yte:vte)(a,o.current,e,i)}const mte={some:0,all:1};function vte(e,t,n,{root:r,margin:i,amount:o="some",once:a}){C.exports.useEffect(()=>{if(!e)return;const s={root:r?.current,rootMargin:i,threshold:typeof o=="number"?o:mte[o]},l=d=>{const{isIntersecting:p}=d;if(t.isInView===p||(t.isInView=p,a&&!p&&t.hasEnteredView))return;p&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Un.InView,p);const g=n.getProps(),m=p?g.onViewportEnter:g.onViewportLeave;m&&m(d)};return pte(n.getInstance(),s,l)},[e,r,i,o])}function yte(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(kN!=="production"&&EN(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:i}=n.getProps();i&&i(null),n.animationState&&n.animationState.setActive(Un.InView,!0)}))},[e])}const Zc=e=>t=>(e(t),null),xte={inView:Zc(gte),tap:Zc(ute),focus:Zc(KJ),hover:Zc(iee)};function w9(){const e=C.exports.useContext(U1);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,i=C.exports.useId();return C.exports.useEffect(()=>r(i),[]),!t&&n?[!1,()=>n&&n(i)]:[!0]}function bte(){return Ste(C.exports.useContext(U1))}function Ste(e){return e===null?!0:e.isPresent}function PN(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,wte={linear:v9,easeIn:y9,easeInOut:hN,easeOut:Lee,circIn:pN,circInOut:Aee,circOut:x9,backIn:b9,backInOut:Mee,backOut:Iee,anticipate:Ree,bounceIn:zee,bounceInOut:Fee,bounceOut:a4},mP=e=>{if(Array.isArray(e)){i4(e.length===4);const[t,n,r,i]=e;return lte(t,n,r,i)}else if(typeof e=="string")return wte[e];return e},Cte=e=>Array.isArray(e)&&typeof e[0]!="number",vP=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&Mu.test(t)&&!t.startsWith("url(")),Ef=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),q2=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),zb=()=>({type:"keyframes",ease:"linear",duration:.3}),_te=e=>({type:"keyframes",duration:.8,values:e}),yP={x:Ef,y:Ef,z:Ef,rotate:Ef,rotateX:Ef,rotateY:Ef,rotateZ:Ef,scaleX:q2,scaleY:q2,scale:q2,opacity:zb,backgroundColor:zb,color:zb,default:q2},kte=(e,t)=>{let n;return Nm(t)?n=_te:n=yP[e]||yP.default,{to:t,...n(t)}},Ete={...$O,color:ho,backgroundColor:ho,outlineColor:ho,fill:ho,stroke:ho,borderColor:ho,borderTopColor:ho,borderRightColor:ho,borderBottomColor:ho,borderLeftColor:ho,filter:r6,WebkitFilter:r6},C9=e=>Ete[e];function _9(e,t){var n;let r=C9(e);return r!==r6&&(r=Mu),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const Pte={current:!1};function Tte({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:i,repeat:o,repeatType:a,repeatDelay:s,from:l,...d}){return!!Object.keys(d).length}function Lte({ease:e,times:t,yoyo:n,flip:r,loop:i,...o}){const a={...o};return t&&(a.offset=t),o.duration&&(a.duration=l4(o.duration)),o.repeatDelay&&(a.repeatDelay=l4(o.repeatDelay)),e&&(a.ease=Cte(e)?e.map(mP):mP(e)),o.type==="tween"&&(a.type="keyframes"),(n||i||r)&&(n?a.repeatType="reverse":i?a.repeatType="loop":r&&(a.repeatType="mirror"),a.repeat=i||n||r||o.repeat),o.type!=="spring"&&(a.type="keyframes"),a}function Ate(e,t){var n,r;return(r=(n=(k9(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function Ite(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function Mte(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),Ite(t),Tte(e)||(e={...e,...kte(n,t.to)}),{...t,...Lte(e)}}function Rte(e,t,n,r,i){const o=k9(r,e)||{};let a=o.from!==void 0?o.from:t.get();const s=vP(e,n);a==="none"&&s&&typeof n=="string"?a=_9(e,n):xP(a)&&typeof n=="string"?a=bP(n):!Array.isArray(n)&&xP(n)&&typeof a=="string"&&(n=bP(a));const l=vP(e,a);function d(){const g={from:a,to:n,velocity:t.getVelocity(),onComplete:i,onUpdate:m=>t.set(m)};return o.type==="inertia"||o.type==="decay"?tte({...g,...o}):xN({...Mte(o,g,e),onUpdate:m=>{g.onUpdate(m),o.onUpdate&&o.onUpdate(m)},onComplete:()=>{g.onComplete(),o.onComplete&&o.onComplete()}})}function p(){const g=YO(n);return t.set(g),i(),o.onUpdate&&o.onUpdate(g),o.onComplete&&o.onComplete(),{stop:()=>{}}}return!l||!s||o.type===!1?p:d}function xP(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function bP(e){return typeof e=="number"?0:_9("",e)}function k9(e,t){return e[t]||e.default||e}function E9(e,t,n,r={}){return Pte.current&&(r={type:!1}),t.start(i=>{let o,a;const s=Rte(e,t,n,r,i),l=Ate(r,e),d=()=>a=s();return l?o=window.setTimeout(d,l4(l)):d(),()=>{clearTimeout(o),a&&a.stop()}})}const Ote=e=>/^\-?\d*\.?\d+$/.test(e),Nte=e=>/^0[^.\s]+$/.test(e),TN=1/60*1e3,Dte=typeof performance<"u"?()=>performance.now():()=>Date.now(),LN=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(Dte()),TN);function zte(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=zte(()=>Fm=!0),e),{}),Tl=mv.reduce((e,t)=>{const n=M5[t];return e[t]=(r,i=!1,o=!1)=>(Fm||$te(),n.schedule(r,i,o)),e},{}),Bm=mv.reduce((e,t)=>(e[t]=M5[t].cancel,e),{}),Fb=mv.reduce((e,t)=>(e[t]=()=>M5[t].process(o1),e),{}),Bte=e=>M5[e].process(o1),AN=e=>{Fm=!1,o1.delta=f6?TN:Math.max(Math.min(e-o1.timestamp,Fte),1),o1.timestamp=e,h6=!0,mv.forEach(Bte),h6=!1,Fm&&(f6=!1,LN(AN))},$te=()=>{Fm=!0,f6=!0,h6||LN(AN)},p6=()=>o1;function P9(e,t){e.indexOf(t)===-1&&e.push(t)}function T9(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class qg{constructor(){this.subscriptions=[]}add(t){return P9(this.subscriptions,t),()=>T9(this.subscriptions,t)}notify(t,n,r){const i=this.subscriptions.length;if(!!i)if(i===1)this.subscriptions[0](t,n,r);else for(let o=0;o!isNaN(parseFloat(e));class Wte{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new qg,this.velocityUpdateSubscribers=new qg,this.renderSubscribers=new qg,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:i,timestamp:o}=p6();this.lastUpdated!==o&&(this.timeDelta=i,this.lastUpdated=o,Tl.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>Tl.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=Hte(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?bN(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function k1(e){return new Wte(e)}const IN=e=>t=>t.test(e),Vte={test:e=>e==="auto",parse:e=>e},MN=[vh,Ct,Pl,Oc,vJ,mJ,Vte],rg=e=>MN.find(IN(e)),Ute=[...MN,ho,Mu],Gte=e=>Ute.find(IN(e));function jte(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function qte(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function R5(e,t,n){const r=e.getProps();return ZO(r,t,n!==void 0?n:r.custom,jte(e),qte(e))}function Kte(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,k1(n))}function Zte(e,t){const n=R5(e,t);let{transitionEnd:r={},transition:i={},...o}=n?e.makeTargetAnimatable(n,!1):{};o={...o,...r};for(const a in o){const s=YO(o[a]);Kte(e,a,s)}}function Yte(e,t,n){var r,i;const o=Object.keys(t).filter(s=>!e.hasValue(s)),a=o.length;if(!!a)for(let s=0;sg6(e,o,n));r=Promise.all(i)}else if(typeof t=="string")r=g6(e,t,n);else{const i=typeof t=="function"?R5(e,t,n.custom):t;r=RN(e,i,n)}return r.then(()=>e.notifyAnimationComplete(t))}function g6(e,t,n={}){var r;const i=R5(e,t,n.custom);let{transition:o=e.getDefaultTransition()||{}}=i||{};n.transitionOverride&&(o=n.transitionOverride);const a=i?()=>RN(e,i,n):()=>Promise.resolve(),s=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:p=0,staggerChildren:g,staggerDirection:m}=o;return ene(e,t,p+d,g,m,n)}:()=>Promise.resolve(),{when:l}=o;if(l){const[d,p]=l==="beforeChildren"?[a,s]:[s,a];return d().then(p)}else return Promise.all([a(),s(n.delay)])}function RN(e,t,{delay:n=0,transitionOverride:r,type:i}={}){var o;let{transition:a=e.getDefaultTransition(),transitionEnd:s,...l}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(a=r);const p=[],g=i&&((o=e.animationState)===null||o===void 0?void 0:o.getState()[i]);for(const m in l){const y=e.getValue(m),b=l[m];if(!y||b===void 0||g&&nne(g,m))continue;let w={delay:n,...a};e.shouldReduceMotion&&fv.has(m)&&(w={...w,type:!1,delay:0});let P=E9(m,y,b,w);u4(d)&&(d.add(m),P=P.then(()=>d.remove(m))),p.push(P)}return Promise.all(p).then(()=>{s&&Zte(e,s)})}function ene(e,t,n=0,r=0,i=1,o){const a=[],s=(e.variantChildren.size-1)*r,l=i===1?(d=0)=>d*r:(d=0)=>s-d*r;return Array.from(e.variantChildren).sort(tne).forEach((d,p)=>{a.push(g6(d,t,{...o,delay:n+l(p)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(a)}function tne(e,t){return e.sortNodePosition(t)}function nne({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const L9=[Un.Animate,Un.InView,Un.Focus,Un.Hover,Un.Tap,Un.Drag,Un.Exit],rne=[...L9].reverse(),ine=L9.length;function one(e){return t=>Promise.all(t.map(({animation:n,options:r})=>Jte(e,n,r)))}function ane(e){let t=one(e);const n=lne();let r=!0;const i=(l,d)=>{const p=R5(e,d);if(p){const{transition:g,transitionEnd:m,...y}=p;l={...l,...y,...m}}return l};function o(l){t=l(e)}function a(l,d){var p;const g=e.getProps(),m=e.getVariantContext(!0)||{},y=[],b=new Set;let w={},P=1/0;for(let k=0;kP&&F;const Y=Array.isArray(N)?N:[N];let ge=Y.reduce(i,{});B===!1&&(ge={});const{prevResolvedValues:ce={}}=M,ve={...ce,...ge},we=be=>{q=!0,b.delete(be),M.needsAnimating[be]=!0};for(const be in ve){const J=ge[be],U=ce[be];w.hasOwnProperty(be)||(J!==U?Nm(J)&&Nm(U)?!PN(J,U)||j?we(be):M.protectedKeys[be]=!0:J!==void 0?we(be):b.add(be):J!==void 0&&b.has(be)?we(be):M.protectedKeys[be]=!0)}M.prevProp=N,M.prevResolvedValues=ge,M.isActive&&(w={...w,...ge}),r&&e.blockInitialAnimation&&(q=!1),q&&!z&&y.push(...Y.map(be=>({animation:be,options:{type:L,...l}})))}if(b.size){const k={};b.forEach(L=>{const M=e.getBaseTarget(L);M!==void 0&&(k[L]=M)}),y.push({animation:k})}let E=Boolean(y.length);return r&&g.initial===!1&&!e.manuallyAnimateOnMount&&(E=!1),r=!1,E?t(y):Promise.resolve()}function s(l,d,p){var g;if(n[l].isActive===d)return Promise.resolve();(g=e.variantChildren)===null||g===void 0||g.forEach(y=>{var b;return(b=y.animationState)===null||b===void 0?void 0:b.setActive(l,d)}),n[l].isActive=d;const m=a(p,l);for(const y in n)n[y].protectedKeys={};return m}return{animateChanges:a,setActive:s,setAnimateFunction:o,getState:()=>n}}function sne(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!PN(t,e):!1}function Pf(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function lne(){return{[Un.Animate]:Pf(!0),[Un.InView]:Pf(),[Un.Hover]:Pf(),[Un.Tap]:Pf(),[Un.Drag]:Pf(),[Un.Focus]:Pf(),[Un.Exit]:Pf()}}const une={animation:Zc(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=ane(e)),_5(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Zc(e=>{const{custom:t,visualElement:n}=e,[r,i]=w9(),o=C.exports.useContext(U1);C.exports.useEffect(()=>{n.isPresent=r;const a=n.animationState&&n.animationState.setActive(Un.Exit,!r,{custom:o&&o.custom||t});a&&!r&&a.then(i)},[r])})};class ON{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=$b(this.lastMoveEventInfo,this.history),p=this.startEvent!==null,g=S9(d.offset,{x:0,y:0})>=3;if(!p&&!g)return;const{point:m}=d,{timestamp:y}=p6();this.history.push({...m,timestamp:y});const{onStart:b,onMove:w}=this.handlers;p||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),w&&w(this.lastMoveEvent,d)},this.handlePointerMove=(d,p)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=Bb(p,this.transformPagePoint),QO(d)&&d.buttons===0){this.handlePointerUp(d,p);return}Tl.update(this.updatePoint,!0)},this.handlePointerUp=(d,p)=>{this.end();const{onEnd:g,onSessionEnd:m}=this.handlers,y=$b(Bb(p,this.transformPagePoint),this.history);this.startEvent&&g&&g(d,y),m&&m(d,y)},JO(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const i=h9(t),o=Bb(i,this.transformPagePoint),{point:a}=o,{timestamp:s}=p6();this.history=[{...a,timestamp:s}];const{onSessionStart:l}=n;l&&l(t,$b(o,this.history)),this.removeListeners=L5(r1(window,"pointermove",this.handlePointerMove),r1(window,"pointerup",this.handlePointerUp),r1(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Bm.update(this.updatePoint)}}function Bb(e,t){return t?{point:t(e.point)}:e}function SP(e,t){return{x:e.x-t.x,y:e.y-t.y}}function $b({point:e},t){return{point:e,delta:SP(e,NN(t)),offset:SP(e,cne(t)),velocity:dne(t,.1)}}function cne(e){return e[0]}function NN(e){return e[e.length-1]}function dne(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=NN(e);for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>l4(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function ya(e){return e.max-e.min}function wP(e,t=0,n=.01){return S9(e,t)n&&(e=r?Er(n,e,r.max):Math.min(e,n)),e}function EP(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function pne(e,{top:t,left:n,bottom:r,right:i}){return{x:EP(e.x,n,i),y:EP(e.y,t,r)}}function PP(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=Dm(t.min,t.max-r,e.min):r>i&&(n=Dm(e.min,e.max-i,t.min)),o4(0,1,n)}function vne(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const m6=.35;function yne(e=m6){return e===!1?e=0:e===!0&&(e=m6),{x:TP(e,"left","right"),y:TP(e,"top","bottom")}}function TP(e,t,n){return{min:LP(e,t),max:LP(e,n)}}function LP(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const AP=()=>({translate:0,scale:1,origin:0,originPoint:0}),Yg=()=>({x:AP(),y:AP()}),IP=()=>({min:0,max:0}),Ii=()=>({x:IP(),y:IP()});function hl(e){return[e("x"),e("y")]}function DN({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function xne({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function bne(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function Hb(e){return e===void 0||e===1}function zN({scale:e,scaleX:t,scaleY:n}){return!Hb(e)||!Hb(t)||!Hb(n)}function Nc(e){return zN(e)||MP(e.x)||MP(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function MP(e){return e&&e!=="0%"}function c4(e,t,n){const r=e-n,i=t*r;return n+i}function RP(e,t,n,r,i){return i!==void 0&&(e=c4(e,i,r)),c4(e,n,r)+t}function v6(e,t=0,n=1,r,i){e.min=RP(e.min,t,n,r,i),e.max=RP(e.max,t,n,r,i)}function FN(e,{x:t,y:n}){v6(e.x,t.translate,t.scale,t.originPoint),v6(e.y,n.translate,n.scale,n.originPoint)}function Sne(e,t,n,r=!1){var i,o;const a=n.length;if(!a)return;t.x=t.y=1;let s,l;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(h9(s,"page").point)},i=(s,l)=>{var d;const{drag:p,dragPropagation:g,onDragStart:m}=this.getProps();p&&!g&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=rN(p),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),hl(y=>{var b,w;let P=this.getAxisMotionValue(y).get()||0;if(Pl.test(P)){const E=(w=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||w===void 0?void 0:w.actual[y];E&&(P=ya(E)*(parseFloat(P)/100))}this.originPoint[y]=P}),m?.(s,l),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(Un.Drag,!0))},o=(s,l)=>{const{dragPropagation:d,dragDirectionLock:p,onDirectionLock:g,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:y}=l;if(p&&this.currentDirection===null){this.currentDirection=Pne(y),this.currentDirection!==null&&g?.(this.currentDirection);return}this.updateAxis("x",l.point,y),this.updateAxis("y",l.point,y),this.visualElement.syncRender(),m?.(s,l)},a=(s,l)=>this.stop(s,l);this.panSession=new ON(t,{onSessionStart:r,onStart:i,onMove:o,onSessionEnd:a},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:i}=n;this.startAnimation(i);const{onDragEnd:o}=this.getProps();o?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Un.Drag,!1)}updateAxis(t,n,r){const{drag:i}=this.getProps();if(!r||!K2(t,i,this.currentDirection))return;const o=this.getAxisMotionValue(t);let a=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(a=hne(a,this.constraints[t],this.elastic[t])),o.set(a)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},i=this.constraints;t&&Gp(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=pne(r.actual,t):this.constraints=!1,this.elastic=yne(n),i!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&hl(o=>{this.getAxisMotionValue(o)&&(this.constraints[o]=vne(r.actual[o],this.constraints[o]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Gp(t))return!1;const r=t.current,{projection:i}=this.visualElement;if(!i||!i.layout)return!1;const o=_ne(r,i.root,this.visualElement.getTransformPagePoint());let a=gne(i.layout.actual,o);if(n){const s=n(xne(a));this.hasMutatedConstraints=!!s,s&&(a=DN(s))}return a}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:i,dragTransition:o,dragSnapToOrigin:a,onDragTransitionEnd:s}=this.getProps(),l=this.constraints||{},d=hl(p=>{var g;if(!K2(p,n,this.currentDirection))return;let m=(g=l?.[p])!==null&&g!==void 0?g:{};a&&(m={min:0,max:0});const y=i?200:1e6,b=i?40:1e7,w={type:"inertia",velocity:r?t[p]:0,bounceStiffness:y,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...o,...m};return this.startAxisValueAnimation(p,w)});return Promise.all(d).then(s)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return E9(t,r,0,n)}stopAnimation(){hl(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const i="_drag"+t.toUpperCase(),o=this.visualElement.getProps()[i];return o||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){hl(n=>{const{drag:r}=this.getProps();if(!K2(n,r,this.currentDirection))return;const{projection:i}=this.visualElement,o=this.getAxisMotionValue(n);if(i&&i.layout){const{min:a,max:s}=i.layout.actual[n];o.set(t[n]-Er(a,s,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:i}=this.visualElement;if(!Gp(r)||!i||!this.constraints)return;this.stopAnimation();const o={x:0,y:0};hl(s=>{const l=this.getAxisMotionValue(s);if(l){const d=l.get();o[s]=mne({min:d,max:d},this.constraints[s])}});const{transformTemplate:a}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=a?a({},""):"none",(t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout(),this.resolveConstraints(),hl(s=>{if(!K2(s,n,null))return;const l=this.getAxisMotionValue(s),{min:d,max:p}=this.constraints[s];l.set(Er(d,p,o[s]))})}addListeners(){var t;kne.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=r1(n,"pointerdown",d=>{const{drag:p,dragListener:g=!0}=this.getProps();p&&g&&this.start(d)}),i=()=>{const{dragConstraints:d}=this.getProps();Gp(d)&&(this.constraints=this.resolveRefConstraints())},{projection:o}=this.visualElement,a=o.addEventListener("measure",i);o&&!o.layout&&((t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout()),i();const s=P5(window,"resize",()=>this.scalePositionWithinConstraints()),l=o.addEventListener("didUpdate",({delta:d,hasLayoutChanged:p})=>{this.isDragging&&p&&(hl(g=>{const m=this.getAxisMotionValue(g);!m||(this.originPoint[g]+=d[g].translate,m.set(m.get()+d[g].translate))}),this.visualElement.syncRender())});return()=>{s(),r(),a(),l?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:i=!1,dragConstraints:o=!1,dragElastic:a=m6,dragMomentum:s=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:i,dragConstraints:o,dragElastic:a,dragMomentum:s}}}function K2(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function Pne(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function Tne(e){const{dragControls:t,visualElement:n}=e,r=E5(()=>new Ene(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function Lne({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(null),{transformPagePoint:s}=C.exports.useContext(o9),l={onSessionStart:r,onStart:t,onMove:e,onEnd:(p,g)=>{a.current=null,n&&n(p,g)}};C.exports.useEffect(()=>{a.current!==null&&a.current.updateHandlers(l)});function d(p){a.current=new ON(p,l,{transformPagePoint:s})}r4(i,"pointerdown",o&&d),p9(()=>a.current&&a.current.end())}const Ane={pan:Zc(Lne),drag:Zc(Tne)},y6={current:null},$N={current:!1};function Ine(){if($N.current=!0,!!mh)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>y6.current=e.matches;e.addListener(t),t()}else y6.current=!1}const Z2=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function Mne(){const e=Z2.map(()=>new qg),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{Z2.forEach(i=>{var o;const a="on"+i,s=r[a];(o=t[i])===null||o===void 0||o.call(t),s&&(t[i]=n[a](s))})}};return e.forEach((r,i)=>{n["on"+Z2[i]]=o=>r.add(o),n["notify"+Z2[i]]=(...o)=>r.notify(...o)}),n}function Rne(e,t,n){const{willChange:r}=t;for(const i in t){const o=t[i],a=n[i];if(Rl(o))e.addValue(i,o),u4(r)&&r.add(i);else if(Rl(a))e.addValue(i,k1(o)),u4(r)&&r.remove(i);else if(a!==o)if(e.hasValue(i)){const s=e.getValue(i);!s.hasAnimated&&s.set(o)}else{const s=e.getStaticValue(i);e.addValue(i,k1(s!==void 0?s:o))}}for(const i in n)t[i]===void 0&&e.removeValue(i);return t}const HN=Object.keys(Rm),One=HN.length,WN=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:i,render:o,readValueFromInstance:a,removeValueFromRenderState:s,sortNodePosition:l,scrapeMotionValuesFromProps:d})=>({parent:p,props:g,presenceId:m,blockInitialAnimation:y,visualState:b,reducedMotionConfig:w},P={})=>{let E=!1;const{latestValues:k,renderState:L}=b;let M;const N=Mne(),F=new Map,B=new Map;let z={};const j={...k};let q;function Y(){!M||!E||(ge(),o(M,L,g.style,ee.projection))}function ge(){t(ee,L,k,P,g)}function ce(){N.notifyUpdate(k)}function ve(Q,W){const ie=W.onChange(Se=>{k[Q]=Se,g.onUpdate&&Tl.update(ce,!1,!0)}),de=W.onRenderRequest(ee.scheduleRender);B.set(Q,()=>{ie(),de()})}const{willChange:we,...be}=d(g);for(const Q in be){const W=be[Q];k[Q]!==void 0&&Rl(W)&&(W.set(k[Q],!1),u4(we)&&we.add(Q))}const J=k5(g),U=LO(g),ee={treeType:e,current:null,depth:p?p.depth+1:0,parent:p,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:U?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(p?.isMounted()),blockInitialAnimation:y,isMounted:()=>Boolean(M),mount(Q){E=!0,M=ee.current=Q,ee.projection&&ee.projection.mount(Q),U&&p&&!J&&(q=p?.addVariantChild(ee)),F.forEach((W,ie)=>ve(ie,W)),$N.current||Ine(),ee.shouldReduceMotion=w==="never"?!1:w==="always"?!0:y6.current,p?.children.add(ee),ee.setProps(g)},unmount(){var Q;(Q=ee.projection)===null||Q===void 0||Q.unmount(),Bm.update(ce),Bm.render(Y),B.forEach(W=>W()),q?.(),p?.children.delete(ee),N.clearAllListeners(),M=void 0,E=!1},loadFeatures(Q,W,ie,de,Se,De){const Me=[];for(let Ue=0;Ueee.scheduleRender(),animationType:typeof ke=="string"?ke:"both",initialPromotionConfig:De,layoutScroll:pt})}return Me},addVariantChild(Q){var W;const ie=ee.getClosestVariantNode();if(ie)return(W=ie.variantChildren)===null||W===void 0||W.add(Q),()=>ie.variantChildren.delete(Q)},sortNodePosition(Q){return!l||e!==Q.treeType?0:l(ee.getInstance(),Q.getInstance())},getClosestVariantNode:()=>U?ee:p?.getClosestVariantNode(),getLayoutId:()=>g.layoutId,getInstance:()=>M,getStaticValue:Q=>k[Q],setStaticValue:(Q,W)=>k[Q]=W,getLatestValues:()=>k,setVisibility(Q){ee.isVisible!==Q&&(ee.isVisible=Q,ee.scheduleRender())},makeTargetAnimatable(Q,W=!0){return r(ee,Q,g,W)},measureViewportBox(){return i(M,g)},addValue(Q,W){ee.hasValue(Q)&&ee.removeValue(Q),F.set(Q,W),k[Q]=W.get(),ve(Q,W)},removeValue(Q){var W;F.delete(Q),(W=B.get(Q))===null||W===void 0||W(),B.delete(Q),delete k[Q],s(Q,L)},hasValue:Q=>F.has(Q),getValue(Q,W){let ie=F.get(Q);return ie===void 0&&W!==void 0&&(ie=k1(W),ee.addValue(Q,ie)),ie},forEachValue:Q=>F.forEach(Q),readValue:Q=>k[Q]!==void 0?k[Q]:a(M,Q,P),setBaseTarget(Q,W){j[Q]=W},getBaseTarget(Q){if(n){const W=n(g,Q);if(W!==void 0&&!Rl(W))return W}return j[Q]},...N,build(){return ge(),L},scheduleRender(){Tl.render(Y,!1,!0)},syncRender:Y,setProps(Q){(Q.transformTemplate||g.transformTemplate)&&ee.scheduleRender(),g=Q,N.updatePropListeners(Q),z=Rne(ee,d(g),z)},getProps:()=>g,getVariant:Q=>{var W;return(W=g.variants)===null||W===void 0?void 0:W[Q]},getDefaultTransition:()=>g.transition,getTransformPagePoint:()=>g.transformPagePoint,getVariantContext(Q=!1){if(Q)return p?.getVariantContext();if(!J){const ie=p?.getVariantContext()||{};return g.initial!==void 0&&(ie.initial=g.initial),ie}const W={};for(let ie=0;ie{const o=i.get();if(!x6(o))return;const a=b6(o,r);a&&i.set(a)});for(const i in t){const o=t[i];if(!x6(o))continue;const a=b6(o,r);!a||(t[i]=a,n&&n[i]===void 0&&(n[i]=o))}return{target:t,transitionEnd:n}}const Fne=new Set(["width","height","top","left","right","bottom","x","y"]),GN=e=>Fne.has(e),Bne=e=>Object.keys(e).some(GN),jN=(e,t)=>{e.set(t,!1),e.set(t)},NP=e=>e===vh||e===Ct;var DP;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(DP||(DP={}));const zP=(e,t)=>parseFloat(e.split(", ")[t]),FP=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const i=r.match(/^matrix3d\((.+)\)$/);if(i)return zP(i[1],t);{const o=r.match(/^matrix\((.+)\)$/);return o?zP(o[1],e):0}},$ne=new Set(["x","y","z"]),Hne=t4.filter(e=>!$ne.has(e));function Wne(e){const t=[];return Hne.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const BP={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:FP(4,13),y:FP(5,14)},Vne=(e,t,n)=>{const r=t.measureViewportBox(),i=t.getInstance(),o=getComputedStyle(i),{display:a}=o,s={};a==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{s[d]=BP[d](r,o)}),t.syncRender();const l=t.measureViewportBox();return n.forEach(d=>{const p=t.getValue(d);jN(p,s[d]),e[d]=BP[d](l,o)}),e},Une=(e,t,n={},r={})=>{t={...t},r={...r};const i=Object.keys(t).filter(GN);let o=[],a=!1;const s=[];if(i.forEach(l=>{const d=e.getValue(l);if(!e.hasValue(l))return;let p=n[l],g=rg(p);const m=t[l];let y;if(Nm(m)){const b=m.length,w=m[0]===null?1:0;p=m[w],g=rg(p);for(let P=w;P=0?window.pageYOffset:null,d=Vne(t,e,s);return o.length&&o.forEach(([p,g])=>{e.getValue(p).set(g)}),e.syncRender(),mh&&l!==null&&window.scrollTo({top:l}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function Gne(e,t,n,r){return Bne(t)?Une(e,t,n,r):{target:t,transitionEnd:r}}const jne=(e,t,n,r)=>{const i=zne(e,t,r);return t=i.target,r=i.transitionEnd,Gne(e,t,n,r)};function qne(e){return window.getComputedStyle(e)}const qN={treeType:"dom",readValueFromInstance(e,t){if(fv.has(t)){const n=C9(t);return n&&n.default||0}else{const n=qne(e),r=(MO(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return BN(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:i},o=!0){let a=Qte(r,t||{},e);if(i&&(n&&(n=i(n)),r&&(r=i(r)),a&&(a=i(a))),o){Yte(e,r,a);const s=jne(e,r,a,n);n=s.transitionEnd,r=s.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:f9,build(e,t,n,r,i){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),u9(t,n,r,i.transformTemplate)},render:GO},Kne=WN(qN),Zne=WN({...qN,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return fv.has(t)?((n=C9(t))===null||n===void 0?void 0:n.default)||0:(t=jO.has(t)?t:UO(t),e.getAttribute(t))},scrapeMotionValuesFromProps:KO,build(e,t,n,r,i){d9(t,n,r,i.transformTemplate)},render:qO}),Yne=(e,t)=>s9(e)?Zne(t,{enableHardwareAcceleration:!1}):Kne(t,{enableHardwareAcceleration:!0});function $P(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const ig={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Ct.test(e))e=parseFloat(e);else return e;const n=$P(e,t.target.x),r=$P(e,t.target.y);return`${n}% ${r}%`}},HP="_$css",Xne={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,i=e.includes("var("),o=[];i&&(e=e.replace(UN,y=>(o.push(y),HP)));const a=Mu.parse(e);if(a.length>5)return r;const s=Mu.createTransformer(e),l=typeof a[0]!="number"?1:0,d=n.x.scale*t.x,p=n.y.scale*t.y;a[0+l]/=d,a[1+l]/=p;const g=Er(d,p,.5);typeof a[2+l]=="number"&&(a[2+l]/=g),typeof a[3+l]=="number"&&(a[3+l]/=g);let m=s(a);if(i){let y=0;m=m.replace(HP,()=>{const b=o[y];return y++,b})}return m}};class Qne extends le.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:i}=this.props,{projection:o}=t;cJ(ere),o&&(n.group&&n.group.add(o),r&&r.register&&i&&r.register(o),o.root.didUpdate(),o.addEventListener("animationComplete",()=>{this.safeToRemove()}),o.setOptions({...o.options,onExitComplete:()=>this.safeToRemove()})),Ug.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:i,isPresent:o}=this.props,a=r.projection;return a&&(a.isPresent=o,i||t.layoutDependency!==n||n===void 0?a.willUpdate():this.safeToRemove(),t.isPresent!==o&&(o?a.promote():a.relegate()||Tl.postRender(()=>{var s;!((s=a.getStack())===null||s===void 0)&&s.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:i}=t;i&&(i.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(i),r?.deregister&&r.deregister(i))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function Jne(e){const[t,n]=w9(),r=C.exports.useContext(a9);return S(Qne,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(AO),isPresent:t,safeToRemove:n})}const ere={borderRadius:{...ig,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:ig,borderTopRightRadius:ig,borderBottomLeftRadius:ig,borderBottomRightRadius:ig,boxShadow:Xne},tre={measureLayout:Jne};function nre(e,t,n={}){const r=Rl(e)?e:k1(e);return E9("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const KN=["TopLeft","TopRight","BottomLeft","BottomRight"],rre=KN.length,WP=e=>typeof e=="string"?parseFloat(e):e,VP=e=>typeof e=="number"||Ct.test(e);function ire(e,t,n,r,i,o){var a,s,l,d;i?(e.opacity=Er(0,(a=n.opacity)!==null&&a!==void 0?a:1,ore(r)),e.opacityExit=Er((s=t.opacity)!==null&&s!==void 0?s:1,0,are(r))):o&&(e.opacity=Er((l=t.opacity)!==null&&l!==void 0?l:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let p=0;prt?1:n(Dm(e,t,r))}function GP(e,t){e.min=t.min,e.max=t.max}function ws(e,t){GP(e.x,t.x),GP(e.y,t.y)}function jP(e,t,n,r,i){return e-=t,e=c4(e,1/n,r),i!==void 0&&(e=c4(e,1/i,r)),e}function sre(e,t=0,n=1,r=.5,i,o=e,a=e){if(Pl.test(t)&&(t=parseFloat(t),t=Er(a.min,a.max,t/100)-a.min),typeof t!="number")return;let s=Er(o.min,o.max,r);e===o&&(s-=t),e.min=jP(e.min,t,n,s,i),e.max=jP(e.max,t,n,s,i)}function qP(e,t,[n,r,i],o,a){sre(e,t[n],t[r],t[i],t.scale,o,a)}const lre=["x","scaleX","originX"],ure=["y","scaleY","originY"];function KP(e,t,n,r){qP(e.x,t,lre,n?.x,r?.x),qP(e.y,t,ure,n?.y,r?.y)}function ZP(e){return e.translate===0&&e.scale===1}function YN(e){return ZP(e.x)&&ZP(e.y)}function XN(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function YP(e){return ya(e.x)/ya(e.y)}function cre(e,t,n=.01){return S9(e,t)<=n}class dre{constructor(){this.members=[]}add(t){P9(this.members,t),t.scheduleRender()}remove(t){if(T9(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(i=>t===i);if(n===0)return!1;let r;for(let i=n;i>=0;i--){const o=this.members[i];if(o.isPresent!==!1){r=o;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,n&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:o}=t.options;o===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,i,o,a;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(a=(i=t.resumingFrom)===null||i===void 0?void 0:(o=i.options).onExitComplete)===null||a===void 0||a.call(o)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const fre="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function XP(e,t,n){const r=e.x.translate/t.x,i=e.y.translate/t.y;let o=`translate3d(${r}px, ${i}px, 0) `;if(o+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:l,rotateX:d,rotateY:p}=n;l&&(o+=`rotate(${l}deg) `),d&&(o+=`rotateX(${d}deg) `),p&&(o+=`rotateY(${p}deg) `)}const a=e.x.scale*t.x,s=e.y.scale*t.y;return o+=`scale(${a}, ${s})`,o===fre?"none":o}const hre=(e,t)=>e.depth-t.depth;class pre{constructor(){this.children=[],this.isDirty=!1}add(t){P9(this.children,t),this.isDirty=!0}remove(t){T9(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(hre),this.isDirty=!1,this.children.forEach(t)}}const QP=["","X","Y","Z"],JP=1e3;function QN({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:i}){return class{constructor(a,s={},l=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(bre),this.nodes.forEach(Sre)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=a,this.latestValues=s,this.root=l?l.root||l:this,this.path=l?[...l.path,l]:[],this.parent=l,this.depth=l?l.depth+1:0,a&&this.root.registerPotentialNode(a,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(a,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(y,250),Ug.hasAnimatedSinceResize&&(Ug.hasAnimatedSinceResize=!1,this.nodes.forEach(xre))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&g&&(d||p)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:y,hasRelativeTargetChanged:b,layout:w})=>{var P,E,k,L,M;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const N=(E=(P=this.options.transition)!==null&&P!==void 0?P:g.getDefaultTransition())!==null&&E!==void 0?E:Ere,{onLayoutAnimationStart:F,onLayoutAnimationComplete:B}=g.getProps(),z=!this.targetLayout||!XN(this.targetLayout,w)||b,j=!y&&b;if(((k=this.resumeFrom)===null||k===void 0?void 0:k.instance)||j||y&&(z||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,j);const q={...k9(N,"layout"),onPlay:F,onComplete:B};g.shouldReduceMotion&&(q.delay=0,q.type=!1),this.startAnimation(q)}else!y&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((M=(L=this.options).onExitComplete)===null||M===void 0||M.call(L));this.targetLayout=w})}unmount(){var a,s;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(a=this.getStack())===null||a===void 0||a.remove(this),(s=this.parent)===null||s===void 0||s.children.delete(this),this.instance=void 0,Bm.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var a;return this.isAnimationBlocked||((a=this.parent)===null||a===void 0?void 0:a.isTreeAnimationBlocked())||!1}startUpdate(){var a;this.isUpdateBlocked()||(this.isUpdating=!0,(a=this.nodes)===null||a===void 0||a.forEach(wre))}willUpdate(a=!0){var s,l,d;if(this.root.isUpdateBlocked()){(l=(s=this.options).onExitComplete)===null||l===void 0||l.call(s);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let y=0;y{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const a=this.measure(),s=this.removeTransform(this.removeElementScroll(a));iT(s),this.snapshot={measured:a,layout:s,latestValues:{}}}updateLayout(){var a;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var k;const L=E/1e3;tT(m.x,a.x,L),tT(m.y,a.y,L),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((k=this.relativeParent)===null||k===void 0?void 0:k.layout)&&(Zg(y,this.layout.actual,this.relativeParent.layout.actual),_re(this.relativeTarget,this.relativeTargetOrigin,y,L)),b&&(this.animationValues=g,ire(g,p,this.latestValues,L,P,w)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=L},this.mixTargetDelta(0)}startAnimation(a){var s,l;this.notifyListeners("animationStart"),(s=this.currentAnimation)===null||s===void 0||s.stop(),this.resumingFrom&&((l=this.resumingFrom.currentAnimation)===null||l===void 0||l.stop()),this.pendingAnimation&&(Bm.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Tl.update(()=>{Ug.hasAnimatedSinceResize=!0,this.currentAnimation=nre(0,JP,{...a,onUpdate:d=>{var p;this.mixTargetDelta(d),(p=a.onUpdate)===null||p===void 0||p.call(a,d)},onComplete:()=>{var d;(d=a.onComplete)===null||d===void 0||d.call(a),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var a;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(a=this.getStack())===null||a===void 0||a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var a;this.currentAnimation&&((a=this.mixTargetDelta)===null||a===void 0||a.call(this,JP),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const a=this.getLead();let{targetWithTransforms:s,target:l,layout:d,latestValues:p}=a;if(!(!s||!l||!d)){if(this!==a&&this.layout&&d&&JN(this.options.animationType,this.layout.actual,d.actual)){l=this.target||Ii();const g=ya(this.layout.actual.x);l.x.min=a.target.x.min,l.x.max=l.x.min+g;const m=ya(this.layout.actual.y);l.y.min=a.target.y.min,l.y.max=l.y.min+m}ws(s,l),jp(s,p),Kg(this.projectionDeltaWithTransform,this.layoutCorrected,s,p)}}registerSharedNode(a,s){var l,d,p;this.sharedNodes.has(a)||this.sharedNodes.set(a,new dre),this.sharedNodes.get(a).add(s),s.promote({transition:(l=s.options.initialPromotionConfig)===null||l===void 0?void 0:l.transition,preserveFollowOpacity:(p=(d=s.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||p===void 0?void 0:p.call(d,s)})}isLead(){const a=this.getStack();return a?a.lead===this:!0}getLead(){var a;const{layoutId:s}=this.options;return s?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this}getPrevLead(){var a;const{layoutId:s}=this.options;return s?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0}getStack(){const{layoutId:a}=this.options;if(a)return this.root.sharedNodes.get(a)}promote({needsReset:a,transition:s,preserveFollowOpacity:l}={}){const d=this.getStack();d&&d.promote(this,l),a&&(this.projectionDelta=void 0,this.needsReset=!0),s&&this.setOptions({transition:s})}relegate(){const a=this.getStack();return a?a.relegate(this):!1}resetRotation(){const{visualElement:a}=this.options;if(!a)return;let s=!1;const l={};for(let d=0;d{var s;return(s=a.currentAnimation)===null||s===void 0?void 0:s.stop()}),this.root.nodes.forEach(eT),this.root.sharedNodes.clear()}}}function gre(e){e.updateLayout()}function mre(e){var t,n,r;const i=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&i&&e.hasListeners("didUpdate")){const{actual:o,measured:a}=e.layout,{animationType:s}=e.options;s==="size"?hl(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=ya(y);y.min=o[m].min,y.max=y.min+b}):JN(s,i.layout,o)&&hl(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=ya(o[m]);y.max=y.min+b});const l=Yg();Kg(l,o,i.layout);const d=Yg();i.isShared?Kg(d,e.applyTransform(a,!0),i.measured):Kg(d,o,i.layout);const p=!YN(l);let g=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:y}=e.relativeParent;if(m&&y){const b=Ii();Zg(b,i.layout,m.layout);const w=Ii();Zg(w,o,y.actual),XN(b,w)||(g=!0)}}e.notifyListeners("didUpdate",{layout:o,snapshot:i,delta:d,layoutDelta:l,hasLayoutChanged:p,hasRelativeTargetChanged:g})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function vre(e){e.clearSnapshot()}function eT(e){e.clearMeasurements()}function yre(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function xre(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function bre(e){e.resolveTargetDelta()}function Sre(e){e.calcProjection()}function wre(e){e.resetRotation()}function Cre(e){e.removeLeadSnapshot()}function tT(e,t,n){e.translate=Er(t.translate,0,n),e.scale=Er(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function nT(e,t,n,r){e.min=Er(t.min,n.min,r),e.max=Er(t.max,n.max,r)}function _re(e,t,n,r){nT(e.x,t.x,n.x,r),nT(e.y,t.y,n.y,r)}function kre(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const Ere={duration:.45,ease:[.4,0,.1,1]};function Pre(e,t){let n=e.root;for(let o=e.path.length-1;o>=0;o--)if(Boolean(e.path[o].instance)){n=e.path[o];break}const i=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);i&&e.mount(i,!0)}function rT(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function iT(e){rT(e.x),rT(e.y)}function JN(e,t,n){return e==="position"||e==="preserve-aspect"&&!cre(YP(t),YP(n))}const Tre=QN({attachResizeListener:(e,t)=>P5(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),Wb={current:void 0},Lre=QN({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!Wb.current){const e=new Tre(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),Wb.current=e}return Wb.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),Are={...une,...xte,...Ane,...tre},ns=lJ((e,t)=>qJ(e,t,Are,Yne,Lre));function eD(){const e=C.exports.useRef(!1);return J3(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function Ire(){const e=eD(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>Tl.postRender(r),[r]),t]}class Mre extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Rre({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),i=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:o,height:a,top:s,left:l}=i.current;if(t||!r.current||!o||!a)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` + [data-motion-pop-id="${n}"] { + position: absolute !important; + width: ${o}px !important; + height: ${a}px !important; + top: ${s}px !important; + left: ${l}px !important; + } + `),()=>{document.head.removeChild(d)}},[t]),S(Mre,{isPresent:t,childRef:r,sizeRef:i,children:C.exports.cloneElement(e,{ref:r})})}const Vb=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:i,presenceAffectsLayout:o,mode:a})=>{const s=E5(Ore),l=C.exports.useId(),d=C.exports.useMemo(()=>({id:l,initial:t,isPresent:n,custom:i,onExitComplete:p=>{s.set(p,!0);for(const g of s.values())if(!g)return;r&&r()},register:p=>(s.set(p,!1),()=>s.delete(p))}),o?void 0:[n]);return C.exports.useMemo(()=>{s.forEach((p,g)=>s.set(g,!1))},[n]),C.exports.useEffect(()=>{!n&&!s.size&&r&&r()},[n]),a==="popLayout"&&(e=S(Rre,{isPresent:n,children:e})),S(U1.Provider,{value:d,children:e})};function Ore(){return new Map}const Lp=e=>e.key||"";function Nre(e,t){e.forEach(n=>{const r=Lp(n);t.set(r,n)})}function Dre(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const Hu=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:i,presenceAffectsLayout:o=!0,mode:a="sync"})=>{i&&(a="wait",EN(!1,"Replace exitBeforeEnter with mode='wait'"));let[s]=Ire();const l=C.exports.useContext(a9).forceRender;l&&(s=l);const d=eD(),p=Dre(e);let g=p;const m=new Set,y=C.exports.useRef(g),b=C.exports.useRef(new Map).current,w=C.exports.useRef(!0);if(J3(()=>{w.current=!1,Nre(p,b),y.current=g}),p9(()=>{w.current=!0,b.clear(),m.clear()}),w.current)return S(Bn,{children:g.map(L=>S(Vb,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:o,mode:a,children:L},Lp(L)))});g=[...g];const P=y.current.map(Lp),E=p.map(Lp),k=P.length;for(let L=0;L{if(E.indexOf(L)!==-1)return;const M=b.get(L);if(!M)return;const N=P.indexOf(L),F=()=>{b.delete(L),m.delete(L);const B=y.current.findIndex(z=>z.key===L);if(y.current.splice(B,1),!m.size){if(y.current=p,d.current===!1)return;s(),r&&r()}};g.splice(N,0,S(Vb,{isPresent:!1,onExitComplete:F,custom:t,presenceAffectsLayout:o,mode:a,children:M},Lp(M)))}),g=g.map(L=>{const M=L.key;return m.has(M)?L:S(Vb,{isPresent:!0,presenceAffectsLayout:o,mode:a,children:L},Lp(L))}),kN!=="production"&&a==="wait"&&g.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),S(Bn,{children:m.size?g:g.map(L=>C.exports.cloneElement(L))})};var vv=(...e)=>e.filter(Boolean).join(" ");function zre(){return!1}var Fre=e=>{const{condition:t,message:n}=e;t&&zre()&&console.warn(n)},Uf={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},og={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function S6(e){switch(e?.direction??"right"){case"right":return og.slideRight;case"left":return og.slideLeft;case"bottom":return og.slideDown;case"top":return og.slideUp;default:return og.slideRight}}var Jf={enter:{duration:.2,ease:Uf.easeOut},exit:{duration:.1,ease:Uf.easeIn}},Ms={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},Bre=e=>e!=null&&parseInt(e.toString(),10)>0,oT={exit:{height:{duration:.2,ease:Uf.ease},opacity:{duration:.3,ease:Uf.ease}},enter:{height:{duration:.3,ease:Uf.ease},opacity:{duration:.4,ease:Uf.ease}}},$re={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:Bre(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Ms.exit(oT.exit,i)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Ms.enter(oT.enter,i)})},tD=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:i=!0,startingHeight:o=0,endingHeight:a="auto",style:s,className:l,transition:d,transitionEnd:p,...g}=e,[m,y]=C.exports.useState(!1);C.exports.useEffect(()=>{const k=setTimeout(()=>{y(!0)});return()=>clearTimeout(k)},[]),Fre({condition:Boolean(o>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(o.toString())>0,w={startingHeight:o,endingHeight:a,animateOpacity:i,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:p?.enter,exit:r?p?.exit:{...p?.exit,display:b?"block":"none"}}},P=r?n:!0,E=n||r?"enter":"exit";return S(Hu,{initial:!1,custom:w,children:P&&le.createElement(ns.div,{ref:t,...g,className:vv("chakra-collapse",l),style:{overflow:"hidden",display:"block",...s},custom:w,variants:$re,initial:r?"exit":!1,animate:E,exit:"exit"})})});tD.displayName="Collapse";var Hre={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Ms.enter(Jf.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Ms.exit(Jf.exit,n),transitionEnd:t?.exit})},nD={initial:"exit",animate:"enter",exit:"exit",variants:Hre},Wre=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,className:o,transition:a,transitionEnd:s,delay:l,...d}=t,p=i||r?"enter":"exit",g=r?i&&r:!0,m={transition:a,transitionEnd:s,delay:l};return S(Hu,{custom:m,children:g&&le.createElement(ns.div,{ref:n,className:vv("chakra-fade",o),custom:m,...nD,animate:p,...d})})});Wre.displayName="Fade";var Vre={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Ms.exit(Jf.exit,i)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Ms.enter(Jf.enter,n),transitionEnd:e?.enter})},rD={initial:"exit",animate:"enter",exit:"exit",variants:Vre},Ure=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,initialScale:a=.95,className:s,transition:l,transitionEnd:d,delay:p,...g}=t,m=r?i&&r:!0,y=i||r?"enter":"exit",b={initialScale:a,reverse:o,transition:l,transitionEnd:d,delay:p};return S(Hu,{custom:b,children:m&&le.createElement(ns.div,{ref:n,className:vv("chakra-offset-slide",s),...rD,animate:y,custom:b,...g})})});Ure.displayName="ScaleFade";var aT={exit:{duration:.15,ease:Uf.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},Gre={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:i}=S6({direction:e});return{...i,transition:t?.exit??Ms.exit(aT.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:i}=S6({direction:e});return{...i,transition:n?.enter??Ms.enter(aT.enter,r),transitionEnd:t?.enter}}},iD=C.exports.forwardRef(function(t,n){const{direction:r="right",style:i,unmountOnExit:o,in:a,className:s,transition:l,transitionEnd:d,delay:p,...g}=t,m=S6({direction:r}),y=Object.assign({position:"fixed"},m.position,i),b=o?a&&o:!0,w=a||o?"enter":"exit",P={transitionEnd:d,transition:l,direction:r,delay:p};return S(Hu,{custom:P,children:b&&le.createElement(ns.div,{...g,ref:n,initial:"exit",className:vv("chakra-slide",s),animate:w,exit:"exit",custom:P,variants:Gre,style:y})})});iD.displayName="Slide";var jre={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,x:e,y:t,transition:n?.exit??Ms.exit(Jf.exit,i),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Ms.enter(Jf.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:i,delay:o})=>{const a={x:t,y:e};return{opacity:0,transition:n?.exit??Ms.exit(Jf.exit,o),...i?{...a,transitionEnd:r?.exit}:{transitionEnd:{...a,...r?.exit}}}}},w6={initial:"initial",animate:"enter",exit:"exit",variants:jre},qre=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,className:a,offsetX:s=0,offsetY:l=8,transition:d,transitionEnd:p,delay:g,...m}=t,y=r?i&&r:!0,b=i||r?"enter":"exit",w={offsetX:s,offsetY:l,reverse:o,transition:d,transitionEnd:p,delay:g};return S(Hu,{custom:w,children:y&&le.createElement(ns.div,{ref:n,className:vv("chakra-offset-slide",a),custom:w,...w6,animate:b,...m})})});qre.displayName="SlideFade";var yv=(...e)=>e.filter(Boolean).join(" ");function Kre(){return!1}var O5=e=>{const{condition:t,message:n}=e;t&&Kre()&&console.warn(n)};function Ub(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Zre,N5]=kn({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Yre,A9]=kn({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[Xre,w7e,Qre,Jre]=PO(),Gf=Le(function(t,n){const{getButtonProps:r}=A9(),i=r(t,n),o=N5(),a={display:"flex",alignItems:"center",width:"100%",outline:0,...o.button};return le.createElement(Ce.button,{...i,className:yv("chakra-accordion__button",t.className),__css:a})});Gf.displayName="AccordionButton";function eie(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:i,allowToggle:o,...a}=e;rie(e),iie(e);const s=Qre(),[l,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[p,g]=w5({value:r,defaultValue(){return i?n??[]:n??-1},onChange:t});return{index:p,setIndex:g,htmlProps:a,getAccordionItemProps:y=>{let b=!1;return y!==null&&(b=Array.isArray(p)?p.includes(y):p===y),{isOpen:b,onChange:P=>{if(y!==null)if(i&&Array.isArray(p)){const E=P?p.concat(y):p.filter(k=>k!==y);g(E)}else P?g(y):o&&g(-1)}}},focusedIndex:l,setFocusedIndex:d,descendants:s}}var[tie,I9]=kn({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function nie(e){const{isDisabled:t,isFocusable:n,id:r,...i}=e,{getAccordionItemProps:o,setFocusedIndex:a}=I9(),s=C.exports.useRef(null),l=C.exports.useId(),d=r??l,p=`accordion-button-${d}`,g=`accordion-panel-${d}`;oie(e);const{register:m,index:y,descendants:b}=Jre({disabled:t&&!n}),{isOpen:w,onChange:P}=o(y===-1?null:y);aie({isOpen:w,isDisabled:t});const E=()=>{P?.(!0)},k=()=>{P?.(!1)},L=C.exports.useCallback(()=>{P?.(!w),a(y)},[y,a,w,P]),M=C.exports.useCallback(z=>{const q={ArrowDown:()=>{const Y=b.nextEnabled(y);Y?.node.focus()},ArrowUp:()=>{const Y=b.prevEnabled(y);Y?.node.focus()},Home:()=>{const Y=b.firstEnabled();Y?.node.focus()},End:()=>{const Y=b.lastEnabled();Y?.node.focus()}}[z.key];q&&(z.preventDefault(),q(z))},[b,y]),N=C.exports.useCallback(()=>{a(y)},[a,y]),F=C.exports.useCallback(function(j={},q=null){return{...j,type:"button",ref:Fn(m,s,q),id:p,disabled:!!t,"aria-expanded":!!w,"aria-controls":g,onClick:Ub(j.onClick,L),onFocus:Ub(j.onFocus,N),onKeyDown:Ub(j.onKeyDown,M)}},[p,t,w,L,N,M,g,m]),B=C.exports.useCallback(function(j={},q=null){return{...j,ref:q,role:"region",id:g,"aria-labelledby":p,hidden:!w}},[p,w,g]);return{isOpen:w,isDisabled:t,isFocusable:n,onOpen:E,onClose:k,getButtonProps:F,getPanelProps:B,htmlProps:i}}function rie(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;O5({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function iie(e){O5({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function oie(e){O5({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. + `})}function aie(e){O5({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function jf(e){const{isOpen:t,isDisabled:n}=A9(),{reduceMotion:r}=I9(),i=yv("chakra-accordion__icon",e.className),o=N5(),a={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...o.icon};return S(_a,{viewBox:"0 0 24 24","aria-hidden":!0,className:i,__css:a,...e,children:S("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}jf.displayName="AccordionIcon";var qf=Le(function(t,n){const{children:r,className:i}=t,{htmlProps:o,...a}=nie(t),l={...N5().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>a,[a]);return le.createElement(Yre,{value:d},le.createElement(Ce.div,{ref:n,...o,className:yv("chakra-accordion__item",i),__css:l},typeof r=="function"?r({isExpanded:!!a.isOpen,isDisabled:!!a.isDisabled}):r))});qf.displayName="AccordionItem";var Kf=Le(function(t,n){const{reduceMotion:r}=I9(),{getPanelProps:i,isOpen:o}=A9(),a=i(t,n),s=yv("chakra-accordion__panel",t.className),l=N5();r||delete a.hidden;const d=le.createElement(Ce.div,{...a,__css:l.panel,className:s});return r?d:S(tD,{in:o,children:d})});Kf.displayName="AccordionPanel";var D5=Le(function({children:t,reduceMotion:n,...r},i){const o=Bi("Accordion",r),a=Sn(r),{htmlProps:s,descendants:l,...d}=eie(a),p=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return le.createElement(Xre,{value:l},le.createElement(tie,{value:p},le.createElement(Zre,{value:o},le.createElement(Ce.div,{ref:i,...s,className:yv("chakra-accordion",r.className),__css:o.root},t))))});D5.displayName="Accordion";var sie=(...e)=>e.filter(Boolean).join(" "),lie=uv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),xv=Le((e,t)=>{const n=bo("Spinner",e),{label:r="Loading...",thickness:i="2px",speed:o="0.45s",emptyColor:a="transparent",className:s,...l}=Sn(e),d=sie("chakra-spinner",s),p={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:i,borderBottomColor:a,borderLeftColor:a,animation:`${lie} ${o} linear infinite`,...n};return le.createElement(Ce.div,{ref:t,__css:p,className:d,...l},r&&le.createElement(Ce.span,{srOnly:!0},r))});xv.displayName="Spinner";var z5=(...e)=>e.filter(Boolean).join(" ");function uie(e){return S(_a,{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function cie(e){return S(_a,{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function sT(e){return S(_a,{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[die,fie]=kn({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[hie,M9]=kn({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),oD={info:{icon:cie,colorScheme:"blue"},warning:{icon:sT,colorScheme:"orange"},success:{icon:uie,colorScheme:"green"},error:{icon:sT,colorScheme:"red"},loading:{icon:xv,colorScheme:"blue"}};function pie(e){return oD[e].colorScheme}function gie(e){return oD[e].icon}var aD=Le(function(t,n){const{status:r="info",addRole:i=!0,...o}=Sn(t),a=t.colorScheme??pie(r),s=Bi("Alert",{...t,colorScheme:a}),l={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...s.container};return le.createElement(die,{value:{status:r}},le.createElement(hie,{value:s},le.createElement(Ce.div,{role:i?"alert":void 0,ref:n,...o,className:z5("chakra-alert",t.className),__css:l})))});aD.displayName="Alert";var sD=Le(function(t,n){const r=M9(),i={display:"inline",...r.description};return le.createElement(Ce.div,{ref:n,...t,className:z5("chakra-alert__desc",t.className),__css:i})});sD.displayName="AlertDescription";function lD(e){const{status:t}=fie(),n=gie(t),r=M9(),i=t==="loading"?r.spinner:r.icon;return le.createElement(Ce.span,{display:"inherit",...e,className:z5("chakra-alert__icon",e.className),__css:i},e.children||S(n,{h:"100%",w:"100%"}))}lD.displayName="AlertIcon";var uD=Le(function(t,n){const r=M9();return le.createElement(Ce.div,{ref:n,...t,className:z5("chakra-alert__title",t.className),__css:r.title})});uD.displayName="AlertTitle";function mie(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function vie(e){const{loading:t,src:n,srcSet:r,onLoad:i,onError:o,crossOrigin:a,sizes:s,ignoreFallback:l}=e,[d,p]=C.exports.useState("pending");C.exports.useEffect(()=>{p(n?"loading":"pending")},[n]);const g=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;y();const b=new Image;b.src=n,a&&(b.crossOrigin=a),r&&(b.srcset=r),s&&(b.sizes=s),t&&(b.loading=t),b.onload=w=>{y(),p("loaded"),i?.(w)},b.onerror=w=>{y(),p("failed"),o?.(w)},g.current=b},[n,a,r,s,i,o,t]),y=()=>{g.current&&(g.current.onload=null,g.current.onerror=null,g.current=null)};return kl(()=>{if(!l)return d==="loading"&&m(),()=>{y()}},[d,m,l]),l?"loaded":d}var yie=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",d4=Le(function(t,n){const{htmlWidth:r,htmlHeight:i,alt:o,...a}=t;return S("img",{width:r,height:i,ref:n,alt:o,...a})});d4.displayName="NativeImage";var F5=Le(function(t,n){const{fallbackSrc:r,fallback:i,src:o,srcSet:a,align:s,fit:l,loading:d,ignoreFallback:p,crossOrigin:g,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:y,...b}=t,w=r!==void 0||i!==void 0,P=d!=null||p||!w,E=vie({...t,ignoreFallback:P}),k=yie(E,m),L={ref:n,objectFit:l,objectPosition:s,...P?b:mie(b,["onError","onLoad"])};return k?i||le.createElement(Ce.img,{as:d4,className:"chakra-image__placeholder",src:r,...L}):le.createElement(Ce.img,{as:d4,src:o,srcSet:a,crossOrigin:g,loading:d,referrerPolicy:y,className:"chakra-image",...L})});F5.displayName="Image";Le((e,t)=>le.createElement(Ce.img,{ref:t,as:d4,className:"chakra-image",...e}));var xie=Object.create,cD=Object.defineProperty,bie=Object.getOwnPropertyDescriptor,dD=Object.getOwnPropertyNames,Sie=Object.getPrototypeOf,wie=Object.prototype.hasOwnProperty,fD=(e,t)=>function(){return t||(0,e[dD(e)[0]])((t={exports:{}}).exports,t),t.exports},Cie=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of dD(t))!wie.call(e,i)&&i!==n&&cD(e,i,{get:()=>t[i],enumerable:!(r=bie(t,i))||r.enumerable});return e},_ie=(e,t,n)=>(n=e!=null?xie(Sie(e)):{},Cie(t||!e||!e.__esModule?cD(n,"default",{value:e,enumerable:!0}):n,e)),kie=fD({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),a=Symbol.for("react.provider"),s=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),p=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),m=Symbol.iterator;function y(W){return W===null||typeof W!="object"?null:(W=m&&W[m]||W["@@iterator"],typeof W=="function"?W:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},w=Object.assign,P={};function E(W,ie,de){this.props=W,this.context=ie,this.refs=P,this.updater=de||b}E.prototype.isReactComponent={},E.prototype.setState=function(W,ie){if(typeof W!="object"&&typeof W!="function"&&W!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,W,ie,"setState")},E.prototype.forceUpdate=function(W){this.updater.enqueueForceUpdate(this,W,"forceUpdate")};function k(){}k.prototype=E.prototype;function L(W,ie,de){this.props=W,this.context=ie,this.refs=P,this.updater=de||b}var M=L.prototype=new k;M.constructor=L,w(M,E.prototype),M.isPureReactComponent=!0;var N=Array.isArray,F=Object.prototype.hasOwnProperty,B={current:null},z={key:!0,ref:!0,__self:!0,__source:!0};function j(W,ie,de){var Se,De={},Me=null,Ue=null;if(ie!=null)for(Se in ie.ref!==void 0&&(Ue=ie.ref),ie.key!==void 0&&(Me=""+ie.key),ie)F.call(ie,Se)&&!z.hasOwnProperty(Se)&&(De[Se]=ie[Se]);var ke=arguments.length-2;if(ke===1)De.children=de;else if(1(0,lT.isValidElement)(t))}/** + * @license React + * react.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + *//** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var $5=(...e)=>e.filter(Boolean).join(" "),uT=e=>e?"":void 0,[Pie,Tie]=kn({strict:!1,name:"ButtonGroupContext"});function C6(e){const{children:t,className:n,...r}=e,i=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,o=$5("chakra-button__icon",n);return le.createElement(Ce.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:o},i)}C6.displayName="ButtonIcon";function _6(e){const{label:t,placement:n,spacing:r="0.5rem",children:i=S(xv,{color:"currentColor",width:"1em",height:"1em"}),className:o,__css:a,...s}=e,l=$5("chakra-button__spinner",o),d=n==="start"?"marginEnd":"marginStart",p=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...a}),[a,t,d,r]);return le.createElement(Ce.div,{className:l,...s,__css:p},i)}_6.displayName="ButtonSpinner";function Lie(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(o=>{!o||n(o.tagName==="BUTTON")},[]),type:t?"button":void 0}}var Za=Le((e,t)=>{const n=Tie(),r=bo("Button",{...n,...e}),{isDisabled:i=n?.isDisabled,isLoading:o,isActive:a,children:s,leftIcon:l,rightIcon:d,loadingText:p,iconSpacing:g="0.5rem",type:m,spinner:y,spinnerPlacement:b="start",className:w,as:P,...E}=Sn(e),k=C.exports.useMemo(()=>{const F={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:F}}},[r,n]),{ref:L,type:M}=Lie(P),N={rightIcon:d,leftIcon:l,iconSpacing:g,children:s};return le.createElement(Ce.button,{disabled:i||o,ref:VQ(t,L),as:P,type:m??M,"data-active":uT(a),"data-loading":uT(o),__css:k,className:$5("chakra-button",w),...E},o&&b==="start"&&S(_6,{className:"chakra-button__spinner--start",label:p,placement:"start",spacing:g,children:y}),o?p||le.createElement(Ce.span,{opacity:0},S(cT,{...N})):S(cT,{...N}),o&&b==="end"&&S(_6,{className:"chakra-button__spinner--end",label:p,placement:"end",spacing:g,children:y}))});Za.displayName="Button";function cT(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:i}=e;return oe(Bn,{children:[t&&S(C6,{marginEnd:i,children:t}),r,n&&S(C6,{marginStart:i,children:n})]})}var Zf=Le(function(t,n){const{size:r,colorScheme:i,variant:o,className:a,spacing:s="0.5rem",isAttached:l,isDisabled:d,...p}=t,g=$5("chakra-button__group",a),m=C.exports.useMemo(()=>({size:r,colorScheme:i,variant:o,isDisabled:d}),[r,i,o,d]);let y={display:"inline-flex"};return l?y={...y,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:y={...y,"& > *:not(style) ~ *:not(style)":{marginStart:s}},le.createElement(Pie,{value:m},le.createElement(Ce.div,{ref:n,role:"group",__css:y,className:g,"data-attached":l?"":void 0,...p}))});Zf.displayName="ButtonGroup";var Ru=Le((e,t)=>{const{icon:n,children:r,isRound:i,"aria-label":o,...a}=e,s=n||r,l=C.exports.isValidElement(s)?C.exports.cloneElement(s,{"aria-hidden":!0,focusable:!1}):null;return S(Za,{padding:"0",borderRadius:i?"full":void 0,ref:t,"aria-label":o,...a,children:l})});Ru.displayName="IconButton";var q1=(...e)=>e.filter(Boolean).join(" "),Y2=e=>e?"":void 0,Gb=e=>e?!0:void 0;function dT(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Aie,hD]=kn({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Iie,K1]=kn({strict:!1,name:"FormControlContext"});function Mie(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:i,isReadOnly:o,...a}=e,s=C.exports.useId(),l=t||`field-${s}`,d=`${l}-label`,p=`${l}-feedback`,g=`${l}-helptext`,[m,y]=C.exports.useState(!1),[b,w]=C.exports.useState(!1),[P,E]=C.exports.useState(!1),k=C.exports.useCallback((B={},z=null)=>({id:g,...B,ref:Fn(z,j=>{!j||w(!0)})}),[g]),L=C.exports.useCallback((B={},z=null)=>({...B,ref:z,"data-focus":Y2(P),"data-disabled":Y2(i),"data-invalid":Y2(r),"data-readonly":Y2(o),id:B.id??d,htmlFor:B.htmlFor??l}),[l,i,P,r,o,d]),M=C.exports.useCallback((B={},z=null)=>({id:p,...B,ref:Fn(z,j=>{!j||y(!0)}),"aria-live":"polite"}),[p]),N=C.exports.useCallback((B={},z=null)=>({...B,...a,ref:z,role:"group"}),[a]),F=C.exports.useCallback((B={},z=null)=>({...B,ref:z,role:"presentation","aria-hidden":!0,children:B.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!o,isDisabled:!!i,isFocused:!!P,onFocus:()=>E(!0),onBlur:()=>E(!1),hasFeedbackText:m,setHasFeedbackText:y,hasHelpText:b,setHasHelpText:w,id:l,labelId:d,feedbackId:p,helpTextId:g,htmlProps:a,getHelpTextProps:k,getErrorMessageProps:M,getRootProps:N,getLabelProps:L,getRequiredIndicatorProps:F}}var Sd=Le(function(t,n){const r=Bi("Form",t),i=Sn(t),{getRootProps:o,htmlProps:a,...s}=Mie(i),l=q1("chakra-form-control",t.className);return le.createElement(Iie,{value:s},le.createElement(Aie,{value:r},le.createElement(Ce.div,{...o({},n),className:l,__css:r.container})))});Sd.displayName="FormControl";var Rie=Le(function(t,n){const r=K1(),i=hD(),o=q1("chakra-form__helper-text",t.className);return le.createElement(Ce.div,{...r?.getHelpTextProps(t,n),__css:i.helperText,className:o})});Rie.displayName="FormHelperText";function R9(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:i,...o}=O9(e);return{...o,disabled:t,readOnly:r,required:i,"aria-invalid":Gb(n),"aria-required":Gb(i),"aria-readonly":Gb(r)}}function O9(e){const t=K1(),{id:n,disabled:r,readOnly:i,required:o,isRequired:a,isInvalid:s,isReadOnly:l,isDisabled:d,onFocus:p,onBlur:g,...m}=e,y=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&y.push(t.feedbackId),t?.hasHelpText&&y.push(t.helpTextId),{...m,"aria-describedby":y.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:i??l??t?.isReadOnly,isRequired:o??a??t?.isRequired,isInvalid:s??t?.isInvalid,onFocus:dT(t?.onFocus,p),onBlur:dT(t?.onBlur,g)}}var[Oie,Nie]=kn({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Die=Le((e,t)=>{const n=Bi("FormError",e),r=Sn(e),i=K1();return i?.isInvalid?le.createElement(Oie,{value:n},le.createElement(Ce.div,{...i?.getErrorMessageProps(r,t),className:q1("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});Die.displayName="FormErrorMessage";var zie=Le((e,t)=>{const n=Nie(),r=K1();if(!r?.isInvalid)return null;const i=q1("chakra-form__error-icon",e.className);return S(_a,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:i,children:S("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});zie.displayName="FormErrorIcon";var yh=Le(function(t,n){const r=bo("FormLabel",t),i=Sn(t),{className:o,children:a,requiredIndicator:s=S(pD,{}),optionalIndicator:l=null,...d}=i,p=K1(),g=p?.getLabelProps(d,n)??{ref:n,...d};return le.createElement(Ce.label,{...g,className:q1("chakra-form__label",i.className),__css:{display:"block",textAlign:"start",...r}},a,p?.isRequired?s:l)});yh.displayName="FormLabel";var pD=Le(function(t,n){const r=K1(),i=hD();if(!r?.isRequired)return null;const o=q1("chakra-form__required-indicator",t.className);return le.createElement(Ce.span,{...r?.getRequiredIndicatorProps(t,n),__css:i.requiredIndicator,className:o})});pD.displayName="RequiredIndicator";function E1(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var N9={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},Fie=Ce("span",{baseStyle:N9});Fie.displayName="VisuallyHidden";var Bie=Ce("input",{baseStyle:N9});Bie.displayName="VisuallyHiddenInput";var fT=!1,H5=null,P1=!1,k6=new Set,$ie=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function Hie(e){return!(e.metaKey||!$ie&&e.altKey||e.ctrlKey)}function D9(e,t){k6.forEach(n=>n(e,t))}function hT(e){P1=!0,Hie(e)&&(H5="keyboard",D9("keyboard",e))}function mp(e){H5="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(P1=!0,D9("pointer",e))}function Wie(e){e.target===window||e.target===document||(P1||(H5="keyboard",D9("keyboard",e)),P1=!1)}function Vie(){P1=!1}function pT(){return H5!=="pointer"}function Uie(){if(typeof window>"u"||fT)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){P1=!0,e.apply(this,n)},document.addEventListener("keydown",hT,!0),document.addEventListener("keyup",hT,!0),window.addEventListener("focus",Wie,!0),window.addEventListener("blur",Vie,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",mp,!0),document.addEventListener("pointermove",mp,!0),document.addEventListener("pointerup",mp,!0)):(document.addEventListener("mousedown",mp,!0),document.addEventListener("mousemove",mp,!0),document.addEventListener("mouseup",mp,!0)),fT=!0}function Gie(e){Uie(),e(pT());const t=()=>e(pT());return k6.add(t),()=>{k6.delete(t)}}var[C7e,jie]=kn({name:"CheckboxGroupContext",strict:!1}),qie=(...e)=>e.filter(Boolean).join(" "),fo=e=>e?"":void 0;function $a(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Kie(...e){return function(n){e.forEach(r=>{r?.(n)})}}function Zie(e){const t=ns;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var gD=Zie(Ce.svg);function Yie(e){return S(gD,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:S("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function Xie(e){return S(gD,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:S("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function Qie({open:e,children:t}){return S(Hu,{initial:!1,children:e&&le.createElement(ns.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function Jie(e){const{isIndeterminate:t,isChecked:n,...r}=e;return S(Qie,{open:n||t,children:S(t?Xie:Yie,{...r})})}function eoe(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function mD(e={}){const t=O9(e),{isDisabled:n,isReadOnly:r,isRequired:i,isInvalid:o,id:a,onBlur:s,onFocus:l,"aria-describedby":d}=t,{defaultChecked:p,isChecked:g,isFocusable:m,onChange:y,isIndeterminate:b,name:w,value:P,tabIndex:E=void 0,"aria-label":k,"aria-labelledby":L,"aria-invalid":M,...N}=e,F=eoe(N,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),B=kr(y),z=kr(s),j=kr(l),[q,Y]=C.exports.useState(!1),[ge,ce]=C.exports.useState(!1),[ve,we]=C.exports.useState(!1),[be,J]=C.exports.useState(!1);C.exports.useEffect(()=>Gie(Y),[]);const U=C.exports.useRef(null),[ee,Q]=C.exports.useState(!0),[W,ie]=C.exports.useState(!!p),de=g!==void 0,Se=de?g:W,De=C.exports.useCallback(Re=>{if(r||n){Re.preventDefault();return}de||ie(Se?Re.target.checked:b?!0:Re.target.checked),B?.(Re)},[r,n,Se,de,b,B]);kl(()=>{U.current&&(U.current.indeterminate=Boolean(b))},[b]),E1(()=>{n&&ce(!1)},[n,ce]),kl(()=>{const Re=U.current;!Re?.form||(Re.form.onreset=()=>{ie(!!p)})},[]);const Me=n&&!m,Ue=C.exports.useCallback(Re=>{Re.key===" "&&J(!0)},[J]),ke=C.exports.useCallback(Re=>{Re.key===" "&&J(!1)},[J]);kl(()=>{if(!U.current)return;U.current.checked!==Se&&ie(U.current.checked)},[U.current]);const Ve=C.exports.useCallback((Re={},tt=null)=>{const mt=st=>{ge&&st.preventDefault(),J(!0)};return{...Re,ref:tt,"data-active":fo(be),"data-hover":fo(ve),"data-checked":fo(Se),"data-focus":fo(ge),"data-focus-visible":fo(ge&&q),"data-indeterminate":fo(b),"data-disabled":fo(n),"data-invalid":fo(o),"data-readonly":fo(r),"aria-hidden":!0,onMouseDown:$a(Re.onMouseDown,mt),onMouseUp:$a(Re.onMouseUp,()=>J(!1)),onMouseEnter:$a(Re.onMouseEnter,()=>we(!0)),onMouseLeave:$a(Re.onMouseLeave,()=>we(!1))}},[be,Se,n,ge,q,ve,b,o,r]),ot=C.exports.useCallback((Re={},tt=null)=>({...F,...Re,ref:Fn(tt,mt=>{!mt||Q(mt.tagName==="LABEL")}),onClick:$a(Re.onClick,()=>{var mt;ee||((mt=U.current)==null||mt.click(),requestAnimationFrame(()=>{var st;(st=U.current)==null||st.focus()}))}),"data-disabled":fo(n),"data-checked":fo(Se),"data-invalid":fo(o)}),[F,n,Se,o,ee]),pt=C.exports.useCallback((Re={},tt=null)=>({...Re,ref:Fn(U,tt),type:"checkbox",name:w,value:P,id:a,tabIndex:E,onChange:$a(Re.onChange,De),onBlur:$a(Re.onBlur,z,()=>ce(!1)),onFocus:$a(Re.onFocus,j,()=>ce(!0)),onKeyDown:$a(Re.onKeyDown,Ue),onKeyUp:$a(Re.onKeyUp,ke),required:i,checked:Se,disabled:Me,readOnly:r,"aria-label":k,"aria-labelledby":L,"aria-invalid":M?Boolean(M):o,"aria-describedby":d,"aria-disabled":n,style:N9}),[w,P,a,De,z,j,Ue,ke,i,Se,Me,r,k,L,M,o,d,n,E]),Vt=C.exports.useCallback((Re={},tt=null)=>({...Re,ref:tt,onMouseDown:$a(Re.onMouseDown,gT),onTouchStart:$a(Re.onTouchStart,gT),"data-disabled":fo(n),"data-checked":fo(Se),"data-invalid":fo(o)}),[Se,n,o]);return{state:{isInvalid:o,isFocused:ge,isChecked:Se,isActive:be,isHovered:ve,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:i},getRootProps:ot,getCheckboxProps:Ve,getInputProps:pt,getLabelProps:Vt,htmlProps:F}}function gT(e){e.preventDefault(),e.stopPropagation()}var toe=Ce("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),noe=Ce("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),vD=Le(function(t,n){const r=jie(),i={...r,...t},o=Bi("Checkbox",i),a=Sn(t),{spacing:s="0.5rem",className:l,children:d,iconColor:p,iconSize:g,icon:m=S(Jie,{}),isChecked:y,isDisabled:b=r?.isDisabled,onChange:w,inputProps:P,...E}=a;let k=y;r?.value&&a.value&&(k=r.value.includes(a.value));let L=w;r?.onChange&&a.value&&(L=Kie(r.onChange,w));const{state:M,getInputProps:N,getCheckboxProps:F,getLabelProps:B,getRootProps:z}=mD({...E,isDisabled:b,isChecked:k,onChange:L}),j=C.exports.useMemo(()=>({opacity:M.isChecked||M.isIndeterminate?1:0,transform:M.isChecked||M.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:g,color:p,...o.icon}),[p,g,M.isChecked,M.isIndeterminate,o.icon]),q=C.exports.cloneElement(m,{__css:j,isIndeterminate:M.isIndeterminate,isChecked:M.isChecked});return oe(noe,{__css:o.container,className:qie("chakra-checkbox",l),...z(),children:[S("input",{className:"chakra-checkbox__input",...N(P,n)}),S(toe,{__css:o.control,className:"chakra-checkbox__control",...F(),children:q}),d&&le.createElement(Ce.span,{className:"chakra-checkbox__label",...B(),__css:{marginStart:s,...o.label}},d)]})});vD.displayName="Checkbox";function roe(e){return S(_a,{focusable:"false","aria-hidden":!0,...e,children:S("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var W5=Le(function(t,n){const r=bo("CloseButton",t),{children:i,isDisabled:o,__css:a,...s}=Sn(t),l={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return le.createElement(Ce.button,{type:"button","aria-label":"Close",ref:n,disabled:o,__css:{...l,...r,...a},...s},i||S(roe,{width:"1em",height:"1em"}))});W5.displayName="CloseButton";function ioe(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function z9(e,t){let n=ioe(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function E6(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function f4(e,t,n){return(e-t)*100/(n-t)}function yD(e,t,n){return(n-t)*e+t}function P6(e,t,n){const r=Math.round((e-t)/n)*n+t,i=E6(n);return z9(r,i)}function a1(e,t,n){return e==null?e:(nr==null?"":jb(r,o,n)??""),m=typeof i<"u",y=m?i:p,b=xD(Dc(y),o),w=n??b,P=C.exports.useCallback(q=>{q!==y&&(m||g(q.toString()),d?.(q.toString(),Dc(q)))},[d,m,y]),E=C.exports.useCallback(q=>{let Y=q;return l&&(Y=a1(Y,a,s)),z9(Y,w)},[w,l,s,a]),k=C.exports.useCallback((q=o)=>{let Y;y===""?Y=Dc(q):Y=Dc(y)+q,Y=E(Y),P(Y)},[E,o,P,y]),L=C.exports.useCallback((q=o)=>{let Y;y===""?Y=Dc(-q):Y=Dc(y)-q,Y=E(Y),P(Y)},[E,o,P,y]),M=C.exports.useCallback(()=>{let q;r==null?q="":q=jb(r,o,n)??a,P(q)},[r,n,o,P,a]),N=C.exports.useCallback(q=>{const Y=jb(q,o,w)??a;P(Y)},[w,o,P,a]),F=Dc(y);return{isOutOfRange:F>s||FS(x5,{styles:bD}),soe=()=>S(x5,{styles:` + html { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + font-family: system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; + touch-action: manipulation; + } + + body { + position: relative; + min-height: 100%; + font-feature-settings: 'kern'; + } + + *, + *::before, + *::after { + border-width: 0; + border-style: solid; + box-sizing: border-box; + } + + main { + display: block; + } + + hr { + border-top-width: 1px; + box-sizing: content-box; + height: 0; + overflow: visible; + } + + pre, + code, + kbd, + samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; + font-size: 1em; + } + + a { + background-color: transparent; + color: inherit; + text-decoration: inherit; + } + + abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + + b, + strong { + font-weight: bold; + } + + small { + font-size: 80%; + } + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + img { + border-style: none; + } + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; + font-size: 100%; + line-height: 1.15; + margin: 0; + } + + button, + input { + overflow: visible; + } + + button, + select { + text-transform: none; + } + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; + } + + progress { + vertical-align: baseline; + } + + textarea { + overflow: auto; + } + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; + padding: 0; + } + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none !important; + } + + input[type="number"] { + -moz-appearance: textfield; + } + + [type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; + } + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none !important; + } + + ::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; + } + + details { + display: block; + } + + summary { + display: list-item; + } + + template { + display: none; + } + + [hidden] { + display: none !important; + } + + body, + blockquote, + dl, + dd, + h1, + h2, + h3, + h4, + h5, + h6, + hr, + figure, + p, + pre { + margin: 0; + } + + button { + background: transparent; + padding: 0; + } + + fieldset { + margin: 0; + padding: 0; + } + + ol, + ul { + margin: 0; + padding: 0; + } + + textarea { + resize: vertical; + } + + button, + [role="button"] { + cursor: pointer; + } + + button::-moz-focus-inner { + border: 0 !important; + } + + table { + border-collapse: collapse; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-size: inherit; + font-weight: inherit; + } + + button, + input, + optgroup, + select, + textarea { + padding: 0; + line-height: inherit; + color: inherit; + } + + img, + svg, + video, + canvas, + audio, + iframe, + embed, + object { + display: block; + } + + img, + video { + max-width: 100%; + height: auto; + } + + [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { + outline: none; + box-shadow: none; + } + + select::-ms-expand { + display: none; + } + + ${bD} + `});function T6(e,t,n,r){const i=kr(n);return C.exports.useEffect(()=>{const o=typeof e=="function"?e():e??document;if(!(!n||!o))return o.addEventListener(t,i,r),()=>{o.removeEventListener(t,i,r)}},[t,e,r,i,n]),()=>{const o=typeof e=="function"?e():e??document;o?.removeEventListener(t,i,r)}}var loe=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;r"u"){n&&console.warn("unable to use e.clipboardData"),n&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var g=mT[t.format]||mT.default;window.clipboardData.setData(g,e)}else p.clipboardData.clearData(),p.clipboardData.setData(t.format,e);t.onCopy&&(p.preventDefault(),t.onCopy(p.clipboardData))}),document.body.appendChild(s),o.selectNodeContents(s),a.addRange(o);var d=document.execCommand("copy");if(!d)throw new Error("copy command was unsuccessful");l=!0}catch(p){n&&console.error("unable to copy using execCommand: ",p),n&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",e),t.onCopy&&t.onCopy(window.clipboardData),l=!0}catch(g){n&&console.error("unable to copy using clipboardData: ",g),n&&console.error("falling back to prompt"),r=doe("message"in t?t.message:coe),window.prompt(r,e)}}finally{a&&(typeof a.removeRange=="function"?a.removeRange(o):a.removeAllRanges()),s&&document.body.removeChild(s),i()}return l}var hoe=foe,poe=dv?C.exports.useLayoutEffect:C.exports.useEffect;function L6(e,t=[]){const n=C.exports.useRef(e);return poe(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function F9(e,t,n,r){const i=L6(t);return C.exports.useEffect(()=>{const o=Y3(n)??document;if(!!t)return o.addEventListener(e,i,r),()=>{o.removeEventListener(e,i,r)}},[e,n,r,i,t]),()=>{(Y3(n)??document).removeEventListener(e,i,r)}}function goe(e){const{isOpen:t,ref:n}=e,[r,i]=C.exports.useState(t),[o,a]=C.exports.useState(!1);return C.exports.useEffect(()=>{o||(i(t),a(!0))},[t,o,r]),F9("animationend",()=>{i(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var l;const d=DX(n.current),p=new d.CustomEvent("animationend",{bubbles:!0});(l=n.current)==null||l.dispatchEvent(p)}}}function moe(e,t={}){const[n,r]=C.exports.useState(!1),{timeout:i=1500,...o}=typeof t=="number"?{timeout:t}:t,a=C.exports.useCallback(()=>{const s=hoe(e,o);r(s)},[e,o]);return C.exports.useEffect(()=>{let s=null;return n&&(s=window.setTimeout(()=>{r(!1)},i)),()=>{s&&window.clearTimeout(s)}},[i,n]),{value:e,onCopy:a,hasCopied:n}}function voe(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function yoe(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function h4(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=L6(n),a=L6(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),[d,p]=voe(r,s),g=yoe(i,"disclosure"),m=C.exports.useCallback(()=>{d||l(!1),a?.()},[d,a]),y=C.exports.useCallback(()=>{d||l(!0),o?.()},[d,o]),b=C.exports.useCallback(()=>{(p?m:y)()},[p,y,m]);return{isOpen:!!p,onOpen:y,onClose:m,onToggle:b,isControlled:d,getButtonProps:(w={})=>({...w,"aria-expanded":p,"aria-controls":g,onClick:ZX(w.onClick,b)}),getDisclosureProps:(w={})=>({...w,hidden:!p,id:g})}}var SD=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function xoe(e){const t=e.current;if(!t)return!1;const n=BX(t);return!n||i9(t,n)?!1:!!UX(n)}function boe(e,t){const{shouldFocus:n,visible:r,focusRef:i}=t,o=n&&!r;SD(()=>{if(!o||xoe(e))return;const a=i?.current||e.current;a&&X3(a,{nextTick:!0})},[o,e,i])}function Soe(e,t,n,r){return F9(pQ(t),lQ(n,t==="pointerdown"),e,r)}function woe(e){const{ref:t,elements:n,enabled:r}=e,i=mQ("Safari");Soe(()=>cv(t.current),"pointerdown",a=>{if(!i||!r)return;const s=a.target,d=(n??[t]).some(p=>{const g=mO(p)?p.current:p;return i9(g,s)});!SO(s)&&d&&(a.preventDefault(),X3(s))})}var Coe={preventScroll:!0,shouldFocus:!1};function _oe(e,t=Coe){const{focusRef:n,preventScroll:r,shouldFocus:i,visible:o}=t,a=mO(e)?e.current:e,s=i&&o,l=C.exports.useCallback(()=>{if(!(!a||!s)&&!i9(a,document.activeElement))if(n?.current)X3(n.current,{preventScroll:r,nextTick:!0});else{const d=KX(a);d.length>0&&X3(d[0],{preventScroll:r,nextTick:!0})}},[s,r,a,n]);SD(()=>{l()},[l]),F9("transitionend",l,a)}function B9(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var $9=Le(function(t,n){const{htmlSize:r,...i}=t,o=Bi("Input",i),a=Sn(i),s=R9(a),l=Pr("chakra-input",t.className);return le.createElement(Ce.input,{size:r,...s,__css:o.field,ref:n,className:l})});$9.displayName="Input";$9.id="Input";var[koe,wD]=kn({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Eoe=Le(function(t,n){const r=Bi("Input",t),{children:i,className:o,...a}=Sn(t),s=Pr("chakra-input__group",o),l={},d=B5(i),p=r.field;d.forEach(m=>{!r||(p&&m.type.id==="InputLeftElement"&&(l.paddingStart=p.height??p.h),p&&m.type.id==="InputRightElement"&&(l.paddingEnd=p.height??p.h),m.type.id==="InputRightAddon"&&(l.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(l.borderStartRadius=0))});const g=d.map(m=>{var y,b;const w=B9({size:((y=m.props)==null?void 0:y.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,w):C.exports.cloneElement(m,Object.assign(w,l,m.props))});return le.createElement(Ce.div,{className:s,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...a},S(koe,{value:r,children:g}))});Eoe.displayName="InputGroup";var Poe={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},Toe=Ce("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),H9=Le(function(t,n){const{placement:r="left",...i}=t,o=Poe[r]??{},a=wD();return S(Toe,{ref:n,...i,__css:{...a.addon,...o}})});H9.displayName="InputAddon";var CD=Le(function(t,n){return S(H9,{ref:n,placement:"left",...t,className:Pr("chakra-input__left-addon",t.className)})});CD.displayName="InputLeftAddon";CD.id="InputLeftAddon";var _D=Le(function(t,n){return S(H9,{ref:n,placement:"right",...t,className:Pr("chakra-input__right-addon",t.className)})});_D.displayName="InputRightAddon";_D.id="InputRightAddon";var Loe=Ce("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),V5=Le(function(t,n){const{placement:r="left",...i}=t,o=wD(),a=o.field,l={[r==="left"?"insetStart":"insetEnd"]:"0",width:a?.height??a?.h,height:a?.height??a?.h,fontSize:a?.fontSize,...o.element};return S(Loe,{ref:n,__css:l,...i})});V5.id="InputElement";V5.displayName="InputElement";var kD=Le(function(t,n){const{className:r,...i}=t,o=Pr("chakra-input__left-element",r);return S(V5,{ref:n,placement:"left",className:o,...i})});kD.id="InputLeftElement";kD.displayName="InputLeftElement";var ED=Le(function(t,n){const{className:r,...i}=t,o=Pr("chakra-input__right-element",r);return S(V5,{ref:n,placement:"right",className:o,...i})});ED.id="InputRightElement";ED.displayName="InputRightElement";function Aoe(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function dd(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):Aoe(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var Ioe=Le(function(e,t){const{ratio:n=4/3,children:r,className:i,...o}=e,a=C.exports.Children.only(r),s=Pr("chakra-aspect-ratio",i);return le.createElement(Ce.div,{ref:t,position:"relative",className:s,_before:{height:0,content:'""',display:"block",paddingBottom:dd(n,l=>`${1/l*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...o},a)});Ioe.displayName="AspectRatio";var Moe=Le(function(t,n){const r=bo("Badge",t),{className:i,...o}=Sn(t);return le.createElement(Ce.span,{ref:n,className:Pr("chakra-badge",t.className),...o,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});Moe.displayName="Badge";var wd=Ce("div");wd.displayName="Box";var PD=Le(function(t,n){const{size:r,centerContent:i=!0,...o}=t;return S(wd,{ref:n,boxSize:r,__css:{...i?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...o})});PD.displayName="Square";var Roe=Le(function(t,n){const{size:r,...i}=t;return S(PD,{size:r,ref:n,borderRadius:"9999px",...i})});Roe.displayName="Circle";var TD=Ce("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});TD.displayName="Center";var Ooe={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};Le(function(t,n){const{axis:r="both",...i}=t;return le.createElement(Ce.div,{ref:n,__css:Ooe[r],...i,position:"absolute"})});var Noe=Le(function(t,n){const r=bo("Code",t),{className:i,...o}=Sn(t);return le.createElement(Ce.code,{ref:n,className:Pr("chakra-code",t.className),...o,__css:{display:"inline-block",...r}})});Noe.displayName="Code";var Doe=Le(function(t,n){const{className:r,centerContent:i,...o}=Sn(t),a=bo("Container",t);return le.createElement(Ce.div,{ref:n,className:Pr("chakra-container",r),...o,__css:{...a,...i&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});Doe.displayName="Container";var zoe=Le(function(t,n){const{borderLeftWidth:r,borderBottomWidth:i,borderTopWidth:o,borderRightWidth:a,borderWidth:s,borderStyle:l,borderColor:d,...p}=bo("Divider",t),{className:g,orientation:m="horizontal",__css:y,...b}=Sn(t),w={vertical:{borderLeftWidth:r||a||s||"1px",height:"100%"},horizontal:{borderBottomWidth:i||o||s||"1px",width:"100%"}};return le.createElement(Ce.hr,{ref:n,"aria-orientation":m,...b,__css:{...p,border:"0",borderColor:d,borderStyle:l,...w[m],...y},className:Pr("chakra-divider",g)})});zoe.displayName="Divider";var zn=Le(function(t,n){const{direction:r,align:i,justify:o,wrap:a,basis:s,grow:l,shrink:d,...p}=t,g={display:"flex",flexDirection:r,alignItems:i,justifyContent:o,flexWrap:a,flexBasis:s,flexGrow:l,flexShrink:d};return le.createElement(Ce.div,{ref:n,__css:g,...p})});zn.displayName="Flex";var LD=Le(function(t,n){const{templateAreas:r,gap:i,rowGap:o,columnGap:a,column:s,row:l,autoFlow:d,autoRows:p,templateRows:g,autoColumns:m,templateColumns:y,...b}=t,w={display:"grid",gridTemplateAreas:r,gridGap:i,gridRowGap:o,gridColumnGap:a,gridAutoColumns:m,gridColumn:s,gridRow:l,gridAutoFlow:d,gridAutoRows:p,gridTemplateRows:g,gridTemplateColumns:y};return le.createElement(Ce.div,{ref:n,__css:w,...b})});LD.displayName="Grid";function vT(e){return dd(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var Foe=Le(function(t,n){const{area:r,colSpan:i,colStart:o,colEnd:a,rowEnd:s,rowSpan:l,rowStart:d,...p}=t,g=B9({gridArea:r,gridColumn:vT(i),gridRow:vT(l),gridColumnStart:o,gridColumnEnd:a,gridRowStart:d,gridRowEnd:s});return le.createElement(Ce.div,{ref:n,__css:g,...p})});Foe.displayName="GridItem";var eh=Le(function(t,n){const r=bo("Heading",t),{className:i,...o}=Sn(t);return le.createElement(Ce.h2,{ref:n,className:Pr("chakra-heading",t.className),...o,__css:r})});eh.displayName="Heading";Le(function(t,n){const r=bo("Mark",t),i=Sn(t);return S(wd,{ref:n,...i,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var Boe=Le(function(t,n){const r=bo("Kbd",t),{className:i,...o}=Sn(t);return le.createElement(Ce.kbd,{ref:n,className:Pr("chakra-kbd",i),...o,__css:{fontFamily:"mono",...r}})});Boe.displayName="Kbd";var th=Le(function(t,n){const r=bo("Link",t),{className:i,isExternal:o,...a}=Sn(t);return le.createElement(Ce.a,{target:o?"_blank":void 0,rel:o?"noopener":void 0,ref:n,className:Pr("chakra-link",i),...a,__css:r})});th.displayName="Link";Le(function(t,n){const{isExternal:r,target:i,rel:o,className:a,...s}=t;return le.createElement(Ce.a,{...s,ref:n,className:Pr("chakra-linkbox__overlay",a),rel:r?"noopener noreferrer":o,target:r?"_blank":i,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});Le(function(t,n){const{className:r,...i}=t;return le.createElement(Ce.div,{ref:n,position:"relative",...i,className:Pr("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[$oe,AD]=kn({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),W9=Le(function(t,n){const r=Bi("List",t),{children:i,styleType:o="none",stylePosition:a,spacing:s,...l}=Sn(t),d=B5(i),g=s?{["& > *:not(style) ~ *:not(style)"]:{mt:s}}:{};return le.createElement($oe,{value:r},le.createElement(Ce.ul,{ref:n,listStyleType:o,listStylePosition:a,role:"list",__css:{...r.container,...g},...l},d))});W9.displayName="List";var Hoe=Le((e,t)=>{const{as:n,...r}=e;return S(W9,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});Hoe.displayName="OrderedList";var ID=Le(function(t,n){const{as:r,...i}=t;return S(W9,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...i})});ID.displayName="UnorderedList";var MD=Le(function(t,n){const r=AD();return le.createElement(Ce.li,{ref:n,...t,__css:r.item})});MD.displayName="ListItem";var Woe=Le(function(t,n){const r=AD();return S(_a,{ref:n,role:"presentation",...t,__css:r.icon})});Woe.displayName="ListIcon";var Voe=Le(function(t,n){const{columns:r,spacingX:i,spacingY:o,spacing:a,minChildWidth:s,...l}=t,d=W1(),p=s?Goe(s,d):joe(r);return S(LD,{ref:n,gap:a,columnGap:i,rowGap:o,templateColumns:p,...l})});Voe.displayName="SimpleGrid";function Uoe(e){return typeof e=="number"?`${e}px`:e}function Goe(e,t){return dd(e,n=>{const r=MQ("sizes",n,Uoe(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function joe(e){return dd(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var RD=Ce("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});RD.displayName="Spacer";var A6="& > *:not(style) ~ *:not(style)";function qoe(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[A6]:dd(n,i=>r[i])}}function Koe(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":dd(n,i=>r[i])}}var OD=e=>le.createElement(Ce.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});OD.displayName="StackItem";var V9=Le((e,t)=>{const{isInline:n,direction:r,align:i,justify:o,spacing:a="0.5rem",wrap:s,children:l,divider:d,className:p,shouldWrapChildren:g,...m}=e,y=n?"row":r??"column",b=C.exports.useMemo(()=>qoe({direction:y,spacing:a}),[y,a]),w=C.exports.useMemo(()=>Koe({spacing:a,direction:y}),[a,y]),P=!!d,E=!g&&!P,k=B5(l),L=E?k:k.map((N,F)=>{const B=typeof N.key<"u"?N.key:F,z=F+1===k.length,q=g?S(OD,{children:N},B):N;if(!P)return q;const Y=C.exports.cloneElement(d,{__css:w}),ge=z?null:Y;return oe(C.exports.Fragment,{children:[q,ge]},B)}),M=Pr("chakra-stack",p);return le.createElement(Ce.div,{ref:t,display:"flex",alignItems:i,justifyContent:o,flexDirection:b.flexDirection,flexWrap:s,className:M,__css:P?{}:{[A6]:b[A6]},...m},L)});V9.displayName="Stack";var Zoe=Le((e,t)=>S(V9,{align:"center",...e,direction:"row",ref:t}));Zoe.displayName="HStack";var Yoe=Le((e,t)=>S(V9,{align:"center",...e,direction:"column",ref:t}));Yoe.displayName="VStack";var Do=Le(function(t,n){const r=bo("Text",t),{className:i,align:o,decoration:a,casing:s,...l}=Sn(t),d=B9({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return le.createElement(Ce.p,{ref:n,className:Pr("chakra-text",t.className),...d,...l,__css:r})});Do.displayName="Text";function yT(e){return typeof e=="number"?`${e}px`:e}var Xoe=Le(function(t,n){const{spacing:r="0.5rem",spacingX:i,spacingY:o,children:a,justify:s,direction:l,align:d,className:p,shouldWrapChildren:g,...m}=t,y=C.exports.useMemo(()=>{const{spacingX:w=r,spacingY:P=r}={spacingX:i,spacingY:o};return{"--chakra-wrap-x-spacing":E=>dd(w,k=>yT(Hw("space",k)(E))),"--chakra-wrap-y-spacing":E=>dd(P,k=>yT(Hw("space",k)(E))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:s,alignItems:d,flexDirection:l,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,i,o,s,d,l]),b=g?C.exports.Children.map(a,(w,P)=>S(ND,{children:w},P)):a;return le.createElement(Ce.div,{ref:n,className:Pr("chakra-wrap",p),overflow:"hidden",...m},le.createElement(Ce.ul,{className:"chakra-wrap__list",__css:y},b))});Xoe.displayName="Wrap";var ND=Le(function(t,n){const{className:r,...i}=t;return le.createElement(Ce.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:Pr("chakra-wrap__listitem",r),...i})});ND.displayName="WrapItem";var Qoe={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},DD=Qoe,vp=()=>{},Joe={document:DD,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:vp,removeEventListener:vp,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:vp,removeListener:vp}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:vp,setInterval:()=>0,clearInterval:vp},eae=Joe,tae={window:eae,document:DD},zD=typeof window<"u"?{window,document}:tae,FD=C.exports.createContext(zD);FD.displayName="EnvironmentContext";function BD(e){const{children:t,environment:n}=e,[r,i]=C.exports.useState(null),[o,a]=C.exports.useState(!1);C.exports.useEffect(()=>a(!0),[]);const s=C.exports.useMemo(()=>{if(n)return n;const l=r?.ownerDocument,d=r?.ownerDocument.defaultView;return l?{document:l,window:d}:zD},[r,n]);return oe(FD.Provider,{value:s,children:[t,!n&&o&&S("span",{id:"__chakra_env",hidden:!0,ref:l=>{C.exports.startTransition(()=>{l&&i(l)})}})]})}BD.displayName="EnvironmentProvider";var nae=e=>e?"":void 0;function rae(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((i,o,a,s)=>{e.current.set(a,{type:o,el:i,options:s}),i.addEventListener(o,a,s)},[]),r=C.exports.useCallback((i,o,a,s)=>{i.removeEventListener(o,a,s),e.current.delete(a)},[]);return C.exports.useEffect(()=>()=>{t.forEach((i,o)=>{r(i.el,i.type,o,i.options)})},[r,t]),{add:n,remove:r}}function qb(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function iae(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:i=!0,clickOnSpace:o=!0,onMouseDown:a,onMouseUp:s,onClick:l,onKeyDown:d,onKeyUp:p,tabIndex:g,onMouseOver:m,onMouseLeave:y,...b}=e,[w,P]=C.exports.useState(!0),[E,k]=C.exports.useState(!1),L=rae(),M=J=>{!J||J.tagName!=="BUTTON"&&P(!1)},N=w?g:g||0,F=n&&!r,B=C.exports.useCallback(J=>{if(n){J.stopPropagation(),J.preventDefault();return}J.currentTarget.focus(),l?.(J)},[n,l]),z=C.exports.useCallback(J=>{E&&qb(J)&&(J.preventDefault(),J.stopPropagation(),k(!1),L.remove(document,"keyup",z,!1))},[E,L]),j=C.exports.useCallback(J=>{if(d?.(J),n||J.defaultPrevented||J.metaKey||!qb(J.nativeEvent)||w)return;const U=i&&J.key==="Enter";o&&J.key===" "&&(J.preventDefault(),k(!0)),U&&(J.preventDefault(),J.currentTarget.click()),L.add(document,"keyup",z,!1)},[n,w,d,i,o,L,z]),q=C.exports.useCallback(J=>{if(p?.(J),n||J.defaultPrevented||J.metaKey||!qb(J.nativeEvent)||w)return;o&&J.key===" "&&(J.preventDefault(),k(!1),J.currentTarget.click())},[o,w,n,p]),Y=C.exports.useCallback(J=>{J.button===0&&(k(!1),L.remove(document,"mouseup",Y,!1))},[L]),ge=C.exports.useCallback(J=>{if(J.button!==0)return;if(n){J.stopPropagation(),J.preventDefault();return}w||k(!0),J.currentTarget.focus({preventScroll:!0}),L.add(document,"mouseup",Y,!1),a?.(J)},[n,w,a,L,Y]),ce=C.exports.useCallback(J=>{J.button===0&&(w||k(!1),s?.(J))},[s,w]),ve=C.exports.useCallback(J=>{if(n){J.preventDefault();return}m?.(J)},[n,m]),we=C.exports.useCallback(J=>{E&&(J.preventDefault(),k(!1)),y?.(J)},[E,y]),be=Fn(t,M);return w?{...b,ref:be,type:"button","aria-disabled":F?void 0:n,disabled:F,onClick:B,onMouseDown:a,onMouseUp:s,onKeyUp:p,onKeyDown:d,onMouseOver:m,onMouseLeave:y}:{...b,ref:be,role:"button","data-active":nae(E),"aria-disabled":n?"true":void 0,tabIndex:F?void 0:N,onClick:B,onMouseDown:ge,onMouseUp:ce,onKeyUp:q,onKeyDown:j,onMouseOver:ve,onMouseLeave:we}}function oae(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function aae(e){if(!oae(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var sae=e=>e.hasAttribute("tabindex");function lae(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function $D(e){return e.parentElement&&$D(e.parentElement)?!0:e.hidden}function uae(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function cae(e){if(!aae(e)||$D(e)||lae(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():uae(e)?!0:sae(e)}var dae=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],fae=dae.join(),hae=e=>e.offsetWidth>0&&e.offsetHeight>0;function pae(e){const t=Array.from(e.querySelectorAll(fae));return t.unshift(e),t.filter(n=>cae(n)&&hae(n))}var Ho="top",Ja="bottom",es="right",Wo="left",U9="auto",bv=[Ho,Ja,es,Wo],T1="start",$m="end",gae="clippingParents",HD="viewport",ag="popper",mae="reference",xT=bv.reduce(function(e,t){return e.concat([t+"-"+T1,t+"-"+$m])},[]),WD=[].concat(bv,[U9]).reduce(function(e,t){return e.concat([t,t+"-"+T1,t+"-"+$m])},[]),vae="beforeRead",yae="read",xae="afterRead",bae="beforeMain",Sae="main",wae="afterMain",Cae="beforeWrite",_ae="write",kae="afterWrite",Eae=[vae,yae,xae,bae,Sae,wae,Cae,_ae,kae];function Ol(e){return e?(e.nodeName||"").toLowerCase():null}function rs(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function dh(e){var t=rs(e).Element;return e instanceof t||e instanceof Element}function Ya(e){var t=rs(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function G9(e){if(typeof ShadowRoot>"u")return!1;var t=rs(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Pae(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},i=t.attributes[n]||{},o=t.elements[n];!Ya(o)||!Ol(o)||(Object.assign(o.style,r),Object.keys(i).forEach(function(a){var s=i[a];s===!1?o.removeAttribute(a):o.setAttribute(a,s===!0?"":s)}))})}function Tae(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var i=t.elements[r],o=t.attributes[r]||{},a=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),s=a.reduce(function(l,d){return l[d]="",l},{});!Ya(i)||!Ol(i)||(Object.assign(i.style,s),Object.keys(o).forEach(function(l){i.removeAttribute(l)}))})}}const Lae={name:"applyStyles",enabled:!0,phase:"write",fn:Pae,effect:Tae,requires:["computeStyles"]};function Ll(e){return e.split("-")[0]}var nh=Math.max,p4=Math.min,L1=Math.round;function I6(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function VD(){return!/^((?!chrome|android).)*safari/i.test(I6())}function A1(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),i=1,o=1;t&&Ya(e)&&(i=e.offsetWidth>0&&L1(r.width)/e.offsetWidth||1,o=e.offsetHeight>0&&L1(r.height)/e.offsetHeight||1);var a=dh(e)?rs(e):window,s=a.visualViewport,l=!VD()&&n,d=(r.left+(l&&s?s.offsetLeft:0))/i,p=(r.top+(l&&s?s.offsetTop:0))/o,g=r.width/i,m=r.height/o;return{width:g,height:m,top:p,right:d+g,bottom:p+m,left:d,x:d,y:p}}function j9(e){var t=A1(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function UD(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&G9(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Ou(e){return rs(e).getComputedStyle(e)}function Aae(e){return["table","td","th"].indexOf(Ol(e))>=0}function Cd(e){return((dh(e)?e.ownerDocument:e.document)||window.document).documentElement}function U5(e){return Ol(e)==="html"?e:e.assignedSlot||e.parentNode||(G9(e)?e.host:null)||Cd(e)}function bT(e){return!Ya(e)||Ou(e).position==="fixed"?null:e.offsetParent}function Iae(e){var t=/firefox/i.test(I6()),n=/Trident/i.test(I6());if(n&&Ya(e)){var r=Ou(e);if(r.position==="fixed")return null}var i=U5(e);for(G9(i)&&(i=i.host);Ya(i)&&["html","body"].indexOf(Ol(i))<0;){var o=Ou(i);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return i;i=i.parentNode}return null}function Sv(e){for(var t=rs(e),n=bT(e);n&&Aae(n)&&Ou(n).position==="static";)n=bT(n);return n&&(Ol(n)==="html"||Ol(n)==="body"&&Ou(n).position==="static")?t:n||Iae(e)||t}function q9(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function Xg(e,t,n){return nh(e,p4(t,n))}function Mae(e,t,n){var r=Xg(e,t,n);return r>n?n:r}function GD(){return{top:0,right:0,bottom:0,left:0}}function jD(e){return Object.assign({},GD(),e)}function qD(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var Rae=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,jD(typeof t!="number"?t:qD(t,bv))};function Oae(e){var t,n=e.state,r=e.name,i=e.options,o=n.elements.arrow,a=n.modifiersData.popperOffsets,s=Ll(n.placement),l=q9(s),d=[Wo,es].indexOf(s)>=0,p=d?"height":"width";if(!(!o||!a)){var g=Rae(i.padding,n),m=j9(o),y=l==="y"?Ho:Wo,b=l==="y"?Ja:es,w=n.rects.reference[p]+n.rects.reference[l]-a[l]-n.rects.popper[p],P=a[l]-n.rects.reference[l],E=Sv(o),k=E?l==="y"?E.clientHeight||0:E.clientWidth||0:0,L=w/2-P/2,M=g[y],N=k-m[p]-g[b],F=k/2-m[p]/2+L,B=Xg(M,F,N),z=l;n.modifiersData[r]=(t={},t[z]=B,t.centerOffset=B-F,t)}}function Nae(e){var t=e.state,n=e.options,r=n.element,i=r===void 0?"[data-popper-arrow]":r;i!=null&&(typeof i=="string"&&(i=t.elements.popper.querySelector(i),!i)||!UD(t.elements.popper,i)||(t.elements.arrow=i))}const Dae={name:"arrow",enabled:!0,phase:"main",fn:Oae,effect:Nae,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function I1(e){return e.split("-")[1]}var zae={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Fae(e){var t=e.x,n=e.y,r=window,i=r.devicePixelRatio||1;return{x:L1(t*i)/i||0,y:L1(n*i)/i||0}}function ST(e){var t,n=e.popper,r=e.popperRect,i=e.placement,o=e.variation,a=e.offsets,s=e.position,l=e.gpuAcceleration,d=e.adaptive,p=e.roundOffsets,g=e.isFixed,m=a.x,y=m===void 0?0:m,b=a.y,w=b===void 0?0:b,P=typeof p=="function"?p({x:y,y:w}):{x:y,y:w};y=P.x,w=P.y;var E=a.hasOwnProperty("x"),k=a.hasOwnProperty("y"),L=Wo,M=Ho,N=window;if(d){var F=Sv(n),B="clientHeight",z="clientWidth";if(F===rs(n)&&(F=Cd(n),Ou(F).position!=="static"&&s==="absolute"&&(B="scrollHeight",z="scrollWidth")),F=F,i===Ho||(i===Wo||i===es)&&o===$m){M=Ja;var j=g&&F===N&&N.visualViewport?N.visualViewport.height:F[B];w-=j-r.height,w*=l?1:-1}if(i===Wo||(i===Ho||i===Ja)&&o===$m){L=es;var q=g&&F===N&&N.visualViewport?N.visualViewport.width:F[z];y-=q-r.width,y*=l?1:-1}}var Y=Object.assign({position:s},d&&zae),ge=p===!0?Fae({x:y,y:w}):{x:y,y:w};if(y=ge.x,w=ge.y,l){var ce;return Object.assign({},Y,(ce={},ce[M]=k?"0":"",ce[L]=E?"0":"",ce.transform=(N.devicePixelRatio||1)<=1?"translate("+y+"px, "+w+"px)":"translate3d("+y+"px, "+w+"px, 0)",ce))}return Object.assign({},Y,(t={},t[M]=k?w+"px":"",t[L]=E?y+"px":"",t.transform="",t))}function Bae(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=r===void 0?!0:r,o=n.adaptive,a=o===void 0?!0:o,s=n.roundOffsets,l=s===void 0?!0:s,d={placement:Ll(t.placement),variation:I1(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,ST(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:l})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,ST(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const $ae={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Bae,data:{}};var X2={passive:!0};function Hae(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,o=i===void 0?!0:i,a=r.resize,s=a===void 0?!0:a,l=rs(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&d.forEach(function(p){p.addEventListener("scroll",n.update,X2)}),s&&l.addEventListener("resize",n.update,X2),function(){o&&d.forEach(function(p){p.removeEventListener("scroll",n.update,X2)}),s&&l.removeEventListener("resize",n.update,X2)}}const Wae={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Hae,data:{}};var Vae={left:"right",right:"left",bottom:"top",top:"bottom"};function e3(e){return e.replace(/left|right|bottom|top/g,function(t){return Vae[t]})}var Uae={start:"end",end:"start"};function wT(e){return e.replace(/start|end/g,function(t){return Uae[t]})}function K9(e){var t=rs(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function Z9(e){return A1(Cd(e)).left+K9(e).scrollLeft}function Gae(e,t){var n=rs(e),r=Cd(e),i=n.visualViewport,o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;var d=VD();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s+Z9(e),y:l}}function jae(e){var t,n=Cd(e),r=K9(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=nh(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=nh(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),s=-r.scrollLeft+Z9(e),l=-r.scrollTop;return Ou(i||n).direction==="rtl"&&(s+=nh(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function Y9(e){var t=Ou(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}function KD(e){return["html","body","#document"].indexOf(Ol(e))>=0?e.ownerDocument.body:Ya(e)&&Y9(e)?e:KD(U5(e))}function Qg(e,t){var n;t===void 0&&(t=[]);var r=KD(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=rs(r),a=i?[o].concat(o.visualViewport||[],Y9(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(Qg(U5(a)))}function M6(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function qae(e,t){var n=A1(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function CT(e,t,n){return t===HD?M6(Gae(e,n)):dh(t)?qae(t,n):M6(jae(Cd(e)))}function Kae(e){var t=Qg(U5(e)),n=["absolute","fixed"].indexOf(Ou(e).position)>=0,r=n&&Ya(e)?Sv(e):e;return dh(r)?t.filter(function(i){return dh(i)&&UD(i,r)&&Ol(i)!=="body"}):[]}function Zae(e,t,n,r){var i=t==="clippingParents"?Kae(e):[].concat(t),o=[].concat(i,[n]),a=o[0],s=o.reduce(function(l,d){var p=CT(e,d,r);return l.top=nh(p.top,l.top),l.right=p4(p.right,l.right),l.bottom=p4(p.bottom,l.bottom),l.left=nh(p.left,l.left),l},CT(e,a,r));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}function ZD(e){var t=e.reference,n=e.element,r=e.placement,i=r?Ll(r):null,o=r?I1(r):null,a=t.x+t.width/2-n.width/2,s=t.y+t.height/2-n.height/2,l;switch(i){case Ho:l={x:a,y:t.y-n.height};break;case Ja:l={x:a,y:t.y+t.height};break;case es:l={x:t.x+t.width,y:s};break;case Wo:l={x:t.x-n.width,y:s};break;default:l={x:t.x,y:t.y}}var d=i?q9(i):null;if(d!=null){var p=d==="y"?"height":"width";switch(o){case T1:l[d]=l[d]-(t[p]/2-n[p]/2);break;case $m:l[d]=l[d]+(t[p]/2-n[p]/2);break}}return l}function Hm(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=r===void 0?e.placement:r,o=n.strategy,a=o===void 0?e.strategy:o,s=n.boundary,l=s===void 0?gae:s,d=n.rootBoundary,p=d===void 0?HD:d,g=n.elementContext,m=g===void 0?ag:g,y=n.altBoundary,b=y===void 0?!1:y,w=n.padding,P=w===void 0?0:w,E=jD(typeof P!="number"?P:qD(P,bv)),k=m===ag?mae:ag,L=e.rects.popper,M=e.elements[b?k:m],N=Zae(dh(M)?M:M.contextElement||Cd(e.elements.popper),l,p,a),F=A1(e.elements.reference),B=ZD({reference:F,element:L,strategy:"absolute",placement:i}),z=M6(Object.assign({},L,B)),j=m===ag?z:F,q={top:N.top-j.top+E.top,bottom:j.bottom-N.bottom+E.bottom,left:N.left-j.left+E.left,right:j.right-N.right+E.right},Y=e.modifiersData.offset;if(m===ag&&Y){var ge=Y[i];Object.keys(q).forEach(function(ce){var ve=[es,Ja].indexOf(ce)>=0?1:-1,we=[Ho,Ja].indexOf(ce)>=0?"y":"x";q[ce]+=ge[we]*ve})}return q}function Yae(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=n.boundary,o=n.rootBoundary,a=n.padding,s=n.flipVariations,l=n.allowedAutoPlacements,d=l===void 0?WD:l,p=I1(r),g=p?s?xT:xT.filter(function(b){return I1(b)===p}):bv,m=g.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=g);var y=m.reduce(function(b,w){return b[w]=Hm(e,{placement:w,boundary:i,rootBoundary:o,padding:a})[Ll(w)],b},{});return Object.keys(y).sort(function(b,w){return y[b]-y[w]})}function Xae(e){if(Ll(e)===U9)return[];var t=e3(e);return[wT(e),t,wT(t)]}function Qae(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!0:a,l=n.fallbackPlacements,d=n.padding,p=n.boundary,g=n.rootBoundary,m=n.altBoundary,y=n.flipVariations,b=y===void 0?!0:y,w=n.allowedAutoPlacements,P=t.options.placement,E=Ll(P),k=E===P,L=l||(k||!b?[e3(P)]:Xae(P)),M=[P].concat(L).reduce(function(Se,De){return Se.concat(Ll(De)===U9?Yae(t,{placement:De,boundary:p,rootBoundary:g,padding:d,flipVariations:b,allowedAutoPlacements:w}):De)},[]),N=t.rects.reference,F=t.rects.popper,B=new Map,z=!0,j=M[0],q=0;q=0,we=ve?"width":"height",be=Hm(t,{placement:Y,boundary:p,rootBoundary:g,altBoundary:m,padding:d}),J=ve?ce?es:Wo:ce?Ja:Ho;N[we]>F[we]&&(J=e3(J));var U=e3(J),ee=[];if(o&&ee.push(be[ge]<=0),s&&ee.push(be[J]<=0,be[U]<=0),ee.every(function(Se){return Se})){j=Y,z=!1;break}B.set(Y,ee)}if(z)for(var Q=b?3:1,W=function(De){var Me=M.find(function(Ue){var ke=B.get(Ue);if(ke)return ke.slice(0,De).every(function(Ve){return Ve})});if(Me)return j=Me,"break"},ie=Q;ie>0;ie--){var de=W(ie);if(de==="break")break}t.placement!==j&&(t.modifiersData[r]._skip=!0,t.placement=j,t.reset=!0)}}const Jae={name:"flip",enabled:!0,phase:"main",fn:Qae,requiresIfExists:["offset"],data:{_skip:!1}};function _T(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function kT(e){return[Ho,es,Ja,Wo].some(function(t){return e[t]>=0})}function ese(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,o=t.modifiersData.preventOverflow,a=Hm(t,{elementContext:"reference"}),s=Hm(t,{altBoundary:!0}),l=_T(a,r),d=_T(s,i,o),p=kT(l),g=kT(d);t.modifiersData[n]={referenceClippingOffsets:l,popperEscapeOffsets:d,isReferenceHidden:p,hasPopperEscaped:g},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":g})}const tse={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:ese};function nse(e,t,n){var r=Ll(e),i=[Wo,Ho].indexOf(r)>=0?-1:1,o=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,a=o[0],s=o[1];return a=a||0,s=(s||0)*i,[Wo,es].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}function rse(e){var t=e.state,n=e.options,r=e.name,i=n.offset,o=i===void 0?[0,0]:i,a=WD.reduce(function(p,g){return p[g]=nse(g,t.rects,o),p},{}),s=a[t.placement],l=s.x,d=s.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=a}const ise={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:rse};function ose(e){var t=e.state,n=e.name;t.modifiersData[n]=ZD({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const ase={name:"popperOffsets",enabled:!0,phase:"read",fn:ose,data:{}};function sse(e){return e==="x"?"y":"x"}function lse(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!1:a,l=n.boundary,d=n.rootBoundary,p=n.altBoundary,g=n.padding,m=n.tether,y=m===void 0?!0:m,b=n.tetherOffset,w=b===void 0?0:b,P=Hm(t,{boundary:l,rootBoundary:d,padding:g,altBoundary:p}),E=Ll(t.placement),k=I1(t.placement),L=!k,M=q9(E),N=sse(M),F=t.modifiersData.popperOffsets,B=t.rects.reference,z=t.rects.popper,j=typeof w=="function"?w(Object.assign({},t.rects,{placement:t.placement})):w,q=typeof j=="number"?{mainAxis:j,altAxis:j}:Object.assign({mainAxis:0,altAxis:0},j),Y=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ge={x:0,y:0};if(!!F){if(o){var ce,ve=M==="y"?Ho:Wo,we=M==="y"?Ja:es,be=M==="y"?"height":"width",J=F[M],U=J+P[ve],ee=J-P[we],Q=y?-z[be]/2:0,W=k===T1?B[be]:z[be],ie=k===T1?-z[be]:-B[be],de=t.elements.arrow,Se=y&&de?j9(de):{width:0,height:0},De=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:GD(),Me=De[ve],Ue=De[we],ke=Xg(0,B[be],Se[be]),Ve=L?B[be]/2-Q-ke-Me-q.mainAxis:W-ke-Me-q.mainAxis,ot=L?-B[be]/2+Q+ke+Ue+q.mainAxis:ie+ke+Ue+q.mainAxis,pt=t.elements.arrow&&Sv(t.elements.arrow),Vt=pt?M==="y"?pt.clientTop||0:pt.clientLeft||0:0,Ft=(ce=Y?.[M])!=null?ce:0,Re=J+Ve-Ft-Vt,tt=J+ot-Ft,mt=Xg(y?p4(U,Re):U,J,y?nh(ee,tt):ee);F[M]=mt,ge[M]=mt-J}if(s){var st,vt=M==="x"?Ho:Wo,mn=M==="x"?Ja:es,yt=F[N],Ut=N==="y"?"height":"width",on=yt+P[vt],Bt=yt-P[mn],Oe=[Ho,Wo].indexOf(E)!==-1,et=(st=Y?.[N])!=null?st:0,qt=Oe?on:yt-B[Ut]-z[Ut]-et+q.altAxis,Gt=Oe?yt+B[Ut]+z[Ut]-et-q.altAxis:Bt,Ee=y&&Oe?Mae(qt,yt,Gt):Xg(y?qt:on,yt,y?Gt:Bt);F[N]=Ee,ge[N]=Ee-yt}t.modifiersData[r]=ge}}const use={name:"preventOverflow",enabled:!0,phase:"main",fn:lse,requiresIfExists:["offset"]};function cse(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function dse(e){return e===rs(e)||!Ya(e)?K9(e):cse(e)}function fse(e){var t=e.getBoundingClientRect(),n=L1(t.width)/e.offsetWidth||1,r=L1(t.height)/e.offsetHeight||1;return n!==1||r!==1}function hse(e,t,n){n===void 0&&(n=!1);var r=Ya(t),i=Ya(t)&&fse(t),o=Cd(t),a=A1(e,i,n),s={scrollLeft:0,scrollTop:0},l={x:0,y:0};return(r||!r&&!n)&&((Ol(t)!=="body"||Y9(o))&&(s=dse(t)),Ya(t)?(l=A1(t,!0),l.x+=t.clientLeft,l.y+=t.clientTop):o&&(l.x=Z9(o))),{x:a.left+s.scrollLeft-l.x,y:a.top+s.scrollTop-l.y,width:a.width,height:a.height}}function pse(e){var t=new Map,n=new Set,r=[];e.forEach(function(o){t.set(o.name,o)});function i(o){n.add(o.name);var a=[].concat(o.requires||[],o.requiresIfExists||[]);a.forEach(function(s){if(!n.has(s)){var l=t.get(s);l&&i(l)}}),r.push(o)}return e.forEach(function(o){n.has(o.name)||i(o)}),r}function gse(e){var t=pse(e);return Eae.reduce(function(n,r){return n.concat(t.filter(function(i){return i.phase===r}))},[])}function mse(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function vse(e){var t=e.reduce(function(n,r){var i=n[r.name];return n[r.name]=i?Object.assign({},i,r,{options:Object.assign({},i.options,r.options),data:Object.assign({},i.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var ET={placement:"bottom",modifiers:[],strategy:"absolute"};function PT(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),Zr={arrowShadowColor:yp("--popper-arrow-shadow-color"),arrowSize:yp("--popper-arrow-size","8px"),arrowSizeHalf:yp("--popper-arrow-size-half"),arrowBg:yp("--popper-arrow-bg"),transformOrigin:yp("--popper-transform-origin"),arrowOffset:yp("--popper-arrow-offset")};function Sse(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var wse={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},Cse=e=>wse[e],TT={scroll:!0,resize:!0};function _se(e){let t;return typeof e=="object"?t={enabled:!0,options:{...TT,...e}}:t={enabled:e,options:TT},t}var kse={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},Ese={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{LT(e)},effect:({state:e})=>()=>{LT(e)}},LT=e=>{e.elements.popper.style.setProperty(Zr.transformOrigin.var,Cse(e.placement))},Pse={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{Tse(e)}},Tse=e=>{var t;if(!e.placement)return;const n=Lse(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:Zr.arrowSize.varRef,height:Zr.arrowSize.varRef,zIndex:-1});const r={[Zr.arrowSizeHalf.var]:`calc(${Zr.arrowSize.varRef} / 2)`,[Zr.arrowOffset.var]:`calc(${Zr.arrowSizeHalf.varRef} * -1)`};for(const i in r)e.elements.arrow.style.setProperty(i,r[i])}},Lse=e=>{if(e.startsWith("top"))return{property:"bottom",value:Zr.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:Zr.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:Zr.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:Zr.arrowOffset.varRef}},Ase={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{AT(e)},effect:({state:e})=>()=>{AT(e)}},AT=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:Zr.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:Sse(e.placement)})},Ise={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},Mse={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function Rse(e,t="ltr"){var n;const r=((n=Ise[e])==null?void 0:n[t])||e;return t==="ltr"?r:Mse[e]??r}function YD(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:i="absolute",arrowPadding:o=8,eventListeners:a=!0,offset:s,gutter:l=8,flip:d=!0,boundary:p="clippingParents",preventOverflow:g=!0,matchWidth:m,direction:y="ltr"}=e,b=C.exports.useRef(null),w=C.exports.useRef(null),P=C.exports.useRef(null),E=Rse(r,y),k=C.exports.useRef(()=>{}),L=C.exports.useCallback(()=>{var q;!t||!b.current||!w.current||((q=k.current)==null||q.call(k),P.current=bse(b.current,w.current,{placement:E,modifiers:[Ase,Pse,Ese,{...kse,enabled:!!m},{name:"eventListeners",..._se(a)},{name:"arrow",options:{padding:o}},{name:"offset",options:{offset:s??[0,l]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!g,options:{boundary:p}},...n??[]],strategy:i}),P.current.forceUpdate(),k.current=P.current.destroy)},[E,t,n,m,a,o,s,l,d,g,p,i]);C.exports.useEffect(()=>()=>{var q;!b.current&&!w.current&&((q=P.current)==null||q.destroy(),P.current=null)},[]);const M=C.exports.useCallback(q=>{b.current=q,L()},[L]),N=C.exports.useCallback((q={},Y=null)=>({...q,ref:Fn(M,Y)}),[M]),F=C.exports.useCallback(q=>{w.current=q,L()},[L]),B=C.exports.useCallback((q={},Y=null)=>({...q,ref:Fn(F,Y),style:{...q.style,position:i,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[i,F,m]),z=C.exports.useCallback((q={},Y=null)=>{const{size:ge,shadowColor:ce,bg:ve,style:we,...be}=q;return{...be,ref:Y,"data-popper-arrow":"",style:Ose(q)}},[]),j=C.exports.useCallback((q={},Y=null)=>({...q,ref:Y,"data-popper-arrow-inner":""}),[]);return{update(){var q;(q=P.current)==null||q.update()},forceUpdate(){var q;(q=P.current)==null||q.forceUpdate()},transformOrigin:Zr.transformOrigin.varRef,referenceRef:M,popperRef:F,getPopperProps:B,getArrowProps:z,getArrowInnerProps:j,getReferenceProps:N}}function Ose(e){const{size:t,shadowColor:n,bg:r,style:i}=e,o={...i,position:"absolute"};return t&&(o["--popper-arrow-size"]=t),n&&(o["--popper-arrow-shadow-color"]=n),r&&(o["--popper-arrow-bg"]=r),o}function XD(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=kr(n),a=kr(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:s,p=r!==void 0,g=i??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{p||l(!1),a?.()},[p,a]),y=C.exports.useCallback(()=>{p||l(!0),o?.()},[p,o]),b=C.exports.useCallback(()=>{d?m():y()},[d,y,m]);function w(E={}){return{...E,"aria-expanded":d,"aria-controls":g,onClick(k){var L;(L=E.onClick)==null||L.call(E,k),b()}}}function P(E={}){return{...E,hidden:!d,id:g}}return{isOpen:d,onOpen:y,onClose:m,onToggle:b,isControlled:p,getButtonProps:w,getDisclosureProps:P}}function QD(e){const{wasSelected:t,enabled:n,isSelected:r,mode:i="unmount"}=e;return!!(!n||r||i==="keepMounted"&&t)}var[Nse,Dse]=kn({strict:!1,name:"PortalManagerContext"});function JD(e){const{children:t,zIndex:n}=e;return S(Nse,{value:{zIndex:n},children:t})}JD.displayName="PortalManager";var[ez,zse]=kn({strict:!1,name:"PortalContext"}),X9="chakra-portal",Fse=".chakra-portal",Bse=e=>S("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),$se=e=>{const{appendToParentPortal:t,children:n}=e,[r,i]=C.exports.useState(null),o=C.exports.useRef(null),[,a]=C.exports.useState({});C.exports.useEffect(()=>a({}),[]);const s=zse(),l=Dse();kl(()=>{if(!r)return;const p=r.ownerDocument,g=t?s??p.body:p.body;if(!g)return;o.current=p.createElement("div"),o.current.className=X9,g.appendChild(o.current),a({});const m=o.current;return()=>{g.contains(m)&&g.removeChild(m)}},[r]);const d=l?.zIndex?S(Bse,{zIndex:l?.zIndex,children:n}):n;return o.current?Bl.exports.createPortal(S(ez,{value:o.current,children:d}),o.current):S("span",{ref:p=>{p&&i(p)}})},Hse=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,i=n.current,o=i??(typeof window<"u"?document.body:void 0),a=C.exports.useMemo(()=>{const l=i?.ownerDocument.createElement("div");return l&&(l.className=X9),l},[i]),[,s]=C.exports.useState({});return kl(()=>s({}),[]),kl(()=>{if(!(!a||!o))return o.appendChild(a),()=>{o.removeChild(a)}},[a,o]),o&&a?Bl.exports.createPortal(S(ez,{value:r?a:null,children:t}),a):null};function xh(e){const{containerRef:t,...n}=e;return t?S(Hse,{containerRef:t,...n}):S($se,{...n})}xh.defaultProps={appendToParentPortal:!0};xh.className=X9;xh.selector=Fse;xh.displayName="Portal";var Wse=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},xp=new WeakMap,Q2=new WeakMap,J2={},Kb=0,Vse=function(e,t,n,r){var i=Array.isArray(e)?e:[e];J2[n]||(J2[n]=new WeakMap);var o=J2[n],a=[],s=new Set,l=new Set(i),d=function(g){!g||s.has(g)||(s.add(g),d(g.parentNode))};i.forEach(d);var p=function(g){!g||l.has(g)||Array.prototype.forEach.call(g.children,function(m){if(s.has(m))p(m);else{var y=m.getAttribute(r),b=y!==null&&y!=="false",w=(xp.get(m)||0)+1,P=(o.get(m)||0)+1;xp.set(m,w),o.set(m,P),a.push(m),w===1&&b&&Q2.set(m,!0),P===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return p(t),s.clear(),Kb++,function(){a.forEach(function(g){var m=xp.get(g)-1,y=o.get(g)-1;xp.set(g,m),o.set(g,y),m||(Q2.has(g)||g.removeAttribute(r),Q2.delete(g)),y||g.removeAttribute(n)}),Kb--,Kb||(xp=new WeakMap,xp=new WeakMap,Q2=new WeakMap,J2={})}},tz=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),i=t||Wse(e);return i?(r.push.apply(r,Array.from(i.querySelectorAll("[aria-live]"))),Vse(r,i,n,"aria-hidden")):function(){return null}};function Use(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}function R6(){return R6=Object.assign?Object.assign.bind():function(e){for(var t=1;t=0}).sort(ple)},gle=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],t7=gle.join(","),mle="".concat(t7,", [data-focus-guard]"),Sz=function(e,t){var n;return $l(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,i){return r.concat(i.matches(t?mle:t7)?[i]:[],Sz(i))},[])},n7=function(e,t){return e.reduce(function(n,r){return n.concat(Sz(r,t),r.parentNode?$l(r.parentNode.querySelectorAll(t7)).filter(function(i){return i===r}):[])},[])},vle=function(e){var t=e.querySelectorAll("[".concat(Yse,"]"));return $l(t).map(function(n){return n7([n])}).reduce(function(n,r){return n.concat(r)},[])},r7=function(e,t){return $l(e).filter(function(n){return gz(t,n)}).filter(function(n){return dle(n)})},IT=function(e,t){return t===void 0&&(t=new Map),$l(e).filter(function(n){return mz(t,n)})},z6=function(e,t,n){return bz(r7(n7(e,n),t),!0,n)},MT=function(e,t){return bz(r7(n7(e),t),!1)},yle=function(e,t){return r7(vle(e),t)},Wm=function(e,t){return(e.shadowRoot?Wm(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||$l(e.children).some(function(n){return Wm(n,t)})},xle=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(i),(o&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(a,s){return!t.has(s)})},wz=function(e){return e.parentNode?wz(e.parentNode):e},i7=function(e){var t=D6(e);return t.filter(Boolean).reduce(function(n,r){var i=r.getAttribute(O6);return n.push.apply(n,i?xle($l(wz(r).querySelectorAll("[".concat(O6,'="').concat(i,'"]:not([').concat(iz,'="disabled"])')))):[r]),n},[])},Cz=function(e){return e.activeElement?e.activeElement.shadowRoot?Cz(e.activeElement.shadowRoot):e.activeElement:void 0},o7=function(){return document.activeElement?document.activeElement.shadowRoot?Cz(document.activeElement.shadowRoot):document.activeElement:void 0},ble=function(e){return e===document.activeElement},Sle=function(e){return Boolean($l(e.querySelectorAll("iframe")).some(function(t){return ble(t)}))},_z=function(e){var t=document&&o7();return!t||t.dataset&&t.dataset.focusGuard?!1:i7(e).some(function(n){return Wm(n,t)||Sle(n)})},wle=function(){var e=document&&o7();return e?$l(document.querySelectorAll("[".concat(Zse,"]"))).some(function(t){return Wm(t,e)}):!1},Cle=function(e,t){return t.filter(xz).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},a7=function(e,t){return xz(e)&&e.name?Cle(e,t):e},_le=function(e){var t=new Set;return e.forEach(function(n){return t.add(a7(n,e))}),e.filter(function(n){return t.has(n)})},RT=function(e){return e[0]&&e.length>1?a7(e[0],e):e[0]},OT=function(e,t){return e.length>1?e.indexOf(a7(e[t],e)):t},kz="NEW_FOCUS",kle=function(e,t,n,r){var i=e.length,o=e[0],a=e[i-1],s=e7(n);if(!(n&&e.indexOf(n)>=0)){var l=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):l,p=r?e.indexOf(r):-1,g=l-d,m=t.indexOf(o),y=t.indexOf(a),b=_le(t),w=n!==void 0?b.indexOf(n):-1,P=w-(r?b.indexOf(r):l),E=OT(e,0),k=OT(e,i-1);if(l===-1||p===-1)return kz;if(!g&&p>=0)return p;if(l<=m&&s&&Math.abs(g)>1)return k;if(l>=y&&s&&Math.abs(g)>1)return E;if(g&&Math.abs(P)>1)return p;if(l<=m)return k;if(l>y)return E;if(g)return Math.abs(g)>1?p:(i+p+g)%i}},F6=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&F6(e.parentNode.host||e.parentNode,t),t},Yb=function(e,t){for(var n=F6(e),r=F6(t),i=0;i=0)return o}return!1},Ez=function(e,t,n){var r=D6(e),i=D6(t),o=r[0],a=!1;return i.filter(Boolean).forEach(function(s){a=Yb(a||s,s)||a,n.filter(Boolean).forEach(function(l){var d=Yb(o,l);d&&(!a||Wm(d,a)?a=d:a=Yb(d,a))})}),a},Ele=function(e,t){return e.reduce(function(n,r){return n.concat(yle(r,t))},[])},Ple=function(e){return function(t){var n;return t.autofocus||!!(!((n=vz(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},Tle=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(hle)},Lle=function(e,t){var n=document&&o7(),r=i7(e).filter(g4),i=Ez(n||e,e,r),o=new Map,a=MT(r,o),s=z6(r,o).filter(function(y){var b=y.node;return g4(b)});if(!(!s[0]&&(s=a,!s[0]))){var l=MT([i],o).map(function(y){var b=y.node;return b}),d=Tle(l,s),p=d.map(function(y){var b=y.node;return b}),g=kle(p,l,n,t);if(g===kz){var m=IT(a.map(function(y){var b=y.node;return b})).filter(Ple(Ele(r,o)));return{node:m&&m.length?RT(m):RT(IT(p))}}return g===void 0?g:d[g]}},Ale=function(e){var t=i7(e).filter(g4),n=Ez(e,e,t),r=new Map,i=z6([n],r,!0),o=z6(t,r).filter(function(a){var s=a.node;return g4(s)}).map(function(a){var s=a.node;return s});return i.map(function(a){var s=a.node,l=a.index;return{node:s,index:l,lockItem:o.indexOf(s)>=0,guard:e7(s)}})},Ile=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},Xb=0,Qb=!1,Mle=function(e,t,n){n===void 0&&(n={});var r=Lle(e,t);if(!Qb&&r){if(Xb>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),Qb=!0,setTimeout(function(){Qb=!1},1);return}Xb++,Ile(r.node,n.focusOptions),Xb--}};const Pz=Mle;function Tz(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Rle=function(){return document&&document.activeElement===document.body},Ole=function(){return Rle()||wle()},s1=null,qp=null,l1=null,Vm=!1,Nle=function(){return!0},Dle=function(t){return(s1.whiteList||Nle)(t)},zle=function(t,n){l1={observerNode:t,portaledElement:n}},Fle=function(t){return l1&&l1.portaledElement===t};function NT(e,t,n,r){var i=null,o=e;do{var a=r[o];if(a.guard)a.node.dataset.focusAutoGuard&&(i=a);else if(a.lockItem){if(o!==e)return;i=null}else break}while((o+=n)!==t);i&&(i.node.tabIndex=0)}var Ble=function(t){return t&&"current"in t?t.current:t},$le=function(t){return t?Boolean(Vm):Vm==="meanwhile"},Hle=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},Wle=function(t,n){return n.some(function(r){return Hle(t,r,r)})},m4=function(){var t=!1;if(s1){var n=s1,r=n.observed,i=n.persistentFocus,o=n.autoFocus,a=n.shards,s=n.crossFrame,l=n.focusOptions,d=r||l1&&l1.portaledElement,p=document&&document.activeElement;if(d){var g=[d].concat(a.map(Ble).filter(Boolean));if((!p||Dle(p))&&(i||$le(s)||!Ole()||!qp&&o)&&(d&&!(_z(g)||p&&Wle(p,g)||Fle(p))&&(document&&!qp&&p&&!o?(p.blur&&p.blur(),document.body.focus()):(t=Pz(g,qp,{focusOptions:l}),l1={})),Vm=!1,qp=document&&document.activeElement),document){var m=document&&document.activeElement,y=Ale(g),b=y.map(function(w){var P=w.node;return P}).indexOf(m);b>-1&&(y.filter(function(w){var P=w.guard,E=w.node;return P&&E.dataset.focusAutoGuard}).forEach(function(w){var P=w.node;return P.removeAttribute("tabIndex")}),NT(b,y.length,1,y),NT(b,-1,-1,y))}}}return t},Lz=function(t){m4()&&t&&(t.stopPropagation(),t.preventDefault())},s7=function(){return Tz(m4)},Vle=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||zle(r,n)},Ule=function(){return null},Az=function(){Vm="just",setTimeout(function(){Vm="meanwhile"},0)},Gle=function(){document.addEventListener("focusin",Lz),document.addEventListener("focusout",s7),window.addEventListener("blur",Az)},jle=function(){document.removeEventListener("focusin",Lz),document.removeEventListener("focusout",s7),window.removeEventListener("blur",Az)};function qle(e){return e.filter(function(t){var n=t.disabled;return!n})}function Kle(e){var t=e.slice(-1)[0];t&&!s1&&Gle();var n=s1,r=n&&t&&t.id===n.id;s1=t,n&&!r&&(n.onDeactivation(),e.filter(function(i){var o=i.id;return o===n.id}).length||n.returnFocus(!t)),t?(qp=null,(!r||n.observed!==t.observed)&&t.onActivation(),m4(),Tz(m4)):(jle(),qp=null)}cz.assignSyncMedium(Vle);dz.assignMedium(s7);tle.assignMedium(function(e){return e({moveFocusInside:Pz,focusInside:_z})});const Zle=ale(qle,Kle)(Ule);var Iz=C.exports.forwardRef(function(t,n){return S(fz,{sideCar:Zle,ref:n,...t})}),Mz=fz.propTypes||{};Mz.sideCar;Use(Mz,["sideCar"]);Iz.propTypes={};const Yle=Iz;var Rz=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:i,children:o,isDisabled:a,autoFocus:s,persistentFocus:l,lockFocusAcrossFrames:d}=e,p=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&pae(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),g=C.exports.useCallback(()=>{var y;(y=n?.current)==null||y.focus()},[n]);return S(Yle,{crossFrame:d,persistentFocus:l,autoFocus:s,disabled:a,onActivation:p,onDeactivation:g,returnFocus:i&&!n,children:o})};Rz.displayName="FocusLock";var t3="right-scroll-bar-position",n3="width-before-scroll-bar",Xle="with-scroll-bars-hidden",Qle="--removed-body-scroll-bar-size",Oz=lz(),Jb=function(){},G5=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:Jb,onWheelCapture:Jb,onTouchMoveCapture:Jb}),i=r[0],o=r[1],a=e.forwardProps,s=e.children,l=e.className,d=e.removeScrollBar,p=e.enabled,g=e.shards,m=e.sideCar,y=e.noIsolation,b=e.inert,w=e.allowPinchZoom,P=e.as,E=P===void 0?"div":P,k=T5(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),L=m,M=oz([n,t]),N=bl(bl({},k),i);return oe(Bn,{children:[p&&S(L,{sideCar:Oz,removeScrollBar:d,shards:g,noIsolation:y,inert:b,setCallbacks:o,allowPinchZoom:!!w,lockRef:n}),a?C.exports.cloneElement(C.exports.Children.only(s),bl(bl({},N),{ref:M})):S(E,{...bl({},N,{className:l,ref:M}),children:s})]})});G5.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};G5.classNames={fullWidth:n3,zeroRight:t3};var Jle=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function eue(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=Jle();return t&&e.setAttribute("nonce",t),e}function tue(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function nue(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var rue=function(){var e=0,t=null;return{add:function(n){e==0&&(t=eue())&&(tue(t,n),nue(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},iue=function(){var e=rue();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},Nz=function(){var e=iue(),t=function(n){var r=n.styles,i=n.dynamic;return e(r,i),null};return t},oue={left:0,top:0,right:0,gap:0},eS=function(e){return parseInt(e||"",10)||0},aue=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],i=t[e==="padding"?"paddingRight":"marginRight"];return[eS(n),eS(r),eS(i)]},sue=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return oue;var t=aue(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},lue=Nz(),uue=function(e,t,n,r){var i=e.left,o=e.top,a=e.right,s=e.gap;return n===void 0&&(n="margin"),` + .`.concat(Xle,` { + overflow: hidden `).concat(r,`; + padding-right: `).concat(s,"px ").concat(r,`; + } + body { + overflow: hidden `).concat(r,`; + overscroll-behavior: contain; + `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` + padding-left: `.concat(i,`px; + padding-top: `).concat(o,`px; + padding-right: `).concat(a,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(s,"px ").concat(r,`; + `),n==="padding"&&"padding-right: ".concat(s,"px ").concat(r,";")].filter(Boolean).join(""),` + } + + .`).concat(t3,` { + right: `).concat(s,"px ").concat(r,`; + } + + .`).concat(n3,` { + margin-right: `).concat(s,"px ").concat(r,`; + } + + .`).concat(t3," .").concat(t3,` { + right: 0 `).concat(r,`; + } + + .`).concat(n3," .").concat(n3,` { + margin-right: 0 `).concat(r,`; + } + + body { + `).concat(Qle,": ").concat(s,`px; + } +`)},cue=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,i=r===void 0?"margin":r,o=C.exports.useMemo(function(){return sue(i)},[i]);return S(lue,{styles:uue(o,!t,i,n?"":"!important")})},B6=!1;if(typeof window<"u")try{var ey=Object.defineProperty({},"passive",{get:function(){return B6=!0,!0}});window.addEventListener("test",ey,ey),window.removeEventListener("test",ey,ey)}catch{B6=!1}var bp=B6?{passive:!1}:!1,due=function(e){return e.tagName==="TEXTAREA"},Dz=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!due(e)&&n[t]==="visible")},fue=function(e){return Dz(e,"overflowY")},hue=function(e){return Dz(e,"overflowX")},DT=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=zz(e,n);if(r){var i=Fz(e,n),o=i[1],a=i[2];if(o>a)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},pue=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},gue=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},zz=function(e,t){return e==="v"?fue(t):hue(t)},Fz=function(e,t){return e==="v"?pue(t):gue(t)},mue=function(e,t){return e==="h"&&t==="rtl"?-1:1},vue=function(e,t,n,r,i){var o=mue(e,window.getComputedStyle(t).direction),a=o*r,s=n.target,l=t.contains(s),d=!1,p=a>0,g=0,m=0;do{var y=Fz(e,s),b=y[0],w=y[1],P=y[2],E=w-P-o*b;(b||E)&&zz(e,s)&&(g+=E,m+=b),s=s.parentNode}while(!l&&s!==document.body||l&&(t.contains(s)||t===s));return(p&&(i&&g===0||!i&&a>g)||!p&&(i&&m===0||!i&&-a>m))&&(d=!0),d},ty=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},zT=function(e){return[e.deltaX,e.deltaY]},FT=function(e){return e&&"current"in e?e.current:e},yue=function(e,t){return e[0]===t[0]&&e[1]===t[1]},xue=function(e){return` + .block-interactivity-`.concat(e,` {pointer-events: none;} + .allow-interactivity-`).concat(e,` {pointer-events: all;} +`)},bue=0,Sp=[];function Sue(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),i=C.exports.useState(bue++)[0],o=C.exports.useState(function(){return Nz()})[0],a=C.exports.useRef(e);C.exports.useEffect(function(){a.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(i));var w=o6([e.lockRef.current],(e.shards||[]).map(FT),!0).filter(Boolean);return w.forEach(function(P){return P.classList.add("allow-interactivity-".concat(i))}),function(){document.body.classList.remove("block-interactivity-".concat(i)),w.forEach(function(P){return P.classList.remove("allow-interactivity-".concat(i))})}}},[e.inert,e.lockRef.current,e.shards]);var s=C.exports.useCallback(function(w,P){if("touches"in w&&w.touches.length===2)return!a.current.allowPinchZoom;var E=ty(w),k=n.current,L="deltaX"in w?w.deltaX:k[0]-E[0],M="deltaY"in w?w.deltaY:k[1]-E[1],N,F=w.target,B=Math.abs(L)>Math.abs(M)?"h":"v";if("touches"in w&&B==="h"&&F.type==="range")return!1;var z=DT(B,F);if(!z)return!0;if(z?N=B:(N=B==="v"?"h":"v",z=DT(B,F)),!z)return!1;if(!r.current&&"changedTouches"in w&&(L||M)&&(r.current=N),!N)return!0;var j=r.current||N;return vue(j,P,w,j==="h"?L:M,!0)},[]),l=C.exports.useCallback(function(w){var P=w;if(!(!Sp.length||Sp[Sp.length-1]!==o)){var E="deltaY"in P?zT(P):ty(P),k=t.current.filter(function(N){return N.name===P.type&&N.target===P.target&&yue(N.delta,E)})[0];if(k&&k.should){P.cancelable&&P.preventDefault();return}if(!k){var L=(a.current.shards||[]).map(FT).filter(Boolean).filter(function(N){return N.contains(P.target)}),M=L.length>0?s(P,L[0]):!a.current.noIsolation;M&&P.cancelable&&P.preventDefault()}}},[]),d=C.exports.useCallback(function(w,P,E,k){var L={name:w,delta:P,target:E,should:k};t.current.push(L),setTimeout(function(){t.current=t.current.filter(function(M){return M!==L})},1)},[]),p=C.exports.useCallback(function(w){n.current=ty(w),r.current=void 0},[]),g=C.exports.useCallback(function(w){d(w.type,zT(w),w.target,s(w,e.lockRef.current))},[]),m=C.exports.useCallback(function(w){d(w.type,ty(w),w.target,s(w,e.lockRef.current))},[]);C.exports.useEffect(function(){return Sp.push(o),e.setCallbacks({onScrollCapture:g,onWheelCapture:g,onTouchMoveCapture:m}),document.addEventListener("wheel",l,bp),document.addEventListener("touchmove",l,bp),document.addEventListener("touchstart",p,bp),function(){Sp=Sp.filter(function(w){return w!==o}),document.removeEventListener("wheel",l,bp),document.removeEventListener("touchmove",l,bp),document.removeEventListener("touchstart",p,bp)}},[]);var y=e.removeScrollBar,b=e.inert;return oe(Bn,{children:[b?S(o,{styles:xue(i)}):null,y?S(cue,{gapMode:"margin"}):null]})}const wue=ele(Oz,Sue);var Bz=C.exports.forwardRef(function(e,t){return S(G5,{...bl({},e,{ref:t,sideCar:wue})})});Bz.classNames=G5.classNames;const $z=Bz;var bh=(...e)=>e.filter(Boolean).join(" ");function Sg(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Cue=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},$6=new Cue;function _ue(e,t){C.exports.useEffect(()=>(t&&$6.add(e),()=>{$6.remove(e)}),[t,e])}function kue(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:i=!0,closeOnEsc:o=!0,useInert:a=!0,onOverlayClick:s,onEsc:l}=e,d=C.exports.useRef(null),p=C.exports.useRef(null),[g,m,y]=Pue(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Eue(d,t&&a),_ue(d,t);const b=C.exports.useRef(null),w=C.exports.useCallback(z=>{b.current=z.target},[]),P=C.exports.useCallback(z=>{z.key==="Escape"&&(z.stopPropagation(),o&&n?.(),l?.())},[o,n,l]),[E,k]=C.exports.useState(!1),[L,M]=C.exports.useState(!1),N=C.exports.useCallback((z={},j=null)=>({role:"dialog",...z,ref:Fn(j,d),id:g,tabIndex:-1,"aria-modal":!0,"aria-labelledby":E?m:void 0,"aria-describedby":L?y:void 0,onClick:Sg(z.onClick,q=>q.stopPropagation())}),[y,L,g,m,E]),F=C.exports.useCallback(z=>{z.stopPropagation(),b.current===z.target&&(!$6.isTopModal(d)||(i&&n?.(),s?.()))},[n,i,s]),B=C.exports.useCallback((z={},j=null)=>({...z,ref:Fn(j,p),onClick:Sg(z.onClick,F),onKeyDown:Sg(z.onKeyDown,P),onMouseDown:Sg(z.onMouseDown,w)}),[P,w,F]);return{isOpen:t,onClose:n,headerId:m,bodyId:y,setBodyMounted:M,setHeaderMounted:k,dialogRef:d,overlayRef:p,getDialogProps:N,getDialogContainerProps:B}}function Eue(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return tz(e.current)},[t,e,n])}function Pue(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(i=>`${i}-${r}`),[r,t])}var[Tue,Sh]=kn({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Lue,fd]=kn({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),M1=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m,onCloseComplete:y}=e,b=Bi("Modal",e),P={...kue(e),autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m};return S(Lue,{value:P,children:S(Tue,{value:b,children:S(Hu,{onExitComplete:y,children:P.isOpen&&S(xh,{...t,children:n})})})})};M1.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};M1.displayName="Modal";var v4=Le((e,t)=>{const{className:n,...r}=e,{bodyId:i,setBodyMounted:o}=fd();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=bh("chakra-modal__body",n),s=Sh();return le.createElement(Ce.div,{ref:t,className:a,id:i,...r,__css:s.body})});v4.displayName="ModalBody";var l7=Le((e,t)=>{const{onClick:n,className:r,...i}=e,{onClose:o}=fd(),a=bh("chakra-modal__close-btn",r),s=Sh();return S(W5,{ref:t,__css:s.closeButton,className:a,onClick:Sg(n,l=>{l.stopPropagation(),o()}),...i})});l7.displayName="ModalCloseButton";function Hz(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:i,blockScrollOnMount:o,allowPinchZoom:a,finalFocusRef:s,returnFocusOnClose:l,preserveScrollBarGap:d,lockFocusAcrossFrames:p}=fd(),[g,m]=w9();return C.exports.useEffect(()=>{!g&&m&&setTimeout(m)},[g,m]),S(Rz,{autoFocus:t,isDisabled:!n,initialFocusRef:i,finalFocusRef:s,restoreFocus:l,contentRef:r,lockFocusAcrossFrames:p,children:S($z,{removeScrollBar:!d,allowPinchZoom:a,enabled:o,forwardProps:!0,children:e.children})})}var Aue={slideInBottom:{...w6,custom:{offsetY:16,reverse:!0}},slideInRight:{...w6,custom:{offsetX:16,reverse:!0}},scale:{...rD,custom:{initialScale:.95,reverse:!0}},none:{}},Iue=Ce(ns.section),Wz=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,i=Aue[n];return S(Iue,{ref:t,...i,...r})});Wz.displayName="ModalTransition";var Um=Le((e,t)=>{const{className:n,children:r,containerProps:i,...o}=e,{getDialogProps:a,getDialogContainerProps:s}=fd(),l=a(o,t),d=s(i),p=bh("chakra-modal__content",n),g=Sh(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...g.dialog},y={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...g.dialogContainer},{motionPreset:b}=fd();return le.createElement(Hz,null,le.createElement(Ce.div,{...d,className:"chakra-modal__content-container",tabIndex:-1,__css:y},S(Wz,{preset:b,className:p,...l,__css:m,children:r})))});Um.displayName="ModalContent";var u7=Le((e,t)=>{const{className:n,...r}=e,i=bh("chakra-modal__footer",n),o=Sh(),a={display:"flex",alignItems:"center",justifyContent:"flex-end",...o.footer};return le.createElement(Ce.footer,{ref:t,...r,__css:a,className:i})});u7.displayName="ModalFooter";var c7=Le((e,t)=>{const{className:n,...r}=e,{headerId:i,setHeaderMounted:o}=fd();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=bh("chakra-modal__header",n),s=Sh(),l={flex:0,...s.header};return le.createElement(Ce.header,{ref:t,className:a,id:i,...r,__css:l})});c7.displayName="ModalHeader";var Mue=Ce(ns.div),Gm=Le((e,t)=>{const{className:n,transition:r,...i}=e,o=bh("chakra-modal__overlay",n),a=Sh(),s={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...a.overlay},{motionPreset:l}=fd();return S(Mue,{...l==="none"?{}:nD,__css:s,ref:t,className:o,...i})});Gm.displayName="ModalOverlay";function Rue(e){const{leastDestructiveRef:t,...n}=e;return S(M1,{...n,initialFocusRef:t})}var Oue=Le((e,t)=>S(Um,{ref:t,role:"alertdialog",...e})),[_7e,Nue]=kn(),Due=Ce(iD),zue=Le((e,t)=>{const{className:n,children:r,...i}=e,{getDialogProps:o,getDialogContainerProps:a,isOpen:s}=fd(),l=o(i,t),d=a(),p=bh("chakra-modal__content",n),g=Sh(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...g.dialog},y={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...g.dialogContainer},{placement:b}=Nue();return le.createElement(Ce.div,{...d,className:"chakra-modal__content-container",__css:y},S(Hz,{children:S(Due,{direction:b,in:s,className:p,...l,__css:m,children:r})}))});zue.displayName="DrawerContent";function Fue(e,t){const n=kr(e);C.exports.useEffect(()=>{let r=null;const i=()=>n();return t!==null&&(r=window.setInterval(i,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var Vz=(...e)=>e.filter(Boolean).join(" "),tS=e=>e?!0:void 0;function ll(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Bue=e=>S(_a,{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),$ue=e=>S(_a,{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function BT(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const i=e.current.ownerDocument.defaultView??window,o=Array.isArray(t)?t:[t],a=new i.MutationObserver(s=>{for(const l of s)l.type==="attributes"&&l.attributeName&&o.includes(l.attributeName)&&n(l)});return a.observe(e.current,{attributes:!0,attributeFilter:o}),()=>a.disconnect()})}var Hue=50,$T=300;function Wue(e,t){const[n,r]=C.exports.useState(!1),[i,o]=C.exports.useState(null),[a,s]=C.exports.useState(!0),l=C.exports.useRef(null),d=()=>clearTimeout(l.current);Fue(()=>{i==="increment"&&e(),i==="decrement"&&t()},n?Hue:null);const p=C.exports.useCallback(()=>{a&&e(),l.current=setTimeout(()=>{s(!1),r(!0),o("increment")},$T)},[e,a]),g=C.exports.useCallback(()=>{a&&t(),l.current=setTimeout(()=>{s(!1),r(!0),o("decrement")},$T)},[t,a]),m=C.exports.useCallback(()=>{s(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:p,down:g,stop:m,isSpinning:n}}var Vue=/^[Ee0-9+\-.]$/;function Uue(e){return Vue.test(e)}function Gue(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function jue(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:i=Number.MIN_SAFE_INTEGER,max:o=Number.MAX_SAFE_INTEGER,step:a=1,isReadOnly:s,isDisabled:l,isRequired:d,isInvalid:p,pattern:g="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:y,id:b,onChange:w,precision:P,name:E,"aria-describedby":k,"aria-label":L,"aria-labelledby":M,onFocus:N,onBlur:F,onInvalid:B,getAriaValueText:z,isValidCharacter:j,format:q,parse:Y,...ge}=e,ce=kr(N),ve=kr(F),we=kr(B),be=kr(j??Uue),J=kr(z),U=ooe(e),{update:ee,increment:Q,decrement:W}=U,[ie,de]=C.exports.useState(!1),Se=!(s||l),De=C.exports.useRef(null),Me=C.exports.useRef(null),Ue=C.exports.useRef(null),ke=C.exports.useRef(null),Ve=C.exports.useCallback(Ee=>Ee.split("").filter(be).join(""),[be]),ot=C.exports.useCallback(Ee=>Y?.(Ee)??Ee,[Y]),pt=C.exports.useCallback(Ee=>(q?.(Ee)??Ee).toString(),[q]);E1(()=>{(U.valueAsNumber>o||U.valueAsNumber{if(!De.current)return;if(De.current.value!=U.value){const Tt=ot(De.current.value);U.setValue(Ve(Tt))}},[ot,Ve]);const Vt=C.exports.useCallback((Ee=a)=>{Se&&Q(Ee)},[Q,Se,a]),Ft=C.exports.useCallback((Ee=a)=>{Se&&W(Ee)},[W,Se,a]),Re=Wue(Vt,Ft);BT(Ue,"disabled",Re.stop,Re.isSpinning),BT(ke,"disabled",Re.stop,Re.isSpinning);const tt=C.exports.useCallback(Ee=>{if(Ee.nativeEvent.isComposing)return;const en=ot(Ee.currentTarget.value);ee(Ve(en)),Me.current={start:Ee.currentTarget.selectionStart,end:Ee.currentTarget.selectionEnd}},[ee,Ve,ot]),mt=C.exports.useCallback(Ee=>{var Tt;ce?.(Ee),Me.current&&(Ee.target.selectionStart=Me.current.start??((Tt=Ee.currentTarget.value)==null?void 0:Tt.length),Ee.currentTarget.selectionEnd=Me.current.end??Ee.currentTarget.selectionStart)},[ce]),st=C.exports.useCallback(Ee=>{if(Ee.nativeEvent.isComposing)return;Gue(Ee,be)||Ee.preventDefault();const Tt=vt(Ee)*a,en=Ee.key,je={ArrowUp:()=>Vt(Tt),ArrowDown:()=>Ft(Tt),Home:()=>ee(i),End:()=>ee(o)}[en];je&&(Ee.preventDefault(),je(Ee))},[be,a,Vt,Ft,ee,i,o]),vt=Ee=>{let Tt=1;return(Ee.metaKey||Ee.ctrlKey)&&(Tt=.1),Ee.shiftKey&&(Tt=10),Tt},mn=C.exports.useMemo(()=>{const Ee=J?.(U.value);if(Ee!=null)return Ee;const Tt=U.value.toString();return Tt||void 0},[U.value,J]),yt=C.exports.useCallback(()=>{let Ee=U.value;Ee!==""&&(U.valueAsNumbero&&(Ee=o),U.cast(Ee))},[U,o,i]),Ut=C.exports.useCallback(()=>{de(!1),n&&yt()},[n,de,yt]),on=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var Ee;(Ee=De.current)==null||Ee.focus()})},[t]),Bt=C.exports.useCallback(Ee=>{Ee.preventDefault(),Re.up(),on()},[on,Re]),Oe=C.exports.useCallback(Ee=>{Ee.preventDefault(),Re.down(),on()},[on,Re]);T6(()=>De.current,"wheel",Ee=>{var Tt;const Hn=(((Tt=De.current)==null?void 0:Tt.ownerDocument)??document).activeElement===De.current;if(!y||!Hn)return;Ee.preventDefault();const je=vt(Ee)*a,It=Math.sign(Ee.deltaY);It===-1?Vt(je):It===1&&Ft(je)},{passive:!1});const et=C.exports.useCallback((Ee={},Tt=null)=>{const en=l||r&&U.isAtMax;return{...Ee,ref:Fn(Tt,Ue),role:"button",tabIndex:-1,onPointerDown:ll(Ee.onPointerDown,Hn=>{en||Bt(Hn)}),onPointerLeave:ll(Ee.onPointerLeave,Re.stop),onPointerUp:ll(Ee.onPointerUp,Re.stop),disabled:en,"aria-disabled":tS(en)}},[U.isAtMax,r,Bt,Re.stop,l]),qt=C.exports.useCallback((Ee={},Tt=null)=>{const en=l||r&&U.isAtMin;return{...Ee,ref:Fn(Tt,ke),role:"button",tabIndex:-1,onPointerDown:ll(Ee.onPointerDown,Hn=>{en||Oe(Hn)}),onPointerLeave:ll(Ee.onPointerLeave,Re.stop),onPointerUp:ll(Ee.onPointerUp,Re.stop),disabled:en,"aria-disabled":tS(en)}},[U.isAtMin,r,Oe,Re.stop,l]),Gt=C.exports.useCallback((Ee={},Tt=null)=>({name:E,inputMode:m,type:"text",pattern:g,"aria-labelledby":M,"aria-label":L,"aria-describedby":k,id:b,disabled:l,...Ee,readOnly:Ee.readOnly??s,"aria-readonly":Ee.readOnly??s,"aria-required":Ee.required??d,required:Ee.required??d,ref:Fn(De,Tt),value:pt(U.value),role:"spinbutton","aria-valuemin":i,"aria-valuemax":o,"aria-valuenow":Number.isNaN(U.valueAsNumber)?void 0:U.valueAsNumber,"aria-invalid":tS(p??U.isOutOfRange),"aria-valuetext":mn,autoComplete:"off",autoCorrect:"off",onChange:ll(Ee.onChange,tt),onKeyDown:ll(Ee.onKeyDown,st),onFocus:ll(Ee.onFocus,mt,()=>de(!0)),onBlur:ll(Ee.onBlur,ve,Ut)}),[E,m,g,M,L,pt,k,b,l,d,s,p,U.value,U.valueAsNumber,U.isOutOfRange,i,o,mn,tt,st,mt,ve,Ut]);return{value:pt(U.value),valueAsNumber:U.valueAsNumber,isFocused:ie,isDisabled:l,isReadOnly:s,getIncrementButtonProps:et,getDecrementButtonProps:qt,getInputProps:Gt,htmlProps:ge}}var[que,j5]=kn({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Kue,d7]=kn({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),Uz=Le(function(t,n){const r=Bi("NumberInput",t),i=Sn(t),o=O9(i),{htmlProps:a,...s}=jue(o),l=C.exports.useMemo(()=>s,[s]);return le.createElement(Kue,{value:l},le.createElement(que,{value:r},le.createElement(Ce.div,{...a,ref:n,className:Vz("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});Uz.displayName="NumberInput";var Zue=Le(function(t,n){const r=j5();return le.createElement(Ce.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});Zue.displayName="NumberInputStepper";var Gz=Le(function(t,n){const{getInputProps:r}=d7(),i=r(t,n),o=j5();return le.createElement(Ce.input,{...i,className:Vz("chakra-numberinput__field",t.className),__css:{width:"100%",...o.field}})});Gz.displayName="NumberInputField";var jz=Ce("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),qz=Le(function(t,n){const r=j5(),{getDecrementButtonProps:i}=d7(),o=i(t,n);return S(jz,{...o,__css:r.stepper,children:t.children??S(Bue,{})})});qz.displayName="NumberDecrementStepper";var Kz=Le(function(t,n){const{getIncrementButtonProps:r}=d7(),i=r(t,n),o=j5();return S(jz,{...i,__css:o.stepper,children:t.children??S($ue,{})})});Kz.displayName="NumberIncrementStepper";var wv=(...e)=>e.filter(Boolean).join(" ");function Yue(e,...t){return Xue(e)?e(...t):e}var Xue=e=>typeof e=="function";function ul(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Que(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[Jue,wh]=kn({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[ece,Cv]=kn({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),wp={click:"click",hover:"hover"};function tce(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:i,returnFocusOnClose:o=!0,autoFocus:a=!0,arrowSize:s,arrowShadowColor:l,trigger:d=wp.click,openDelay:p=200,closeDelay:g=200,isLazy:m,lazyBehavior:y="unmount",computePositionOnMount:b,...w}=e,{isOpen:P,onClose:E,onOpen:k,onToggle:L}=XD(e),M=C.exports.useRef(null),N=C.exports.useRef(null),F=C.exports.useRef(null),B=C.exports.useRef(!1),z=C.exports.useRef(!1);P&&(z.current=!0);const[j,q]=C.exports.useState(!1),[Y,ge]=C.exports.useState(!1),ce=C.exports.useId(),ve=i??ce,[we,be,J,U]=["popover-trigger","popover-content","popover-header","popover-body"].map(tt=>`${tt}-${ve}`),{referenceRef:ee,getArrowProps:Q,getPopperProps:W,getArrowInnerProps:ie,forceUpdate:de}=YD({...w,enabled:P||!!b}),Se=goe({isOpen:P,ref:F});woe({enabled:P,ref:N}),boe(F,{focusRef:N,visible:P,shouldFocus:o&&d===wp.click}),_oe(F,{focusRef:r,visible:P,shouldFocus:a&&d===wp.click});const De=QD({wasSelected:z.current,enabled:m,mode:y,isSelected:Se.present}),Me=C.exports.useCallback((tt={},mt=null)=>{const st={...tt,style:{...tt.style,transformOrigin:Zr.transformOrigin.varRef,[Zr.arrowSize.var]:s?`${s}px`:void 0,[Zr.arrowShadowColor.var]:l},ref:Fn(F,mt),children:De?tt.children:null,id:be,tabIndex:-1,role:"dialog",onKeyDown:ul(tt.onKeyDown,vt=>{n&&vt.key==="Escape"&&E()}),onBlur:ul(tt.onBlur,vt=>{const mn=HT(vt),yt=nS(F.current,mn),Ut=nS(N.current,mn);P&&t&&(!yt&&!Ut)&&E()}),"aria-labelledby":j?J:void 0,"aria-describedby":Y?U:void 0};return d===wp.hover&&(st.role="tooltip",st.onMouseEnter=ul(tt.onMouseEnter,()=>{B.current=!0}),st.onMouseLeave=ul(tt.onMouseLeave,vt=>{vt.nativeEvent.relatedTarget!==null&&(B.current=!1,setTimeout(E,g))})),st},[De,be,j,J,Y,U,d,n,E,P,t,g,l,s]),Ue=C.exports.useCallback((tt={},mt=null)=>W({...tt,style:{visibility:P?"visible":"hidden",...tt.style}},mt),[P,W]),ke=C.exports.useCallback((tt,mt=null)=>({...tt,ref:Fn(mt,M,ee)}),[M,ee]),Ve=C.exports.useRef(),ot=C.exports.useRef(),pt=C.exports.useCallback(tt=>{M.current==null&&ee(tt)},[ee]),Vt=C.exports.useCallback((tt={},mt=null)=>{const st={...tt,ref:Fn(N,mt,pt),id:we,"aria-haspopup":"dialog","aria-expanded":P,"aria-controls":be};return d===wp.click&&(st.onClick=ul(tt.onClick,L)),d===wp.hover&&(st.onFocus=ul(tt.onFocus,()=>{Ve.current===void 0&&k()}),st.onBlur=ul(tt.onBlur,vt=>{const mn=HT(vt),yt=!nS(F.current,mn);P&&t&&yt&&E()}),st.onKeyDown=ul(tt.onKeyDown,vt=>{vt.key==="Escape"&&E()}),st.onMouseEnter=ul(tt.onMouseEnter,()=>{B.current=!0,Ve.current=window.setTimeout(k,p)}),st.onMouseLeave=ul(tt.onMouseLeave,()=>{B.current=!1,Ve.current&&(clearTimeout(Ve.current),Ve.current=void 0),ot.current=window.setTimeout(()=>{B.current===!1&&E()},g)})),st},[we,P,be,d,pt,L,k,t,E,p,g]);C.exports.useEffect(()=>()=>{Ve.current&&clearTimeout(Ve.current),ot.current&&clearTimeout(ot.current)},[]);const Ft=C.exports.useCallback((tt={},mt=null)=>({...tt,id:J,ref:Fn(mt,st=>{q(!!st)})}),[J]),Re=C.exports.useCallback((tt={},mt=null)=>({...tt,id:U,ref:Fn(mt,st=>{ge(!!st)})}),[U]);return{forceUpdate:de,isOpen:P,onAnimationComplete:Se.onComplete,onClose:E,getAnchorProps:ke,getArrowProps:Q,getArrowInnerProps:ie,getPopoverPositionerProps:Ue,getPopoverProps:Me,getTriggerProps:Vt,getHeaderProps:Ft,getBodyProps:Re}}function nS(e,t){return e===t||e?.contains(t)}function HT(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function f7(e){const t=Bi("Popover",e),{children:n,...r}=Sn(e),i=W1(),o=tce({...r,direction:i.direction});return S(Jue,{value:o,children:S(ece,{value:t,children:Yue(n,{isOpen:o.isOpen,onClose:o.onClose,forceUpdate:o.forceUpdate})})})}f7.displayName="Popover";function h7(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:i,getArrowInnerProps:o}=wh(),a=Cv(),s=t??n??r;return le.createElement(Ce.div,{...i(),className:"chakra-popover__arrow-positioner"},le.createElement(Ce.div,{className:wv("chakra-popover__arrow",e.className),...o(e),__css:{...a.arrow,"--popper-arrow-bg":s?`colors.${s}, ${s}`:void 0}}))}h7.displayName="PopoverArrow";var nce=Le(function(t,n){const{getBodyProps:r}=wh(),i=Cv();return le.createElement(Ce.div,{...r(t,n),className:wv("chakra-popover__body",t.className),__css:i.body})});nce.displayName="PopoverBody";var rce=Le(function(t,n){const{onClose:r}=wh(),i=Cv();return S(W5,{size:"sm",onClick:r,className:wv("chakra-popover__close-btn",t.className),__css:i.closeButton,ref:n,...t})});rce.displayName="PopoverCloseButton";function ice(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var oce={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},ace=ns(Ce.section),p7=Le(function(t,n){const{isOpen:r}=wh();return le.createElement(ace,{ref:n,variants:ice(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});p7.defaultProps={variants:oce};p7.displayName="PopoverTransition";var g7=Le(function(t,n){const{rootProps:r,...i}=t,{getPopoverProps:o,getPopoverPositionerProps:a,onAnimationComplete:s}=wh(),l=Cv(),d={position:"relative",display:"flex",flexDirection:"column",...l.content};return le.createElement(Ce.div,{...a(r),__css:l.popper,className:"chakra-popover__popper"},S(p7,{...o(i,n),onAnimationComplete:Que(s,i.onAnimationComplete),className:wv("chakra-popover__content",t.className),__css:d}))});g7.displayName="PopoverContent";var sce=Le(function(t,n){const{getHeaderProps:r}=wh(),i=Cv();return le.createElement(Ce.header,{...r(t,n),className:wv("chakra-popover__header",t.className),__css:i.header})});sce.displayName="PopoverHeader";function m7(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=wh();return C.exports.cloneElement(t,n(t.props,t.ref))}m7.displayName="PopoverTrigger";function lce(e,t,n){return(e-t)*100/(n-t)}uv({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});uv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var uce=uv({"0%":{left:"-40%"},"100%":{left:"100%"}}),cce=uv({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function dce(e){const{value:t=0,min:n,max:r,valueText:i,getValueText:o,isIndeterminate:a}=e,s=lce(t,n,r);return{bind:{"data-indeterminate":a?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":a?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof o=="function"?o(t,s):i})(),role:"progressbar"},percent:s,value:t}}var[fce,hce]=kn({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),pce=e=>{const{min:t,max:n,value:r,isIndeterminate:i,...o}=e,a=dce({value:r,min:t,max:n,isIndeterminate:i}),s=hce(),l={height:"100%",...s.filledTrack};return le.createElement(Ce.div,{style:{width:`${a.percent}%`,...o.style},...a.bind,...o,__css:l})},Zz=e=>{var t;const{value:n,min:r=0,max:i=100,hasStripe:o,isAnimated:a,children:s,borderRadius:l,isIndeterminate:d,"aria-label":p,"aria-labelledby":g,...m}=Sn(e),y=Bi("Progress",e),b=l??((t=y.track)==null?void 0:t.borderRadius),w={animation:`${cce} 1s linear infinite`},k={...!d&&o&&a&&w,...d&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${uce} 1s ease infinite normal none running`}},L={overflow:"hidden",position:"relative",...y.track};return le.createElement(Ce.div,{borderRadius:b,__css:L,...m},oe(fce,{value:y,children:[S(pce,{"aria-label":p,"aria-labelledby":g,min:r,max:i,value:n,isIndeterminate:d,css:k,borderRadius:b}),s]}))};Zz.displayName="Progress";var gce=Ce("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});gce.displayName="CircularProgressLabel";var mce=(...e)=>e.filter(Boolean).join(" "),vce=e=>e?"":void 0;function yce(e,t){const n={},r={};for(const[i,o]of Object.entries(e))t.includes(i)?n[i]=o:r[i]=o;return[n,r]}var Yz=Le(function(t,n){const{children:r,placeholder:i,className:o,...a}=t;return le.createElement(Ce.select,{...a,ref:n,className:mce("chakra-select",o)},i&&S("option",{value:"",children:i}),r)});Yz.displayName="SelectField";var Xz=Le((e,t)=>{var n;const r=Bi("Select",e),{rootProps:i,placeholder:o,icon:a,color:s,height:l,h:d,minH:p,minHeight:g,iconColor:m,iconSize:y,...b}=Sn(e),[w,P]=yce(b,yY),E=R9(P),k={width:"100%",height:"fit-content",position:"relative",color:s},L={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return le.createElement(Ce.div,{className:"chakra-select__wrapper",__css:k,...w,...i},S(Yz,{ref:t,height:d??l,minH:p??g,placeholder:o,...E,__css:L,children:e.children}),S(Qz,{"data-disabled":vce(E.disabled),...(m||s)&&{color:m||s},__css:r.icon,...y&&{fontSize:y},children:a}))});Xz.displayName="Select";var xce=e=>S("svg",{viewBox:"0 0 24 24",...e,children:S("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),bce=Ce("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),Qz=e=>{const{children:t=S(xce,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return S(bce,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};Qz.displayName="SelectIcon";function Sce(e,t,n,r){return e.addEventListener(t,n,r),()=>{e.removeEventListener(t,n,r)}}function wce(e){const t=_ce(e);return typeof t.PointerEvent<"u"&&e instanceof t.PointerEvent?e.pointerType==="mouse":e instanceof t.MouseEvent}function Jz(e){return!!e.touches}function Cce(e){return Jz(e)&&e.touches.length>1}function _ce(e){return e.view??window}function kce(e,t="page"){const n=e.touches[0]||e.changedTouches[0];return{x:n[`${t}X`],y:n[`${t}Y`]}}function Ece(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function eF(e,t="page"){return Jz(e)?kce(e,t):Ece(e,t)}function Pce(e){return t=>{const n=wce(t);(!n||n&&t.button===0)&&e(t)}}function Tce(e,t=!1){function n(i){e(i,{point:eF(i)})}return t?Pce(n):n}function r3(e,t,n,r){return Sce(e,t,Tce(n,t==="pointerdown"),r)}var Lce=class{history=[];startEvent=null;lastEvent=null;lastEventInfo=null;handlers={};removeListeners=()=>{};threshold=3;win;constructor(e,t,n){if(this.win=e.view??window,Cce(e))return;this.handlers=t,n&&(this.threshold=n),e.stopPropagation(),e.preventDefault();const r={point:eF(e)},{timestamp:i}=jE();this.history=[{...r.point,timestamp:i}];const{onSessionStart:o}=t;o?.(e,rS(r,this.history)),this.removeListeners=Mce(r3(this.win,"pointermove",this.onPointerMove),r3(this.win,"pointerup",this.onPointerUp),r3(this.win,"pointercancel",this.onPointerUp))}updatePoint=()=>{if(!(this.lastEvent&&this.lastEventInfo))return;const e=rS(this.lastEventInfo,this.history),t=this.startEvent!==null,n=Rce(e.offset,{x:0,y:0})>=this.threshold;if(!t&&!n)return;const{timestamp:r}=jE();this.history.push({...e.point,timestamp:r});const{onStart:i,onMove:o}=this.handlers;t||(i?.(this.lastEvent,e),this.startEvent=this.lastEvent),o?.(this.lastEvent,e)};onPointerMove=(e,t)=>{this.lastEvent=e,this.lastEventInfo=t,TX.update(this.updatePoint,!0)};onPointerUp=(e,t)=>{const n=rS(t,this.history),{onEnd:r,onSessionEnd:i}=this.handlers;i?.(e,n),this.end(),!(!r||!this.startEvent)&&r?.(e,n)};updateHandlers(e){this.handlers=e}end(){var e;(e=this.removeListeners)==null||e.call(this),LX.update(this.updatePoint)}};function WT(e,t){return{x:e.x-t.x,y:e.y-t.y}}function rS(e,t){return{point:e.point,delta:WT(e.point,t[t.length-1]),offset:WT(e.point,t[0]),velocity:Ice(t,.1)}}var Ace=e=>e*1e3;function Ice(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=e[e.length-1];for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>Ace(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function Mce(...e){return t=>e.reduce((n,r)=>r(n),t)}function iS(e,t){return Math.abs(e-t)}function VT(e){return"x"in e&&"y"in e}function Rce(e,t){if(typeof e=="number"&&typeof t=="number")return iS(e,t);if(VT(e)&&VT(t)){const n=iS(e.x,t.x),r=iS(e.y,t.y);return Math.sqrt(n**2+r**2)}return 0}function tF(e,t){const{onPan:n,onPanStart:r,onPanEnd:i,onPanSessionStart:o,onPanSessionEnd:a,threshold:s}=t,l=Boolean(n||r||i||o||a),d=C.exports.useRef(null),p={onSessionStart:o,onSessionEnd:a,onStart:r,onMove:n,onEnd(m,y){d.current=null,i?.(m,y)}};C.exports.useEffect(()=>{var m;(m=d.current)==null||m.updateHandlers(p)});function g(m){d.current=new Lce(m,p,s)}C.exports.useEffect(()=>{const m=e.current;if(!(!m||!l))return r3(m,"pointerdown",g)},[l]),C.exports.useEffect(()=>()=>{var m;(m=d.current)==null||m.end(),d.current=null},[])}function Oce(e,t){if(!e){t(void 0);return}t({width:e.offsetWidth,height:e.offsetHeight});const n=e.ownerDocument.defaultView??window,r=new n.ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const[o]=i;let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;t({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}var Nce=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect;function Dce(e,t){var n;if(!e||!e.parentElement)return;const r=((n=e.ownerDocument)==null?void 0:n.defaultView)??window,i=new r.MutationObserver(()=>{t()});return i.observe(e.parentElement,{childList:!0}),()=>{i.disconnect()}}function nF({getNodes:e,observeMutation:t=!0}){const[n,r]=C.exports.useState([]),[i,o]=C.exports.useState(0);return Nce(()=>{const a=e(),s=a.map((l,d)=>Oce(l,p=>{r(g=>[...g.slice(0,d),p,...g.slice(d+1)])}));if(t){const l=a[0];s.push(Dce(l,()=>{o(d=>d+1)}))}return()=>{s.forEach(l=>{l?.()})}},[i]),n}function zce(e){return typeof e=="object"&&e!==null&&"current"in e}function Fce(e){const[t]=nF({observeMutation:!1,getNodes(){return[zce(e)?e.current:e]}});return t}var Bce=Object.create,rF=Object.defineProperty,$ce=Object.getOwnPropertyDescriptor,v7=Object.getOwnPropertyNames,Hce=Object.getPrototypeOf,Wce=Object.prototype.hasOwnProperty,Vce=(e,t)=>function(){return e&&(t=(0,e[v7(e)[0]])(e=0)),t},Uce=(e,t)=>function(){return t||(0,e[v7(e)[0]])((t={exports:{}}).exports,t),t.exports},Gce=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of v7(t))!Wce.call(e,i)&&i!==n&&rF(e,i,{get:()=>t[i],enumerable:!(r=$ce(t,i))||r.enumerable});return e},jce=(e,t,n)=>(n=e!=null?Bce(Hce(e)):{},Gce(t||!e||!e.__esModule?rF(n,"default",{value:e,enumerable:!0}):n,e)),Os=Vce({"../../../react-shim.js"(){}}),qce=Uce({"../../../node_modules/.pnpm/lodash.mergewith@4.6.2/node_modules/lodash.mergewith/index.js"(e,t){Os();var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",l="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",g="[object Date]",m="[object Error]",y="[object Function]",b="[object GeneratorFunction]",w="[object Map]",P="[object Number]",E="[object Null]",k="[object Object]",L="[object Proxy]",M="[object RegExp]",N="[object Set]",F="[object String]",B="[object Undefined]",z="[object WeakMap]",j="[object ArrayBuffer]",q="[object DataView]",Y="[object Float32Array]",ge="[object Float64Array]",ce="[object Int8Array]",ve="[object Int16Array]",we="[object Int32Array]",be="[object Uint8Array]",J="[object Uint8ClampedArray]",U="[object Uint16Array]",ee="[object Uint32Array]",Q=/[\\^$.*+?()[\]{}|]/g,W=/^\[object .+?Constructor\]$/,ie=/^(?:0|[1-9]\d*)$/,de={};de[Y]=de[ge]=de[ce]=de[ve]=de[we]=de[be]=de[J]=de[U]=de[ee]=!0,de[s]=de[l]=de[j]=de[p]=de[q]=de[g]=de[m]=de[y]=de[w]=de[P]=de[k]=de[M]=de[N]=de[F]=de[z]=!1;var Se=typeof global=="object"&&global&&global.Object===Object&&global,De=typeof self=="object"&&self&&self.Object===Object&&self,Me=Se||De||Function("return this")(),Ue=typeof e=="object"&&e&&!e.nodeType&&e,ke=Ue&&typeof t=="object"&&t&&!t.nodeType&&t,Ve=ke&&ke.exports===Ue,ot=Ve&&Se.process,pt=function(){try{var I=ke&&ke.require&&ke.require("util").types;return I||ot&&ot.binding&&ot.binding("util")}catch{}}(),Vt=pt&&pt.isTypedArray;function Ft(I,D,G){switch(G.length){case 0:return I.call(D);case 1:return I.call(D,G[0]);case 2:return I.call(D,G[0],G[1]);case 3:return I.call(D,G[0],G[1],G[2])}return I.apply(D,G)}function Re(I,D){for(var G=-1,me=Array(I);++G-1}function Od(I,D){var G=this.__data__,me=Hi(G,I);return me<0?(++this.size,G.push([I,D])):G[me][1]=D,this}or.prototype.clear=Wl,or.prototype.delete=Rd,or.prototype.get=Fs,or.prototype.has=Vl,or.prototype.set=Od;function xi(I){var D=-1,G=I==null?0:I.length;for(this.clear();++D1?G[Ye-1]:void 0,Ke=Ye>2?G[2]:void 0;for(ft=I.length>3&&typeof ft=="function"?(Ye--,ft):void 0,Ke&&Xu(G[0],G[1],Ke)&&(ft=Ye<3?void 0:ft,Ye=1),D=Object(D);++me-1&&I%1==0&&I0){if(++D>=i)return arguments[0]}else D=0;return I.apply(void 0,arguments)}}function Ws(I){if(I!=null){try{return on.call(I)}catch{}try{return I+""}catch{}}return""}function Si(I,D){return I===D||I!==I&&D!==D}var ss=ka(function(){return arguments}())?ka:function(I){return hn(I)&&Bt.call(I,"callee")&&!$e.call(I,"callee")},Ko=Array.isArray;function Mt(I){return I!=null&&Zl(I.length)&&!Ia(I)}function Qu(I){return hn(I)&&Mt(I)}var ls=tn||qd;function Ia(I){if(!Ir(I))return!1;var D=eo(I);return D==y||D==b||D==d||D==L}function Zl(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=a}function Ir(I){var D=typeof I;return I!=null&&(D=="object"||D=="function")}function hn(I){return I!=null&&typeof I=="object"}function Yl(I){if(!hn(I)||eo(I)!=k)return!1;var D=je(I);if(D===null)return!0;var G=Bt.call(D,"constructor")&&D.constructor;return typeof G=="function"&&G instanceof G&&on.call(G)==qt}var Xl=Vt?tt(Vt):$s;function Ql(I){return Ar(I,Jl(I))}function Jl(I){return Mt(I)?Ud(I,!0):Ea(I)}var an=qo(function(I,D,G,me){Wi(I,D,G,me)});function Nt(I){return function(){return I}}function eu(I){return I}function qd(){return!1}t.exports=an}});Os();Os();Os();jce(qce());Os();Os();Os();var Ga=e=>e?"":void 0,u1=e=>e?!0:void 0,_d=(...e)=>e.filter(Boolean).join(" ");function c1(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}Object.freeze(["base","sm","md","lg","xl","2xl"]);Os();Os();function Kce(e){return{root:`slider-root-${e}`,getThumb:t=>`slider-thumb-${e}-${t}`,getInput:t=>`slider-input-${e}-${t}`,track:`slider-track-${e}`,innerTrack:`slider-filled-track-${e}`,getMarker:t=>`slider-marker-${e}-${t}`,output:`slider-output-${e}`}}function wg(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}var i3={width:0,height:0},ny=e=>e||i3;function iF(e){const{orientation:t,thumbPercents:n,thumbRects:r,isReversed:i}=e,o=w=>{const P=r[w]??i3;return{position:"absolute",userSelect:"none",WebkitUserSelect:"none",MozUserSelect:"none",msUserSelect:"none",touchAction:"none",...wg({orientation:t,vertical:{bottom:`calc(${n[w]}% - ${P.height/2}px)`},horizontal:{left:`calc(${n[w]}% - ${P.width/2}px)`}})}},a=t==="vertical"?r.reduce((w,P)=>ny(w).height>ny(P).height?w:P,i3):r.reduce((w,P)=>ny(w).width>ny(P).width?w:P,i3),s={position:"relative",touchAction:"none",WebkitTapHighlightColor:"rgba(0,0,0,0)",userSelect:"none",outline:0,...wg({orientation:t,vertical:a?{paddingLeft:a.width/2,paddingRight:a.width/2}:{},horizontal:a?{paddingTop:a.height/2,paddingBottom:a.height/2}:{}})},l={position:"absolute",...wg({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",height:"100%"},horizontal:{top:"50%",transform:"translateY(-50%)",width:"100%"}})},d=n.length===1,p=[0,i?100-n[0]:n[0]],g=d?p:n;let m=g[0];!d&&i&&(m=100-m);const y=Math.abs(g[g.length-1]-g[0]),b={...l,...wg({orientation:t,vertical:i?{height:`${y}%`,top:`${m}%`}:{height:`${y}%`,bottom:`${m}%`},horizontal:i?{width:`${y}%`,right:`${m}%`}:{width:`${y}%`,left:`${m}%`}})};return{trackStyle:l,innerTrackStyle:b,rootStyle:s,getThumbStyle:o}}function oF(e){const{isReversed:t,direction:n,orientation:r}=e;return n==="ltr"||r==="vertical"?t:!t}function Zce(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:w,"aria-valuetext":P,"aria-label":E,"aria-labelledby":k,name:L,focusThumbOnChange:M=!0,minStepsBetweenThumbs:N=0,...F}=e,B=kr(m),z=kr(y),j=kr(w),q=oF({isReversed:a,direction:s,orientation:l}),[Y,ge]=w5({value:i,defaultValue:o??[25,75],onChange:r});if(!Array.isArray(Y))throw new TypeError(`[range-slider] You passed an invalid value for \`value\` or \`defaultValue\`, expected \`Array\` but got \`${typeof Y}\``);const[ce,ve]=C.exports.useState(!1),[we,be]=C.exports.useState(!1),[J,U]=C.exports.useState(-1),ee=!(p||g),Q=C.exports.useRef(Y),W=Y.map($e=>a1($e,t,n)),ie=N*b,de=Yce(W,t,n,ie),Se=C.exports.useRef({eventSource:null,value:[],valueBounds:[]});Se.current.value=W,Se.current.valueBounds=de;const De=W.map($e=>n-$e+t),Ue=(q?De:W).map($e=>f4($e,t,n)),ke=l==="vertical",Ve=C.exports.useRef(null),ot=C.exports.useRef(null),pt=nF({getNodes(){const $e=ot.current,ct=$e?.querySelectorAll("[role=slider]");return ct?Array.from(ct):[]}}),Vt=C.exports.useId(),Re=Kce(d??Vt),tt=C.exports.useCallback($e=>{var ct;if(!Ve.current)return;Se.current.eventSource="pointer";const qe=Ve.current.getBoundingClientRect(),{clientX:wt,clientY:tn}=((ct=$e.touches)==null?void 0:ct[0])??$e,Kn=ke?qe.bottom-tn:wt-qe.left,yr=ke?qe.height:qe.width;let Wr=Kn/yr;return q&&(Wr=1-Wr),yD(Wr,t,n)},[ke,q,n,t]),mt=(n-t)/10,st=b||(n-t)/100,vt=C.exports.useMemo(()=>({setValueAtIndex($e,ct){if(!ee)return;const qe=Se.current.valueBounds[$e];ct=parseFloat(P6(ct,qe.min,st)),ct=a1(ct,qe.min,qe.max);const wt=[...Se.current.value];wt[$e]=ct,ge(wt)},setActiveIndex:U,stepUp($e,ct=st){const qe=Se.current.value[$e],wt=q?qe-ct:qe+ct;vt.setValueAtIndex($e,wt)},stepDown($e,ct=st){const qe=Se.current.value[$e],wt=q?qe+ct:qe-ct;vt.setValueAtIndex($e,wt)},reset(){ge(Q.current)}}),[st,q,ge,ee]),mn=C.exports.useCallback($e=>{const ct=$e.key,wt={ArrowRight:()=>vt.stepUp(J),ArrowUp:()=>vt.stepUp(J),ArrowLeft:()=>vt.stepDown(J),ArrowDown:()=>vt.stepDown(J),PageUp:()=>vt.stepUp(J,mt),PageDown:()=>vt.stepDown(J,mt),Home:()=>{const{min:tn}=de[J];vt.setValueAtIndex(J,tn)},End:()=>{const{max:tn}=de[J];vt.setValueAtIndex(J,tn)}}[ct];wt&&($e.preventDefault(),$e.stopPropagation(),wt($e),Se.current.eventSource="keyboard")},[vt,J,mt,de]),{getThumbStyle:yt,rootStyle:Ut,trackStyle:on,innerTrackStyle:Bt}=C.exports.useMemo(()=>iF({isReversed:q,orientation:l,thumbRects:pt,thumbPercents:Ue}),[q,l,Ue,pt]),Oe=C.exports.useCallback($e=>{var ct;const qe=$e??J;if(qe!==-1&&M){const wt=Re.getThumb(qe),tn=(ct=ot.current)==null?void 0:ct.ownerDocument.getElementById(wt);tn&&setTimeout(()=>tn.focus())}},[M,J,Re]);E1(()=>{Se.current.eventSource==="keyboard"&&z?.(Se.current.value)},[W,z]);const et=$e=>{const ct=tt($e)||0,qe=Se.current.value.map(Wr=>Math.abs(Wr-ct)),wt=Math.min(...qe);let tn=qe.indexOf(wt);const Kn=qe.filter(Wr=>Wr===wt);Kn.length>1&&ct>Se.current.value[tn]&&(tn=tn+Kn.length-1),U(tn),vt.setValueAtIndex(tn,ct),Oe(tn)},qt=$e=>{if(J==-1)return;const ct=tt($e)||0;U(J),vt.setValueAtIndex(J,ct),Oe(J)};tF(ot,{onPanSessionStart($e){!ee||(ve(!0),et($e),B?.(Se.current.value))},onPanSessionEnd(){!ee||(ve(!1),z?.(Se.current.value))},onPan($e){!ee||qt($e)}});const Gt=C.exports.useCallback(($e={},ct=null)=>({...$e,...F,id:Re.root,ref:Fn(ct,ot),tabIndex:-1,"aria-disabled":u1(p),"data-focused":Ga(we),style:{...$e.style,...Ut}}),[F,p,we,Ut,Re]),Ee=C.exports.useCallback(($e={},ct=null)=>({...$e,ref:Fn(ct,Ve),id:Re.track,"data-disabled":Ga(p),style:{...$e.style,...on}}),[p,on,Re]),Tt=C.exports.useCallback(($e={},ct=null)=>({...$e,ref:ct,id:Re.innerTrack,style:{...$e.style,...Bt}}),[Bt,Re]),en=C.exports.useCallback(($e,ct=null)=>{const{index:qe,...wt}=$e,tn=W[qe];if(tn==null)throw new TypeError(`[range-slider > thumb] Cannot find value at index \`${qe}\`. The \`value\` or \`defaultValue\` length is : ${W.length}`);const Kn=de[qe];return{...wt,ref:ct,role:"slider",tabIndex:ee?0:void 0,id:Re.getThumb(qe),"data-active":Ga(ce&&J===qe),"aria-valuetext":j?.(tn)??P?.[qe],"aria-valuemin":Kn.min,"aria-valuemax":Kn.max,"aria-valuenow":tn,"aria-orientation":l,"aria-disabled":u1(p),"aria-readonly":u1(g),"aria-label":E?.[qe],"aria-labelledby":E?.[qe]?void 0:k?.[qe],style:{...$e.style,...yt(qe)},onKeyDown:c1($e.onKeyDown,mn),onFocus:c1($e.onFocus,()=>{be(!0),U(qe)}),onBlur:c1($e.onBlur,()=>{be(!1),U(-1)})}},[Re,W,de,ee,ce,J,j,P,l,p,g,E,k,yt,mn,be]),Hn=C.exports.useCallback(($e={},ct=null)=>({...$e,ref:ct,id:Re.output,htmlFor:W.map((qe,wt)=>Re.getThumb(wt)).join(" "),"aria-live":"off"}),[Re,W]),je=C.exports.useCallback(($e,ct=null)=>{const{value:qe,...wt}=$e,tn=!(qen),Kn=qe>=W[0]&&qe<=W[W.length-1];let yr=f4(qe,t,n);yr=q?100-yr:yr;const Wr={position:"absolute",pointerEvents:"none",...wg({orientation:l,vertical:{bottom:`${yr}%`},horizontal:{left:`${yr}%`}})};return{...wt,ref:ct,id:Re.getMarker($e.value),role:"presentation","aria-hidden":!0,"data-disabled":Ga(p),"data-invalid":Ga(!tn),"data-highlighted":Ga(Kn),style:{...$e.style,...Wr}}},[p,q,n,t,l,W,Re]),It=C.exports.useCallback(($e,ct=null)=>{const{index:qe,...wt}=$e;return{...wt,ref:ct,id:Re.getInput(qe),type:"hidden",value:W[qe],name:Array.isArray(L)?L[qe]:`${L}-${qe}`}},[L,W,Re]);return{state:{value:W,isFocused:we,isDragging:ce,getThumbPercent:$e=>Ue[$e],getThumbMinValue:$e=>de[$e].min,getThumbMaxValue:$e=>de[$e].max},actions:vt,getRootProps:Gt,getTrackProps:Ee,getInnerTrackProps:Tt,getThumbProps:en,getMarkerProps:je,getInputProps:It,getOutputProps:Hn}}function Yce(e,t,n,r){return e.map((i,o)=>{const a=o===0?t:e[o-1]+r,s=o===e.length-1?n:e[o+1]-r;return{min:a,max:s}})}var[Xce,q5]=kn({name:"SliderContext",errorMessage:"useSliderContext: `context` is undefined. Seems you forgot to wrap all slider components within "}),[Qce,y7]=kn({name:"RangeSliderStylesContext",errorMessage:`useRangeSliderStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),aF=Le(function(t,n){const r=Bi("Slider",t),i=Sn(t),{direction:o}=W1();i.direction=o;const{getRootProps:a,...s}=Zce(i),l=C.exports.useMemo(()=>({...s,name:t.name}),[s,t.name]);return le.createElement(Xce,{value:l},le.createElement(Qce,{value:r},le.createElement(Ce.div,{...a({},n),className:"chakra-slider",__css:r.container},t.children)))});aF.defaultProps={orientation:"horizontal"};aF.displayName="RangeSlider";var Jce=Le(function(t,n){const{getThumbProps:r,getInputProps:i,name:o}=q5(),a=y7(),s=r(t,n);return le.createElement(Ce.div,{...s,className:_d("chakra-slider__thumb",t.className),__css:a.thumb},s.children,o&&S("input",{...i({index:t.index})}))});Jce.displayName="RangeSliderThumb";var ede=Le(function(t,n){const{getTrackProps:r}=q5(),i=y7(),o=r(t,n);return le.createElement(Ce.div,{...o,className:_d("chakra-slider__track",t.className),__css:i.track,"data-testid":"chakra-range-slider-track"})});ede.displayName="RangeSliderTrack";var tde=Le(function(t,n){const{getInnerTrackProps:r}=q5(),i=y7(),o=r(t,n);return le.createElement(Ce.div,{...o,className:"chakra-slider__filled-track",__css:i.filledTrack})});tde.displayName="RangeSliderFilledTrack";var nde=Le(function(t,n){const{getMarkerProps:r}=q5(),i=r(t,n);return le.createElement(Ce.div,{...i,className:_d("chakra-slider__marker",t.className)})});nde.displayName="RangeSliderMark";Os();Os();function rde(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:w,"aria-valuetext":P,"aria-label":E,"aria-labelledby":k,name:L,focusThumbOnChange:M=!0,...N}=e,F=kr(m),B=kr(y),z=kr(w),j=oF({isReversed:a,direction:s,orientation:l}),[q,Y]=w5({value:i,defaultValue:o??ode(t,n),onChange:r}),[ge,ce]=C.exports.useState(!1),[ve,we]=C.exports.useState(!1),be=C.exports.useRef(null),J=!(p||g),U=a1(q,t,n),ee=C.exports.useRef(-1);ee.current=U;const Q=C.exports.useRef(ee.current),W=n-U+t,de=f4(j?W:U,t,n),Se=l==="vertical",De=C.exports.useRef(null),Me=C.exports.useRef(null),Ue=C.exports.useRef(null),ke=C.exports.useId(),Ve=d??ke,[ot,pt]=[`slider-thumb-${Ve}`,`slider-track-${Ve}`],Vt=C.exports.useCallback(je=>{var It;if(!De.current)return;be.current="pointer";const $e=De.current.getBoundingClientRect(),{clientX:ct,clientY:qe}=((It=je.touches)==null?void 0:It[0])??je,wt=Se?$e.bottom-qe:ct-$e.left,tn=Se?$e.height:$e.width;let Kn=wt/tn;j&&(Kn=1-Kn);let yr=yD(Kn,t,n);return b&&(yr=parseFloat(P6(yr,t,b))),yr=a1(yr,t,n),yr},[Se,j,n,t,b]),Ft=(n-t)/10,Re=b||(n-t)/100,tt=C.exports.useCallback(je=>{!J||(je=parseFloat(P6(je,t,Re)),je=a1(je,t,n),Y(je))},[Re,n,t,Y,J]),mt=C.exports.useMemo(()=>({stepUp(je=Re){const It=j?U-je:U+je;tt(It)},stepDown(je=Re){const It=j?U+je:U-je;tt(It)},reset(){tt(o||0)},stepTo(je){tt(je)}}),[tt,j,U,Re,o]),st=C.exports.useCallback(je=>{const $e={ArrowRight:()=>mt.stepUp(),ArrowUp:()=>mt.stepUp(),ArrowLeft:()=>mt.stepDown(),ArrowDown:()=>mt.stepDown(),PageUp:()=>mt.stepUp(Ft),PageDown:()=>mt.stepDown(Ft),Home:()=>tt(t),End:()=>tt(n)}[je.key];$e&&(je.preventDefault(),je.stopPropagation(),$e(je),be.current="keyboard")},[mt,tt,n,t,Ft]),vt=z?.(U)??P,mn=Fce(Me),{getThumbStyle:yt,rootStyle:Ut,trackStyle:on,innerTrackStyle:Bt}=C.exports.useMemo(()=>iF({isReversed:j,orientation:l,thumbRects:[mn??{width:0,height:0}],thumbPercents:[de]}),[j,l,mn,de]),Oe=C.exports.useCallback(()=>{M&&setTimeout(()=>{var je;return(je=Me.current)==null?void 0:je.focus()})},[M]);E1(()=>{Oe(),be.current==="keyboard"&&B?.(ee.current)},[U,B]);function et(je){const It=Vt(je);It!=null&&It!==ee.current&&Y(It)}tF(Ue,{onPanSessionStart(je){!J||(ce(!0),Oe(),et(je),F?.(ee.current))},onPanSessionEnd(){!J||(ce(!1),B?.(ee.current),Q.current=ee.current)},onPan(je){!J||et(je)}});const qt=C.exports.useCallback((je={},It=null)=>({...je,...N,ref:Fn(It,Ue),tabIndex:-1,"aria-disabled":u1(p),"data-focused":Ga(ve),style:{...je.style,...Ut}}),[N,p,ve,Ut]),Gt=C.exports.useCallback((je={},It=null)=>({...je,ref:Fn(It,De),id:pt,"data-disabled":Ga(p),style:{...je.style,...on}}),[p,pt,on]),Ee=C.exports.useCallback((je={},It=null)=>({...je,ref:It,style:{...je.style,...Bt}}),[Bt]),Tt=C.exports.useCallback((je={},It=null)=>({...je,ref:Fn(It,Me),role:"slider",tabIndex:J?0:void 0,id:ot,"data-active":Ga(ge),"aria-valuetext":vt,"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":U,"aria-orientation":l,"aria-disabled":u1(p),"aria-readonly":u1(g),"aria-label":E,"aria-labelledby":E?void 0:k,style:{...je.style,...yt(0)},onKeyDown:c1(je.onKeyDown,st),onFocus:c1(je.onFocus,()=>we(!0)),onBlur:c1(je.onBlur,()=>we(!1))}),[J,ot,ge,vt,t,n,U,l,p,g,E,k,yt,st]),en=C.exports.useCallback((je,It=null)=>{const $e=!(je.valuen),ct=U>=je.value,qe=f4(je.value,t,n),wt={position:"absolute",pointerEvents:"none",...ide({orientation:l,vertical:{bottom:j?`${100-qe}%`:`${qe}%`},horizontal:{left:j?`${100-qe}%`:`${qe}%`}})};return{...je,ref:It,role:"presentation","aria-hidden":!0,"data-disabled":Ga(p),"data-invalid":Ga(!$e),"data-highlighted":Ga(ct),style:{...je.style,...wt}}},[p,j,n,t,l,U]),Hn=C.exports.useCallback((je={},It=null)=>({...je,ref:It,type:"hidden",value:U,name:L}),[L,U]);return{state:{value:U,isFocused:ve,isDragging:ge},actions:mt,getRootProps:qt,getTrackProps:Gt,getInnerTrackProps:Ee,getThumbProps:Tt,getMarkerProps:en,getInputProps:Hn}}function ide(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}function ode(e,t){return t"}),[sde,Z5]=kn({name:"SliderStylesContext",hookName:"useSliderStyles",providerName:""}),x7=Le((e,t)=>{const n=Bi("Slider",e),r=Sn(e),{direction:i}=W1();r.direction=i;const{getInputProps:o,getRootProps:a,...s}=rde(r),l=a(),d=o({},t);return le.createElement(ade,{value:s},le.createElement(sde,{value:n},le.createElement(Ce.div,{...l,className:_d("chakra-slider",e.className),__css:n.container},e.children,S("input",{...d}))))});x7.defaultProps={orientation:"horizontal"};x7.displayName="Slider";var sF=Le((e,t)=>{const{getThumbProps:n}=K5(),r=Z5(),i=n(e,t);return le.createElement(Ce.div,{...i,className:_d("chakra-slider__thumb",e.className),__css:r.thumb})});sF.displayName="SliderThumb";var lF=Le((e,t)=>{const{getTrackProps:n}=K5(),r=Z5(),i=n(e,t);return le.createElement(Ce.div,{...i,className:_d("chakra-slider__track",e.className),__css:r.track})});lF.displayName="SliderTrack";var uF=Le((e,t)=>{const{getInnerTrackProps:n}=K5(),r=Z5(),i=n(e,t);return le.createElement(Ce.div,{...i,className:_d("chakra-slider__filled-track",e.className),__css:r.filledTrack})});uF.displayName="SliderFilledTrack";var lde=Le((e,t)=>{const{getMarkerProps:n}=K5(),r=Z5(),i=n(e,t);return le.createElement(Ce.div,{...i,className:_d("chakra-slider__marker",e.className),__css:r.mark})});lde.displayName="SliderMark";var ude=(...e)=>e.filter(Boolean).join(" "),UT=e=>e?"":void 0,b7=Le(function(t,n){const r=Bi("Switch",t),{spacing:i="0.5rem",children:o,...a}=Sn(t),{state:s,getInputProps:l,getCheckboxProps:d,getRootProps:p,getLabelProps:g}=mD(a),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),y=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:i,...r.label}),[i,r.label]);return le.createElement(Ce.label,{...p(),className:ude("chakra-switch",t.className),__css:m},S("input",{className:"chakra-switch__input",...l({},n)}),le.createElement(Ce.span,{...d(),className:"chakra-switch__track",__css:y},le.createElement(Ce.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":UT(s.isChecked),"data-hover":UT(s.isHovered)})),o&&le.createElement(Ce.span,{className:"chakra-switch__label",...g(),__css:b},o))});b7.displayName="Switch";var Z1=(...e)=>e.filter(Boolean).join(" ");function H6(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[cde,cF,dde,fde]=PO();function hde(e){const{defaultIndex:t,onChange:n,index:r,isManual:i,isLazy:o,lazyBehavior:a="unmount",orientation:s="horizontal",direction:l="ltr",...d}=e,[p,g]=C.exports.useState(t??0),[m,y]=w5({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&g(r)},[r]);const b=dde(),w=C.exports.useId();return{id:`tabs-${e.id??w}`,selectedIndex:m,focusedIndex:p,setSelectedIndex:y,setFocusedIndex:g,isManual:i,isLazy:o,lazyBehavior:a,orientation:s,descendants:b,direction:l,htmlProps:d}}var[pde,_v]=kn({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function gde(e){const{focusedIndex:t,orientation:n,direction:r}=_v(),i=cF(),o=C.exports.useCallback(a=>{const s=()=>{var k;const L=i.nextEnabled(t);L&&((k=L.node)==null||k.focus())},l=()=>{var k;const L=i.prevEnabled(t);L&&((k=L.node)==null||k.focus())},d=()=>{var k;const L=i.firstEnabled();L&&((k=L.node)==null||k.focus())},p=()=>{var k;const L=i.lastEnabled();L&&((k=L.node)==null||k.focus())},g=n==="horizontal",m=n==="vertical",y=a.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",w=r==="ltr"?"ArrowRight":"ArrowLeft",E={[b]:()=>g&&l(),[w]:()=>g&&s(),ArrowDown:()=>m&&s(),ArrowUp:()=>m&&l(),Home:d,End:p}[y];E&&(a.preventDefault(),E(a))},[i,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:H6(e.onKeyDown,o)}}function mde(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:i,isManual:o,id:a,setFocusedIndex:s,selectedIndex:l}=_v(),{index:d,register:p}=fde({disabled:t&&!n}),g=d===l,m=()=>{i(d)},y=()=>{s(d),!o&&!(t&&n)&&i(d)},b=iae({...r,ref:Fn(p,e.ref),isDisabled:t,isFocusable:n,onClick:H6(e.onClick,m)}),w="button";return{...b,id:dF(a,d),role:"tab",tabIndex:g?0:-1,type:w,"aria-selected":g,"aria-controls":fF(a,d),onFocus:t?void 0:H6(e.onFocus,y)}}var[vde,yde]=kn({});function xde(e){const t=_v(),{id:n,selectedIndex:r}=t,o=B5(e.children).map((a,s)=>C.exports.createElement(vde,{key:s,value:{isSelected:s===r,id:fF(n,s),tabId:dF(n,s),selectedIndex:r}},a));return{...e,children:o}}function bde(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:i}=_v(),{isSelected:o,id:a,tabId:s}=yde(),l=C.exports.useRef(!1);o&&(l.current=!0);const d=QD({wasSelected:l.current,isSelected:o,enabled:r,mode:i});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":s,hidden:!o,id:a}}function Sde(){const e=_v(),t=cF(),{selectedIndex:n,orientation:r}=e,i=r==="horizontal",o=r==="vertical",[a,s]=C.exports.useState(()=>{if(i)return{left:0,width:0};if(o)return{top:0,height:0}}),[l,d]=C.exports.useState(!1);return kl(()=>{if(n==null)return;const p=t.item(n);if(p==null)return;i&&s({left:p.node.offsetLeft,width:p.node.offsetWidth}),o&&s({top:p.node.offsetTop,height:p.node.offsetHeight});const g=requestAnimationFrame(()=>{d(!0)});return()=>{g&&cancelAnimationFrame(g)}},[n,i,o,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:l?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...a}}function dF(e,t){return`${e}--tab-${t}`}function fF(e,t){return`${e}--tabpanel-${t}`}var[wde,kv]=kn({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),hF=Le(function(t,n){const r=Bi("Tabs",t),{children:i,className:o,...a}=Sn(t),{htmlProps:s,descendants:l,...d}=hde(a),p=C.exports.useMemo(()=>d,[d]),{isFitted:g,...m}=s;return le.createElement(cde,{value:l},le.createElement(pde,{value:p},le.createElement(wde,{value:r},le.createElement(Ce.div,{className:Z1("chakra-tabs",o),ref:n,...m,__css:r.root},i))))});hF.displayName="Tabs";var Cde=Le(function(t,n){const r=Sde(),i={...t.style,...r},o=kv();return le.createElement(Ce.div,{ref:n,...t,className:Z1("chakra-tabs__tab-indicator",t.className),style:i,__css:o.indicator})});Cde.displayName="TabIndicator";var _de=Le(function(t,n){const r=gde({...t,ref:n}),i=kv(),o={display:"flex",...i.tablist};return le.createElement(Ce.div,{...r,className:Z1("chakra-tabs__tablist",t.className),__css:o})});_de.displayName="TabList";var pF=Le(function(t,n){const r=bde({...t,ref:n}),i=kv();return le.createElement(Ce.div,{outline:"0",...r,className:Z1("chakra-tabs__tab-panel",t.className),__css:i.tabpanel})});pF.displayName="TabPanel";var gF=Le(function(t,n){const r=xde(t),i=kv();return le.createElement(Ce.div,{...r,width:"100%",ref:n,className:Z1("chakra-tabs__tab-panels",t.className),__css:i.tabpanels})});gF.displayName="TabPanels";var mF=Le(function(t,n){const r=kv(),i=mde({...t,ref:n}),o={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return le.createElement(Ce.button,{...i,className:Z1("chakra-tabs__tab",t.className),__css:o})});mF.displayName="Tab";var kde=(...e)=>e.filter(Boolean).join(" ");function Ede(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Pde=["h","minH","height","minHeight"],vF=Le((e,t)=>{const n=bo("Textarea",e),{className:r,rows:i,...o}=Sn(e),a=R9(o),s=i?Ede(n,Pde):n;return le.createElement(Ce.textarea,{ref:t,rows:i,...a,className:kde("chakra-textarea",r),__css:s})});vF.displayName="Textarea";function Ln(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function i(...p){r();for(const g of p)t[g]=l(g);return Ln(e,t)}function o(...p){for(const g of p)g in t||(t[g]=l(g));return Ln(e,t)}function a(){return Object.fromEntries(Object.entries(t).map(([g,m])=>[g,m.selector]))}function s(){return Object.fromEntries(Object.entries(t).map(([g,m])=>[g,m.className]))}function l(p){const y=`chakra-${(["container","root"].includes(p??"")?[e]:[e,p]).filter(Boolean).join("__")}`;return{className:y,selector:`.${y}`,toString:()=>p}}return{parts:i,toPart:l,extend:o,selectors:a,classnames:s,get keys(){return Object.keys(t)},__type:{}}}var Tde=Ln("accordion").parts("root","container","button","panel").extend("icon"),Lde=Ln("alert").parts("title","description","container").extend("icon","spinner"),Ade=Ln("avatar").parts("label","badge","container").extend("excessLabel","group"),Ide=Ln("breadcrumb").parts("link","item","container").extend("separator");Ln("button").parts();var Mde=Ln("checkbox").parts("control","icon","container").extend("label");Ln("progress").parts("track","filledTrack").extend("label");var Rde=Ln("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Ode=Ln("editable").parts("preview","input","textarea"),Nde=Ln("form").parts("container","requiredIndicator","helperText"),Dde=Ln("formError").parts("text","icon"),zde=Ln("input").parts("addon","field","element"),Fde=Ln("list").parts("container","item","icon"),Bde=Ln("menu").parts("button","list","item").extend("groupTitle","command","divider"),$de=Ln("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Hde=Ln("numberinput").parts("root","field","stepperGroup","stepper");Ln("pininput").parts("field");var Wde=Ln("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),Vde=Ln("progress").parts("label","filledTrack","track"),Ude=Ln("radio").parts("container","control","label"),Gde=Ln("select").parts("field","icon"),jde=Ln("slider").parts("container","track","thumb","filledTrack","mark"),qde=Ln("stat").parts("container","label","helpText","number","icon"),Kde=Ln("switch").parts("container","track","thumb"),Zde=Ln("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),Yde=Ln("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),Xde=Ln("tag").parts("container","label","closeButton");function zi(e,t){Qde(e)&&(e="100%");var n=Jde(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function ry(e){return Math.min(1,Math.max(0,e))}function Qde(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function Jde(e){return typeof e=="string"&&e.indexOf("%")!==-1}function yF(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function iy(e){return e<=1?"".concat(Number(e)*100,"%"):e}function Yf(e){return e.length===1?"0"+e:String(e)}function efe(e,t,n){return{r:zi(e,255)*255,g:zi(t,255)*255,b:zi(n,255)*255}}function GT(e,t,n){e=zi(e,255),t=zi(t,255),n=zi(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=0,s=(r+i)/2;if(r===i)a=0,o=0;else{var l=r-i;switch(a=s>.5?l/(2-r-i):l/(r+i),r){case e:o=(t-n)/l+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function tfe(e,t,n){var r,i,o;if(e=zi(e,360),t=zi(t,100),n=zi(n,100),t===0)i=n,o=n,r=n;else{var a=n<.5?n*(1+t):n+t-n*t,s=2*n-a;r=oS(s,a,e+1/3),i=oS(s,a,e),o=oS(s,a,e-1/3)}return{r:r*255,g:i*255,b:o*255}}function jT(e,t,n){e=zi(e,255),t=zi(t,255),n=zi(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=r,s=r-i,l=r===0?0:s/r;if(r===i)o=0;else{switch(r){case e:o=(t-n)/s+(t>16,g:(e&65280)>>8,b:e&255}}var W6={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function afe(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,o=null,a=!1,s=!1;return typeof e=="string"&&(e=ufe(e)),typeof e=="object"&&(mu(e.r)&&mu(e.g)&&mu(e.b)?(t=efe(e.r,e.g,e.b),a=!0,s=String(e.r).substr(-1)==="%"?"prgb":"rgb"):mu(e.h)&&mu(e.s)&&mu(e.v)?(r=iy(e.s),i=iy(e.v),t=nfe(e.h,r,i),a=!0,s="hsv"):mu(e.h)&&mu(e.s)&&mu(e.l)&&(r=iy(e.s),o=iy(e.l),t=tfe(e.h,r,o),a=!0,s="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=yF(n),{ok:a,format:e.format||s,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var sfe="[-\\+]?\\d+%?",lfe="[-\\+]?\\d*\\.\\d+%?",Yc="(?:".concat(lfe,")|(?:").concat(sfe,")"),aS="[\\s|\\(]+(".concat(Yc,")[,|\\s]+(").concat(Yc,")[,|\\s]+(").concat(Yc,")\\s*\\)?"),sS="[\\s|\\(]+(".concat(Yc,")[,|\\s]+(").concat(Yc,")[,|\\s]+(").concat(Yc,")[,|\\s]+(").concat(Yc,")\\s*\\)?"),_s={CSS_UNIT:new RegExp(Yc),rgb:new RegExp("rgb"+aS),rgba:new RegExp("rgba"+sS),hsl:new RegExp("hsl"+aS),hsla:new RegExp("hsla"+sS),hsv:new RegExp("hsv"+aS),hsva:new RegExp("hsva"+sS),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function ufe(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(W6[e])e=W6[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=_s.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=_s.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=_s.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=_s.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=_s.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=_s.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=_s.hex8.exec(e),n?{r:ua(n[1]),g:ua(n[2]),b:ua(n[3]),a:KT(n[4]),format:t?"name":"hex8"}:(n=_s.hex6.exec(e),n?{r:ua(n[1]),g:ua(n[2]),b:ua(n[3]),format:t?"name":"hex"}:(n=_s.hex4.exec(e),n?{r:ua(n[1]+n[1]),g:ua(n[2]+n[2]),b:ua(n[3]+n[3]),a:KT(n[4]+n[4]),format:t?"name":"hex8"}:(n=_s.hex3.exec(e),n?{r:ua(n[1]+n[1]),g:ua(n[2]+n[2]),b:ua(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function mu(e){return Boolean(_s.CSS_UNIT.exec(String(e)))}var Ev=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=ofe(t)),this.originalInput=t;var i=afe(t);this.originalInput=t,this.r=i.r,this.g=i.g,this.b=i.b,this.a=i.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:i.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=i.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,i,o=t.r/255,a=t.g/255,s=t.b/255;return o<=.03928?n=o/12.92:n=Math.pow((o+.055)/1.055,2.4),a<=.03928?r=a/12.92:r=Math.pow((a+.055)/1.055,2.4),s<=.03928?i=s/12.92:i=Math.pow((s+.055)/1.055,2.4),.2126*n+.7152*r+.0722*i},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=yF(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=jT(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=jT(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=GT(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=GT(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),qT(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),rfe(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(zi(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(zi(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+qT(this.r,this.g,this.b,!1),n=0,r=Object.entries(W6);n=0,o=!n&&i&&(t.startsWith("hex")||t==="name");return o?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=ry(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=ry(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=ry(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=ry(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),i=new e(t).toRgb(),o=n/100,a={r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a};return new e(a)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),i=360/n,o=[this];for(r.h=(r.h-(i*t>>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(new e(r));return o},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;t--;)a.push(new e({h:r,s:i,v:o})),o=(o+s)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,i=[this],o=360/t,a=1;an.length;)e.count=null,e.seed&&(e.seed+=1),n.push(xF(e));return e.count=t,n}var r=cfe(e.hue,e.seed),i=dfe(r,e),o=ffe(r,i,e),a={h:r,s:i,v:o};return e.alpha!==void 0&&(a.a=e.alpha),new Ev(a)}function cfe(e,t){var n=pfe(e),r=y4(n,t);return r<0&&(r=360+r),r}function dfe(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return y4([0,100],t.seed);var n=bF(e).saturationRange,r=n[0],i=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=i-10;break;case"light":i=55;break}return y4([r,i],t.seed)}function ffe(e,t,n){var r=hfe(e,t),i=100;switch(n.luminosity){case"dark":i=r+20;break;case"light":r=(i+r)/2;break;case"random":r=0,i=100;break}return y4([r,i],n.seed)}function hfe(e,t){for(var n=bF(e).lowerBounds,r=0;r=i&&t<=a){var l=(s-o)/(a-i),d=o-l*i;return l*t+d}}return 0}function pfe(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=wF.find(function(a){return a.name===e});if(n){var r=SF(n);if(r.hueRange)return r.hueRange}var i=new Ev(e);if(i.isValid){var o=i.toHsv().h;return[o,o]}}return[0,360]}function bF(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=wF;t=i.hueRange[0]&&e<=i.hueRange[1])return i}throw Error("Color not found")}function y4(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var i=t/233280;return Math.floor(r+i*(n-r))}function SF(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],i=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,i]}}var wF=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function gfe(e,t,n,r,i){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,ii=(e,t,n)=>{const r=gfe(e,`colors.${t}`,t),{isValid:i}=new Ev(r);return i?r:n},vfe=e=>t=>{const n=ii(t,e);return new Ev(n).isDark()?"dark":"light"},yfe=e=>t=>vfe(e)(t)==="dark",R1=(e,t)=>n=>{const r=ii(n,e);return new Ev(r).setAlpha(t).toRgbString()};function ZT(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( + 45deg, + ${t} 25%, + transparent 25%, + transparent 50%, + ${t} 50%, + ${t} 75%, + transparent 75%, + transparent + )`,backgroundSize:`${e} ${e}`}}function xfe(e){const t=xF().toHexString();return!e||mfe(e)?t:e.string&&e.colors?Sfe(e.string,e.colors):e.string&&!e.colors?bfe(e.string):e.colors&&!e.string?wfe(e.colors):t}function bfe(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function Sfe(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function S7(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function Cfe(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function CF(e){return Cfe(e)&&e.reference?e.reference:String(e)}var Y5=(e,...t)=>t.map(CF).join(` ${e} `).replace(/calc/g,""),YT=(...e)=>`calc(${Y5("+",...e)})`,XT=(...e)=>`calc(${Y5("-",...e)})`,V6=(...e)=>`calc(${Y5("*",...e)})`,QT=(...e)=>`calc(${Y5("/",...e)})`,JT=e=>{const t=CF(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:V6(t,-1)},wu=Object.assign(e=>({add:(...t)=>wu(YT(e,...t)),subtract:(...t)=>wu(XT(e,...t)),multiply:(...t)=>wu(V6(e,...t)),divide:(...t)=>wu(QT(e,...t)),negate:()=>wu(JT(e)),toString:()=>e.toString()}),{add:YT,subtract:XT,multiply:V6,divide:QT,negate:JT});function _fe(e){return!Number.isInteger(parseFloat(e.toString()))}function kfe(e,t="-"){return e.replace(/\s+/g,t)}function _F(e){const t=kfe(e.toString());return t.includes("\\.")?e:_fe(e)?t.replace(".","\\."):e}function Efe(e,t=""){return[t,_F(e)].filter(Boolean).join("-")}function Pfe(e,t){return`var(${_F(e)}${t?`, ${t}`:""})`}function Tfe(e,t=""){return`--${Efe(e,t)}`}function Go(e,t){const n=Tfe(e,t?.prefix);return{variable:n,reference:Pfe(n,Lfe(t?.fallback))}}function Lfe(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Afe,defineMultiStyleConfig:Ife}=ir(Tde.keys),Mfe={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},Rfe={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Ofe={pt:"2",px:"4",pb:"5"},Nfe={fontSize:"1.25em"},Dfe=Afe({container:Mfe,button:Rfe,panel:Ofe,icon:Nfe}),zfe=Ife({baseStyle:Dfe}),{definePartsStyle:Pv,defineMultiStyleConfig:Ffe}=ir(Lde.keys),Nu=bd("alert-fg"),Tv=bd("alert-bg"),Bfe=Pv({container:{bg:Tv.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:Nu.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:Nu.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function w7(e){const{theme:t,colorScheme:n}=e,r=ii(t,`${n}.100`,n),i=R1(`${n}.200`,.16)(t);return Te(r,i)(e)}var $fe=Pv(e=>{const{colorScheme:t}=e,n=Te(`${t}.500`,`${t}.200`)(e);return{container:{[Tv.variable]:w7(e),[Nu.variable]:`colors.${n}`}}}),Hfe=Pv(e=>{const{colorScheme:t}=e,n=Te(`${t}.500`,`${t}.200`)(e);return{container:{[Tv.variable]:w7(e),[Nu.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:Nu.reference}}}),Wfe=Pv(e=>{const{colorScheme:t}=e,n=Te(`${t}.500`,`${t}.200`)(e);return{container:{[Tv.variable]:w7(e),[Nu.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:Nu.reference}}}),Vfe=Pv(e=>{const{colorScheme:t}=e,n=Te(`${t}.500`,`${t}.200`)(e),r=Te("white","gray.900")(e);return{container:{[Tv.variable]:`colors.${n}`,[Nu.variable]:`colors.${r}`,color:Nu.reference}}}),Ufe={subtle:$fe,"left-accent":Hfe,"top-accent":Wfe,solid:Vfe},Gfe=Ffe({baseStyle:Bfe,variants:Ufe,defaultProps:{variant:"subtle",colorScheme:"blue"}}),kF={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},jfe={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},qfe={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},Kfe={...kF,...jfe,container:qfe},EF=Kfe,Zfe=e=>typeof e=="function";function Hr(e,...t){return Zfe(e)?e(...t):e}var{definePartsStyle:PF,defineMultiStyleConfig:Yfe}=ir(Ade.keys),Xfe=e=>({borderRadius:"full",border:"0.2em solid",borderColor:Te("white","gray.800")(e)}),Qfe=e=>({bg:Te("gray.200","whiteAlpha.400")(e)}),Jfe=e=>{const{name:t,theme:n}=e,r=t?xfe({string:t}):"gray.400",i=yfe(r)(n);let o="white";i||(o="gray.800");const a=Te("white","gray.800")(e);return{bg:r,color:o,borderColor:a,verticalAlign:"top"}},ehe=PF(e=>({badge:Hr(Xfe,e),excessLabel:Hr(Qfe,e),container:Hr(Jfe,e)}));function Mc(e){const t=e!=="100%"?EF[e]:void 0;return PF({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var the={"2xs":Mc(4),xs:Mc(6),sm:Mc(8),md:Mc(12),lg:Mc(16),xl:Mc(24),"2xl":Mc(32),full:Mc("100%")},nhe=Yfe({baseStyle:ehe,sizes:the,defaultProps:{size:"md"}}),rhe={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},ihe=e=>{const{colorScheme:t,theme:n}=e,r=R1(`${t}.500`,.6)(n);return{bg:Te(`${t}.500`,r)(e),color:Te("white","whiteAlpha.800")(e)}},ohe=e=>{const{colorScheme:t,theme:n}=e,r=R1(`${t}.200`,.16)(n);return{bg:Te(`${t}.100`,r)(e),color:Te(`${t}.800`,`${t}.200`)(e)}},ahe=e=>{const{colorScheme:t,theme:n}=e,r=R1(`${t}.200`,.8)(n),i=ii(n,`${t}.500`),o=Te(i,r)(e);return{color:o,boxShadow:`inset 0 0 0px 1px ${o}`}},she={solid:ihe,subtle:ohe,outline:ahe},Jg={baseStyle:rhe,variants:she,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:lhe,definePartsStyle:uhe}=ir(Ide.keys),che={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},dhe=uhe({link:che}),fhe=lhe({baseStyle:dhe}),hhe={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},TF=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:Te("inherit","whiteAlpha.900")(e),_hover:{bg:Te("gray.100","whiteAlpha.200")(e)},_active:{bg:Te("gray.200","whiteAlpha.300")(e)}};const r=R1(`${t}.200`,.12)(n),i=R1(`${t}.200`,.24)(n);return{color:Te(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:Te(`${t}.50`,r)(e)},_active:{bg:Te(`${t}.100`,i)(e)}}},phe=e=>{const{colorScheme:t}=e,n=Te("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...Hr(TF,e)}},ghe={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},mhe=e=>{const{colorScheme:t}=e;if(t==="gray"){const s=Te("gray.100","whiteAlpha.200")(e);return{bg:s,_hover:{bg:Te("gray.200","whiteAlpha.300")(e),_disabled:{bg:s}},_active:{bg:Te("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:i=`${t}.600`,activeBg:o=`${t}.700`}=ghe[t]??{},a=Te(n,`${t}.200`)(e);return{bg:a,color:Te(r,"gray.800")(e),_hover:{bg:Te(i,`${t}.300`)(e),_disabled:{bg:a}},_active:{bg:Te(o,`${t}.400`)(e)}}},vhe=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:Te(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:Te(`${t}.700`,`${t}.500`)(e)}}},yhe={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},xhe={ghost:TF,outline:phe,solid:mhe,link:vhe,unstyled:yhe},bhe={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},She={baseStyle:hhe,variants:xhe,sizes:bhe,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:o3,defineMultiStyleConfig:whe}=ir(Mde.keys),em=bd("checkbox-size"),Che=e=>{const{colorScheme:t}=e;return{w:em.reference,h:em.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:Te(`${t}.500`,`${t}.200`)(e),borderColor:Te(`${t}.500`,`${t}.200`)(e),color:Te("white","gray.900")(e),_hover:{bg:Te(`${t}.600`,`${t}.300`)(e),borderColor:Te(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:Te("gray.200","transparent")(e),bg:Te("gray.200","whiteAlpha.300")(e),color:Te("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:Te(`${t}.500`,`${t}.200`)(e),borderColor:Te(`${t}.500`,`${t}.200`)(e),color:Te("white","gray.900")(e)},_disabled:{bg:Te("gray.100","whiteAlpha.100")(e),borderColor:Te("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:Te("red.500","red.300")(e)}}},_he={_disabled:{cursor:"not-allowed"}},khe={userSelect:"none",_disabled:{opacity:.4}},Ehe={transitionProperty:"transform",transitionDuration:"normal"},Phe=o3(e=>({icon:Ehe,container:_he,control:Hr(Che,e),label:khe})),The={sm:o3({control:{[em.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:o3({control:{[em.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:o3({control:{[em.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},x4=whe({baseStyle:Phe,sizes:The,defaultProps:{size:"md",colorScheme:"blue"}}),tm=Go("close-button-size"),Lhe=e=>{const t=Te("blackAlpha.100","whiteAlpha.100")(e),n=Te("blackAlpha.200","whiteAlpha.200")(e);return{w:[tm.reference],h:[tm.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Ahe={lg:{[tm.variable]:"sizes.10",fontSize:"md"},md:{[tm.variable]:"sizes.8",fontSize:"xs"},sm:{[tm.variable]:"sizes.6",fontSize:"2xs"}},Ihe={baseStyle:Lhe,sizes:Ahe,defaultProps:{size:"md"}},{variants:Mhe,defaultProps:Rhe}=Jg,Ohe={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},Nhe={baseStyle:Ohe,variants:Mhe,defaultProps:Rhe},Dhe={w:"100%",mx:"auto",maxW:"prose",px:"4"},zhe={baseStyle:Dhe},Fhe={opacity:.6,borderColor:"inherit"},Bhe={borderStyle:"solid"},$he={borderStyle:"dashed"},Hhe={solid:Bhe,dashed:$he},Whe={baseStyle:Fhe,variants:Hhe,defaultProps:{variant:"solid"}},{definePartsStyle:U6,defineMultiStyleConfig:Vhe}=ir(Rde.keys);function Cp(e){return U6(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var Uhe={bg:"blackAlpha.600",zIndex:"overlay"},Ghe={display:"flex",zIndex:"modal",justifyContent:"center"},jhe=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:Te("white","gray.700")(e),color:"inherit",boxShadow:Te("lg","dark-lg")(e)}},qhe={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},Khe={position:"absolute",top:"2",insetEnd:"3"},Zhe={px:"6",py:"2",flex:"1",overflow:"auto"},Yhe={px:"6",py:"4"},Xhe=U6(e=>({overlay:Uhe,dialogContainer:Ghe,dialog:Hr(jhe,e),header:qhe,closeButton:Khe,body:Zhe,footer:Yhe})),Qhe={xs:Cp("xs"),sm:Cp("md"),md:Cp("lg"),lg:Cp("2xl"),xl:Cp("4xl"),full:Cp("full")},Jhe=Vhe({baseStyle:Xhe,sizes:Qhe,defaultProps:{size:"xs"}}),{definePartsStyle:epe,defineMultiStyleConfig:tpe}=ir(Ode.keys),npe={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},rpe={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},ipe={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},ope=epe({preview:npe,input:rpe,textarea:ipe}),ape=tpe({baseStyle:ope}),{definePartsStyle:spe,defineMultiStyleConfig:lpe}=ir(Nde.keys),upe=e=>({marginStart:"1",color:Te("red.500","red.300")(e)}),cpe=e=>({mt:"2",color:Te("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),dpe=spe(e=>({container:{width:"100%",position:"relative"},requiredIndicator:Hr(upe,e),helperText:Hr(cpe,e)})),fpe=lpe({baseStyle:dpe}),{definePartsStyle:hpe,defineMultiStyleConfig:ppe}=ir(Dde.keys),gpe=e=>({color:Te("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),mpe=e=>({marginEnd:"0.5em",color:Te("red.500","red.300")(e)}),vpe=hpe(e=>({text:Hr(gpe,e),icon:Hr(mpe,e)})),ype=ppe({baseStyle:vpe}),xpe={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},bpe={baseStyle:xpe},Spe={fontFamily:"heading",fontWeight:"bold"},wpe={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},Cpe={baseStyle:Spe,sizes:wpe,defaultProps:{size:"xl"}},{definePartsStyle:ku,defineMultiStyleConfig:_pe}=ir(zde.keys),kpe=ku({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),Rc={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},Epe={lg:ku({field:Rc.lg,addon:Rc.lg}),md:ku({field:Rc.md,addon:Rc.md}),sm:ku({field:Rc.sm,addon:Rc.sm}),xs:ku({field:Rc.xs,addon:Rc.xs})};function C7(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||Te("blue.500","blue.300")(e),errorBorderColor:n||Te("red.500","red.300")(e)}}var Ppe=ku(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=C7(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:Te("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:ii(t,r),boxShadow:`0 0 0 1px ${ii(t,r)}`},_focusVisible:{zIndex:1,borderColor:ii(t,n),boxShadow:`0 0 0 1px ${ii(t,n)}`}},addon:{border:"1px solid",borderColor:Te("inherit","whiteAlpha.50")(e),bg:Te("gray.100","whiteAlpha.300")(e)}}}),Tpe=ku(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=C7(e);return{field:{border:"2px solid",borderColor:"transparent",bg:Te("gray.100","whiteAlpha.50")(e),_hover:{bg:Te("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:ii(t,r)},_focusVisible:{bg:"transparent",borderColor:ii(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:Te("gray.100","whiteAlpha.50")(e)}}}),Lpe=ku(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=C7(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:ii(t,r),boxShadow:`0px 1px 0px 0px ${ii(t,r)}`},_focusVisible:{borderColor:ii(t,n),boxShadow:`0px 1px 0px 0px ${ii(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Ape=ku({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),Ipe={outline:Ppe,filled:Tpe,flushed:Lpe,unstyled:Ape},bn=_pe({baseStyle:kpe,sizes:Epe,variants:Ipe,defaultProps:{size:"md",variant:"outline"}}),Mpe=e=>({bg:Te("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),Rpe={baseStyle:Mpe},Ope={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Npe={baseStyle:Ope},{defineMultiStyleConfig:Dpe,definePartsStyle:zpe}=ir(Fde.keys),Fpe={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Bpe=zpe({icon:Fpe}),$pe=Dpe({baseStyle:Bpe}),{defineMultiStyleConfig:Hpe,definePartsStyle:Wpe}=ir(Bde.keys),Vpe=e=>({bg:Te("#fff","gray.700")(e),boxShadow:Te("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),Upe=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:Te("gray.100","whiteAlpha.100")(e)},_active:{bg:Te("gray.200","whiteAlpha.200")(e)},_expanded:{bg:Te("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Gpe={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},jpe={opacity:.6},qpe={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},Kpe={transitionProperty:"common",transitionDuration:"normal"},Zpe=Wpe(e=>({button:Kpe,list:Hr(Vpe,e),item:Hr(Upe,e),groupTitle:Gpe,command:jpe,divider:qpe})),Ype=Hpe({baseStyle:Zpe}),{defineMultiStyleConfig:Xpe,definePartsStyle:G6}=ir($de.keys),Qpe={bg:"blackAlpha.600",zIndex:"modal"},Jpe=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},e1e=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:Te("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:Te("lg","dark-lg")(e)}},t1e={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},n1e={position:"absolute",top:"2",insetEnd:"3"},r1e=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},i1e={px:"6",py:"4"},o1e=G6(e=>({overlay:Qpe,dialogContainer:Hr(Jpe,e),dialog:Hr(e1e,e),header:t1e,closeButton:n1e,body:Hr(r1e,e),footer:i1e}));function Cs(e){return G6(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var a1e={xs:Cs("xs"),sm:Cs("sm"),md:Cs("md"),lg:Cs("lg"),xl:Cs("xl"),"2xl":Cs("2xl"),"3xl":Cs("3xl"),"4xl":Cs("4xl"),"5xl":Cs("5xl"),"6xl":Cs("6xl"),full:Cs("full")},s1e=Xpe({baseStyle:o1e,sizes:a1e,defaultProps:{size:"md"}}),l1e={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},LF=l1e,{defineMultiStyleConfig:u1e,definePartsStyle:AF}=ir(Hde.keys),_7=Go("number-input-stepper-width"),IF=Go("number-input-input-padding"),c1e=wu(_7).add("0.5rem").toString(),d1e={[_7.variable]:"sizes.6",[IF.variable]:c1e},f1e=e=>{var t;return((t=Hr(bn.baseStyle,e))==null?void 0:t.field)??{}},h1e={width:[_7.reference]},p1e=e=>({borderStart:"1px solid",borderStartColor:Te("inherit","whiteAlpha.300")(e),color:Te("inherit","whiteAlpha.800")(e),_active:{bg:Te("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),g1e=AF(e=>({root:d1e,field:f1e,stepperGroup:h1e,stepper:Hr(p1e,e)??{}}));function oy(e){var t,n;const r=(t=bn.sizes)==null?void 0:t[e],i={lg:"md",md:"md",sm:"sm",xs:"sm"},o=((n=r.field)==null?void 0:n.fontSize)??"md",a=LF.fontSizes[o];return AF({field:{...r.field,paddingInlineEnd:IF.reference,verticalAlign:"top"},stepper:{fontSize:wu(a).multiply(.75).toString(),_first:{borderTopEndRadius:i[e]},_last:{borderBottomEndRadius:i[e],mt:"-1px",borderTopWidth:1}}})}var m1e={xs:oy("xs"),sm:oy("sm"),md:oy("md"),lg:oy("lg")},v1e=u1e({baseStyle:g1e,sizes:m1e,variants:bn.variants,defaultProps:bn.defaultProps}),eL,y1e={...(eL=bn.baseStyle)==null?void 0:eL.field,textAlign:"center"},x1e={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},tL,b1e={outline:e=>{var t,n;return((n=Hr((t=bn.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=Hr((t=bn.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=Hr((t=bn.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((tL=bn.variants)==null?void 0:tL.unstyled.field)??{}},S1e={baseStyle:y1e,sizes:x1e,variants:b1e,defaultProps:bn.defaultProps},{defineMultiStyleConfig:w1e,definePartsStyle:C1e}=ir(Wde.keys),lS=Go("popper-bg"),_1e=Go("popper-arrow-bg"),k1e=Go("popper-arrow-shadow-color"),E1e={zIndex:10},P1e=e=>{const t=Te("white","gray.700")(e),n=Te("gray.200","whiteAlpha.300")(e);return{[lS.variable]:`colors.${t}`,bg:lS.reference,[_1e.variable]:lS.reference,[k1e.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},T1e={px:3,py:2,borderBottomWidth:"1px"},L1e={px:3,py:2},A1e={px:3,py:2,borderTopWidth:"1px"},I1e={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},M1e=C1e(e=>({popper:E1e,content:P1e(e),header:T1e,body:L1e,footer:A1e,closeButton:I1e})),R1e=w1e({baseStyle:M1e}),{defineMultiStyleConfig:O1e,definePartsStyle:Cg}=ir(Vde.keys),N1e=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:i}=e,o=Te(ZT(),ZT("1rem","rgba(0,0,0,0.1)"))(e),a=Te(`${t}.500`,`${t}.200`)(e),s=`linear-gradient( + to right, + transparent 0%, + ${ii(n,a)} 50%, + transparent 100% + )`;return{...!r&&i&&o,...r?{bgImage:s}:{bgColor:a}}},D1e={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},z1e=e=>({bg:Te("gray.100","whiteAlpha.300")(e)}),F1e=e=>({transitionProperty:"common",transitionDuration:"slow",...N1e(e)}),B1e=Cg(e=>({label:D1e,filledTrack:F1e(e),track:z1e(e)})),$1e={xs:Cg({track:{h:"1"}}),sm:Cg({track:{h:"2"}}),md:Cg({track:{h:"3"}}),lg:Cg({track:{h:"4"}})},H1e=O1e({sizes:$1e,baseStyle:B1e,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:W1e,definePartsStyle:a3}=ir(Ude.keys),V1e=e=>{var t;const n=(t=Hr(x4.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},U1e=a3(e=>{var t,n,r,i;return{label:(n=(t=x4).baseStyle)==null?void 0:n.call(t,e).label,container:(i=(r=x4).baseStyle)==null?void 0:i.call(r,e).container,control:V1e(e)}}),G1e={md:a3({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:a3({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:a3({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},j1e=W1e({baseStyle:U1e,sizes:G1e,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:q1e,definePartsStyle:K1e}=ir(Gde.keys),Z1e=e=>{var t;return{...(t=bn.baseStyle)==null?void 0:t.field,bg:Te("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:Te("white","gray.700")(e)}}},Y1e={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},X1e=K1e(e=>({field:Z1e(e),icon:Y1e})),ay={paddingInlineEnd:"8"},nL,rL,iL,oL,aL,sL,lL,uL,Q1e={lg:{...(nL=bn.sizes)==null?void 0:nL.lg,field:{...(rL=bn.sizes)==null?void 0:rL.lg.field,...ay}},md:{...(iL=bn.sizes)==null?void 0:iL.md,field:{...(oL=bn.sizes)==null?void 0:oL.md.field,...ay}},sm:{...(aL=bn.sizes)==null?void 0:aL.sm,field:{...(sL=bn.sizes)==null?void 0:sL.sm.field,...ay}},xs:{...(lL=bn.sizes)==null?void 0:lL.xs,field:{...(uL=bn.sizes)==null?void 0:uL.sm.field,...ay},icon:{insetEnd:"1"}}},J1e=q1e({baseStyle:X1e,sizes:Q1e,variants:bn.variants,defaultProps:bn.defaultProps}),e0e=bd("skeleton-start-color"),t0e=bd("skeleton-end-color"),n0e=e=>{const t=Te("gray.100","gray.800")(e),n=Te("gray.400","gray.600")(e),{startColor:r=t,endColor:i=n,theme:o}=e,a=ii(o,r),s=ii(o,i);return{[e0e.variable]:a,[t0e.variable]:s,opacity:.7,borderRadius:"2px",borderColor:a,background:s}},r0e={baseStyle:n0e},i0e=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:Te("white","gray.700")(e)}}),o0e={baseStyle:i0e},{defineMultiStyleConfig:a0e,definePartsStyle:X5}=ir(jde.keys),jm=bd("slider-thumb-size"),qm=bd("slider-track-size"),s0e=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...S7({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},l0e=e=>({...S7({orientation:e.orientation,horizontal:{h:qm.reference},vertical:{w:qm.reference}}),overflow:"hidden",borderRadius:"sm",bg:Te("gray.200","whiteAlpha.200")(e),_disabled:{bg:Te("gray.300","whiteAlpha.300")(e)}}),u0e=e=>{const{orientation:t}=e;return{...S7({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:jm.reference,h:jm.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},c0e=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:Te(`${t}.500`,`${t}.200`)(e)}},d0e=X5(e=>({container:s0e(e),track:l0e(e),thumb:u0e(e),filledTrack:c0e(e)})),f0e=X5({container:{[jm.variable]:"sizes.4",[qm.variable]:"sizes.1"}}),h0e=X5({container:{[jm.variable]:"sizes.3.5",[qm.variable]:"sizes.1"}}),p0e=X5({container:{[jm.variable]:"sizes.2.5",[qm.variable]:"sizes.0.5"}}),g0e={lg:f0e,md:h0e,sm:p0e},m0e=a0e({baseStyle:d0e,sizes:g0e,defaultProps:{size:"md",colorScheme:"blue"}}),zf=Go("spinner-size"),v0e={width:[zf.reference],height:[zf.reference]},y0e={xs:{[zf.variable]:"sizes.3"},sm:{[zf.variable]:"sizes.4"},md:{[zf.variable]:"sizes.6"},lg:{[zf.variable]:"sizes.8"},xl:{[zf.variable]:"sizes.12"}},x0e={baseStyle:v0e,sizes:y0e,defaultProps:{size:"md"}},{defineMultiStyleConfig:b0e,definePartsStyle:MF}=ir(qde.keys),S0e={fontWeight:"medium"},w0e={opacity:.8,marginBottom:"2"},C0e={verticalAlign:"baseline",fontWeight:"semibold"},_0e={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},k0e=MF({container:{},label:S0e,helpText:w0e,number:C0e,icon:_0e}),E0e={md:MF({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},P0e=b0e({baseStyle:k0e,sizes:E0e,defaultProps:{size:"md"}}),{defineMultiStyleConfig:T0e,definePartsStyle:s3}=ir(Kde.keys),nm=Go("switch-track-width"),rh=Go("switch-track-height"),uS=Go("switch-track-diff"),L0e=wu.subtract(nm,rh),j6=Go("switch-thumb-x"),A0e=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[nm.reference],height:[rh.reference],transitionProperty:"common",transitionDuration:"fast",bg:Te("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:Te(`${t}.500`,`${t}.200`)(e)}}},I0e={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[rh.reference],height:[rh.reference],_checked:{transform:`translateX(${j6.reference})`}},M0e=s3(e=>({container:{[uS.variable]:L0e,[j6.variable]:uS.reference,_rtl:{[j6.variable]:wu(uS).negate().toString()}},track:A0e(e),thumb:I0e})),R0e={sm:s3({container:{[nm.variable]:"1.375rem",[rh.variable]:"sizes.3"}}),md:s3({container:{[nm.variable]:"1.875rem",[rh.variable]:"sizes.4"}}),lg:s3({container:{[nm.variable]:"2.875rem",[rh.variable]:"sizes.6"}})},O0e=T0e({baseStyle:M0e,sizes:R0e,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:N0e,definePartsStyle:d1}=ir(Zde.keys),D0e=d1({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),b4={"&[data-is-numeric=true]":{textAlign:"end"}},z0e=d1(e=>{const{colorScheme:t}=e;return{th:{color:Te("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Te(`${t}.100`,`${t}.700`)(e),...b4},td:{borderBottom:"1px",borderColor:Te(`${t}.100`,`${t}.700`)(e),...b4},caption:{color:Te("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),F0e=d1(e=>{const{colorScheme:t}=e;return{th:{color:Te("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Te(`${t}.100`,`${t}.700`)(e),...b4},td:{borderBottom:"1px",borderColor:Te(`${t}.100`,`${t}.700`)(e),...b4},caption:{color:Te("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:Te(`${t}.100`,`${t}.700`)(e)},td:{background:Te(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),B0e={simple:z0e,striped:F0e,unstyled:{}},$0e={sm:d1({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:d1({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:d1({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},H0e=N0e({baseStyle:D0e,variants:B0e,sizes:$0e,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:W0e,definePartsStyle:Al}=ir(Yde.keys),V0e=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},U0e=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},G0e=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},j0e={p:4},q0e=Al(e=>({root:V0e(e),tab:U0e(e),tablist:G0e(e),tabpanel:j0e})),K0e={sm:Al({tab:{py:1,px:4,fontSize:"sm"}}),md:Al({tab:{fontSize:"md",py:2,px:4}}),lg:Al({tab:{fontSize:"lg",py:3,px:4}})},Z0e=Al(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",i=n==="vertical"?"borderStart":"borderBottom",o=r?"marginStart":"marginBottom";return{tablist:{[i]:"2px solid",borderColor:"inherit"},tab:{[i]:"2px solid",borderColor:"transparent",[o]:"-2px",_selected:{color:Te(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:Te("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),Y0e=Al(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:Te(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:Te("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),X0e=Al(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:Te("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:Te("#fff","gray.800")(e),color:Te(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),Q0e=Al(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:ii(n,`${t}.700`),bg:ii(n,`${t}.100`)}}}}),J0e=Al(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:Te("gray.600","inherit")(e),_selected:{color:Te("#fff","gray.800")(e),bg:Te(`${t}.600`,`${t}.300`)(e)}}}}),ege=Al({}),tge={line:Z0e,enclosed:Y0e,"enclosed-colored":X0e,"soft-rounded":Q0e,"solid-rounded":J0e,unstyled:ege},nge=W0e({baseStyle:q0e,sizes:K0e,variants:tge,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:rge,definePartsStyle:ih}=ir(Xde.keys),ige={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},oge={lineHeight:1.2,overflow:"visible"},age={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},sge=ih({container:ige,label:oge,closeButton:age}),lge={sm:ih({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:ih({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:ih({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},uge={subtle:ih(e=>{var t;return{container:(t=Jg.variants)==null?void 0:t.subtle(e)}}),solid:ih(e=>{var t;return{container:(t=Jg.variants)==null?void 0:t.solid(e)}}),outline:ih(e=>{var t;return{container:(t=Jg.variants)==null?void 0:t.outline(e)}})},cge=rge({variants:uge,baseStyle:sge,sizes:lge,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),cL,dge={...(cL=bn.baseStyle)==null?void 0:cL.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},dL,fge={outline:e=>{var t;return((t=bn.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=bn.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=bn.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((dL=bn.variants)==null?void 0:dL.unstyled.field)??{}},fL,hL,pL,gL,hge={xs:((fL=bn.sizes)==null?void 0:fL.xs.field)??{},sm:((hL=bn.sizes)==null?void 0:hL.sm.field)??{},md:((pL=bn.sizes)==null?void 0:pL.md.field)??{},lg:((gL=bn.sizes)==null?void 0:gL.lg.field)??{}},pge={baseStyle:dge,sizes:hge,variants:fge,defaultProps:{size:"md",variant:"outline"}},cS=Go("tooltip-bg"),mL=Go("tooltip-fg"),gge=Go("popper-arrow-bg"),mge=e=>{const t=Te("gray.700","gray.300")(e),n=Te("whiteAlpha.900","gray.900")(e);return{bg:cS.reference,color:mL.reference,[cS.variable]:`colors.${t}`,[mL.variable]:`colors.${n}`,[gge.variable]:cS.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},vge={baseStyle:mge},yge={Accordion:zfe,Alert:Gfe,Avatar:nhe,Badge:Jg,Breadcrumb:fhe,Button:She,Checkbox:x4,CloseButton:Ihe,Code:Nhe,Container:zhe,Divider:Whe,Drawer:Jhe,Editable:ape,Form:fpe,FormError:ype,FormLabel:bpe,Heading:Cpe,Input:bn,Kbd:Rpe,Link:Npe,List:$pe,Menu:Ype,Modal:s1e,NumberInput:v1e,PinInput:S1e,Popover:R1e,Progress:H1e,Radio:j1e,Select:J1e,Skeleton:r0e,SkipLink:o0e,Slider:m0e,Spinner:x0e,Stat:P0e,Switch:O0e,Table:H0e,Tabs:nge,Tag:cge,Textarea:pge,Tooltip:vge},xge={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},bge=xge,Sge={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},wge=Sge,Cge={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},_ge=Cge,kge={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},Ege=kge,Pge={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},Tge=Pge,Lge={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Age={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Ige={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Mge={property:Lge,easing:Age,duration:Ige},Rge=Mge,Oge={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},Nge=Oge,Dge={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},zge=Dge,Fge={breakpoints:wge,zIndices:Nge,radii:Ege,blur:zge,colors:_ge,...LF,sizes:EF,shadows:Tge,space:kF,borders:bge,transition:Rge},Bge={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},$ge={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function Hge(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var Wge=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function Vge(e){return Hge(e)?Wge.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var Uge="ltr",Gge={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},RF={semanticTokens:Bge,direction:Uge,...Fge,components:yge,styles:$ge,config:Gge};function jge(e,t){const n=kr(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function q6(e,...t){return qge(e)?e(...t):e}var qge=e=>typeof e=="function";function Kge(e,t){const n=e??"bottom",i={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return i?.[t]??n}var Zge=(e,t)=>e.find(n=>n.id===t);function vL(e,t){const n=OF(e,t),r=n?e[n].findIndex(i=>i.id===t):-1;return{position:n,index:r}}function OF(e,t){for(const[n,r]of Object.entries(e))if(Zge(r,t))return n}function Yge(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function Xge(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,i=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,o=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",a=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:i,right:o,left:a}}var Qge={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},Sl=Jge(Qge);function Jge(e){let t=e;const n=new Set,r=i=>{t=i(t),n.forEach(o=>o())};return{getState:()=>t,subscribe:i=>(n.add(i),()=>{r(()=>e),n.delete(i)}),removeToast:(i,o)=>{r(a=>({...a,[o]:a[o].filter(s=>s.id!=i)}))},notify:(i,o)=>{const a=eme(i,o),{position:s,id:l}=a;return r(d=>{const g=s.includes("top")?[a,...d[s]??[]]:[...d[s]??[],a];return{...d,[s]:g}}),l},update:(i,o)=>{!i||r(a=>{const s={...a},{position:l,index:d}=vL(s,i);return l&&d!==-1&&(s[l][d]={...s[l][d],...o,message:NF(o)}),s})},closeAll:({positions:i}={})=>{r(o=>(i??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((l,d)=>(l[d]=o[d].map(p=>({...p,requestClose:!0})),l),{...o}))},close:i=>{r(o=>{const a=OF(o,i);return a?{...o,[a]:o[a].map(s=>s.id==i?{...s,requestClose:!0}:s)}:o})},isActive:i=>Boolean(vL(Sl.getState(),i).position)}}var yL=0;function eme(e,t={}){yL+=1;const n=t.id??yL,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>Sl.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var tme=e=>{const{status:t,variant:n="solid",id:r,title:i,isClosable:o,onClose:a,description:s,icon:l}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return le.createElement(aD,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},S(lD,{children:l}),le.createElement(Ce.div,{flex:"1",maxWidth:"100%"},i&&S(uD,{id:d?.title,children:i}),s&&S(sD,{id:d?.description,display:"block",children:s})),o&&S(W5,{size:"sm",onClick:a,position:"absolute",insetEnd:1,top:1}))};function NF(e={}){const{render:t,toastComponent:n=tme}=e;return i=>typeof t=="function"?t(i):S(n,{...i,...e})}function nme(e,t){const n=i=>({...t,...i,position:Kge(i?.position??t?.position,e)}),r=i=>{const o=n(i),a=NF(o);return Sl.notify(a,o)};return r.update=(i,o)=>{Sl.update(i,n(o))},r.promise=(i,o)=>{const a=r({...o.loading,status:"loading",duration:null});i.then(s=>r.update(a,{status:"success",duration:5e3,...q6(o.success,s)})).catch(s=>r.update(a,{status:"error",duration:5e3,...q6(o.error,s)}))},r.closeAll=Sl.closeAll,r.close=Sl.close,r.isActive=Sl.isActive,r}function kd(e){const{theme:t}=_O();return C.exports.useMemo(()=>nme(t.direction,e),[e,t.direction])}var rme={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},DF=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:i,requestClose:o=!1,position:a="bottom",duration:s=5e3,containerStyle:l,motionVariants:d=rme,toastSpacing:p="0.5rem"}=e,[g,m]=C.exports.useState(s),y=bte();E1(()=>{y||r?.()},[y]),E1(()=>{m(s)},[s]);const b=()=>m(null),w=()=>m(s),P=()=>{y&&i()};C.exports.useEffect(()=>{y&&o&&i()},[y,o,i]),jge(P,g);const E=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:p,...l}),[l,p]),k=C.exports.useMemo(()=>Yge(a),[a]);return le.createElement(ns.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:w,custom:{position:a},style:k},le.createElement(Ce.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:E},q6(n,{id:t,onClose:P})))});DF.displayName="ToastComponent";var ime=e=>{const t=C.exports.useSyncExternalStore(Sl.subscribe,Sl.getState,Sl.getState),{children:n,motionVariants:r,component:i=DF,portalProps:o}=e,s=Object.keys(t).map(l=>{const d=t[l];return S("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${l}`,style:Xge(l),children:S(Hu,{initial:!1,children:d.map(p=>S(i,{motionVariants:r,...p},p.id))})},l)});return oe(Bn,{children:[n,S(xh,{...o,children:s})]})};function ome(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function ame(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var sme={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function sg(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var K6=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},Z6=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function lme(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:i,closeOnEsc:o=!0,onOpen:a,onClose:s,placement:l,id:d,isOpen:p,defaultIsOpen:g,arrowSize:m=10,arrowShadowColor:y,arrowPadding:b,modifiers:w,isDisabled:P,gutter:E,offset:k,direction:L,...M}=e,{isOpen:N,onOpen:F,onClose:B}=XD({isOpen:p,defaultIsOpen:g,onOpen:a,onClose:s}),{referenceRef:z,getPopperProps:j,getArrowInnerProps:q,getArrowProps:Y}=YD({enabled:N,placement:l,arrowPadding:b,modifiers:w,gutter:E,offset:k,direction:L}),ge=C.exports.useId(),ve=`tooltip-${d??ge}`,we=C.exports.useRef(null),be=C.exports.useRef(),J=C.exports.useRef(),U=C.exports.useCallback(()=>{J.current&&(clearTimeout(J.current),J.current=void 0),B()},[B]),ee=ume(we,U),Q=C.exports.useCallback(()=>{if(!P&&!be.current){ee();const ke=Z6(we);be.current=ke.setTimeout(F,t)}},[ee,P,F,t]),W=C.exports.useCallback(()=>{be.current&&(clearTimeout(be.current),be.current=void 0);const ke=Z6(we);J.current=ke.setTimeout(U,n)},[n,U]),ie=C.exports.useCallback(()=>{N&&r&&W()},[r,W,N]),de=C.exports.useCallback(()=>{N&&i&&W()},[i,W,N]),Se=C.exports.useCallback(ke=>{N&&ke.key==="Escape"&&W()},[N,W]);T6(()=>K6(we),"keydown",o?Se:void 0),C.exports.useEffect(()=>()=>{clearTimeout(be.current),clearTimeout(J.current)},[]),T6(()=>we.current,"mouseleave",W);const De=C.exports.useCallback((ke={},Ve=null)=>({...ke,ref:Fn(we,Ve,z),onMouseEnter:sg(ke.onMouseEnter,Q),onClick:sg(ke.onClick,ie),onMouseDown:sg(ke.onMouseDown,de),onFocus:sg(ke.onFocus,Q),onBlur:sg(ke.onBlur,W),"aria-describedby":N?ve:void 0}),[Q,W,de,N,ve,ie,z]),Me=C.exports.useCallback((ke={},Ve=null)=>j({...ke,style:{...ke.style,[Zr.arrowSize.var]:m?`${m}px`:void 0,[Zr.arrowShadowColor.var]:y}},Ve),[j,m,y]),Ue=C.exports.useCallback((ke={},Ve=null)=>{const ot={...ke.style,position:"relative",transformOrigin:Zr.transformOrigin.varRef};return{ref:Ve,...M,...ke,id:ve,role:"tooltip",style:ot}},[M,ve]);return{isOpen:N,show:Q,hide:W,getTriggerProps:De,getTooltipProps:Ue,getTooltipPositionerProps:Me,getArrowProps:Y,getArrowInnerProps:q}}var dS="chakra-ui:close-tooltip";function ume(e,t){return C.exports.useEffect(()=>{const n=K6(e);return n.addEventListener(dS,t),()=>n.removeEventListener(dS,t)},[t,e]),()=>{const n=K6(e),r=Z6(e);n.dispatchEvent(new r.CustomEvent(dS))}}var cme=Ce(ns.div),Qi=Le((e,t)=>{const n=bo("Tooltip",e),r=Sn(e),i=W1(),{children:o,label:a,shouldWrapChildren:s,"aria-label":l,hasArrow:d,bg:p,portalProps:g,background:m,backgroundColor:y,bgColor:b,...w}=r,P=m??y??p??b;if(P){n.bg=P;const z=AY(i,"colors",P);n[Zr.arrowBg.var]=z}const E=lme({...w,direction:i.direction}),k=typeof o=="string"||s;let L;if(k)L=le.createElement(Ce.span,{tabIndex:0,...E.getTriggerProps()},o);else{const z=C.exports.Children.only(o);L=C.exports.cloneElement(z,E.getTriggerProps(z.props,z.ref))}const M=!!l,N=E.getTooltipProps({},t),F=M?ome(N,["role","id"]):N,B=ame(N,["role","id"]);return a?oe(Bn,{children:[L,S(Hu,{children:E.isOpen&&le.createElement(xh,{...g},le.createElement(Ce.div,{...E.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},oe(cme,{variants:sme,...F,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[a,M&&le.createElement(Ce.span,{srOnly:!0,...B},l),d&&le.createElement(Ce.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},le.createElement(Ce.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):S(Bn,{children:o})});Qi.displayName="Tooltip";var dme=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:i=!0,theme:o={},environment:a,cssVarsRoot:s}=e,l=S(BD,{environment:a,children:t});return S(RQ,{theme:o,cssVarsRoot:s,children:oe(BR,{colorModeManager:n,options:o.config,children:[i?S(soe,{}):S(aoe,{}),S(NQ,{}),r?S(JD,{zIndex:r,children:l}):l]})})};function fme({children:e,theme:t=RF,toastOptions:n,...r}){return oe(dme,{theme:t,...r,children:[e,S(ime,{...n})]})}function hme(...e){let t=[...e],n=e[e.length-1];return Vge(n)&&t.length>1?t=t.slice(0,t.length-1):n=RF,QX(...t.map(r=>i=>Up(r)?r(i):pme(i,r)))(n)}function pme(...e){return cd({},...e,zF)}function zF(e,t,n,r){if((Up(e)||Up(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...i)=>{const o=Up(e)?e(...i):e,a=Up(t)?t(...i):t;return cd({},o,a,zF)}}function Ls(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:k7(e)?2:E7(e)?3:0}function f1(e,t){return Y1(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function gme(e,t){return Y1(e)===2?e.get(t):e[t]}function FF(e,t,n){var r=Y1(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function BF(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function k7(e){return Sme&&e instanceof Map}function E7(e){return wme&&e instanceof Set}function Mf(e){return e.o||e.t}function P7(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=HF(e);delete t[nr];for(var n=h1(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=mme),Object.freeze(e),t&&fh(e,function(n,r){return T7(r,!0)},!0)),e}function mme(){Ls(2)}function L7(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function Il(e){var t=J6[e];return t||Ls(18,e),t}function vme(e,t){J6[e]||(J6[e]=t)}function Y6(){return Km}function fS(e,t){t&&(Il("Patches"),e.u=[],e.s=[],e.v=t)}function S4(e){X6(e),e.p.forEach(yme),e.p=null}function X6(e){e===Km&&(Km=e.l)}function xL(e){return Km={p:[],l:Km,h:e,m:!0,_:0}}function yme(e){var t=e[nr];t.i===0||t.i===1?t.j():t.O=!0}function hS(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||Il("ES5").S(t,e,r),r?(n[nr].P&&(S4(t),Ls(4)),Du(e)&&(e=w4(t,e),t.l||C4(t,e)),t.u&&Il("Patches").M(n[nr].t,e,t.u,t.s)):e=w4(t,n,[]),S4(t),t.u&&t.v(t.u,t.s),e!==$F?e:void 0}function w4(e,t,n){if(L7(t))return t;var r=t[nr];if(!r)return fh(t,function(o,a){return bL(e,r,t,o,a,n)},!0),t;if(r.A!==e)return t;if(!r.P)return C4(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=r.i===4||r.i===5?r.o=P7(r.k):r.o;fh(r.i===3?new Set(i):i,function(o,a){return bL(e,r,i,o,a,n)}),C4(e,i,!1),n&&e.u&&Il("Patches").R(r,n,e.u,e.s)}return r.o}function bL(e,t,n,r,i,o){if(hd(i)){var a=w4(e,i,o&&t&&t.i!==3&&!f1(t.D,r)?o.concat(r):void 0);if(FF(n,r,a),!hd(a))return;e.m=!1}if(Du(i)&&!L7(i)){if(!e.h.F&&e._<1)return;w4(e,i),t&&t.A.l||C4(e,i)}}function C4(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&T7(t,n)}function pS(e,t){var n=e[nr];return(n?Mf(n):e)[t]}function SL(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function Uc(e){e.P||(e.P=!0,e.l&&Uc(e.l))}function gS(e){e.o||(e.o=P7(e.t))}function Q6(e,t,n){var r=k7(t)?Il("MapSet").N(t,n):E7(t)?Il("MapSet").T(t,n):e.g?function(i,o){var a=Array.isArray(i),s={i:a?1:0,A:o?o.A:Y6(),P:!1,I:!1,D:{},l:o,t:i,k:null,o:null,j:null,C:!1},l=s,d=Zm;a&&(l=[s],d=_g);var p=Proxy.revocable(l,d),g=p.revoke,m=p.proxy;return s.k=m,s.j=g,m}(t,n):Il("ES5").J(t,n);return(n?n.A:Y6()).p.push(r),r}function xme(e){return hd(e)||Ls(22,e),function t(n){if(!Du(n))return n;var r,i=n[nr],o=Y1(n);if(i){if(!i.P&&(i.i<4||!Il("ES5").K(i)))return i.t;i.I=!0,r=wL(n,o),i.I=!1}else r=wL(n,o);return fh(r,function(a,s){i&&gme(i.t,a)===s||FF(r,a,t(s))}),o===3?new Set(r):r}(e)}function wL(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return P7(e)}function bme(){function e(o,a){var s=i[o];return s?s.enumerable=a:i[o]=s={configurable:!0,enumerable:a,get:function(){var l=this[nr];return Zm.get(l,o)},set:function(l){var d=this[nr];Zm.set(d,o,l)}},s}function t(o){for(var a=o.length-1;a>=0;a--){var s=o[a][nr];if(!s.P)switch(s.i){case 5:r(s)&&Uc(s);break;case 4:n(s)&&Uc(s)}}}function n(o){for(var a=o.t,s=o.k,l=h1(s),d=l.length-1;d>=0;d--){var p=l[d];if(p!==nr){var g=a[p];if(g===void 0&&!f1(a,p))return!0;var m=s[p],y=m&&m[nr];if(y?y.t!==g:!BF(m,g))return!0}}var b=!!a[nr];return l.length!==h1(a).length+(b?0:1)}function r(o){var a=o.k;if(a.length!==o.t.length)return!0;var s=Object.getOwnPropertyDescriptor(a,a.length-1);if(s&&!s.get)return!0;for(var l=0;l1?E-1:0),L=1;L1?p-1:0),m=1;m=0;i--){var o=r[i];if(o.path.length===0&&o.op==="replace"){n=o.value;break}}i>-1&&(r=r.slice(i+1));var a=Il("Patches").$;return hd(n)?a(n,r):this.produce(n,function(s){return a(s,r)})},e}(),xa=new _me,WF=xa.produce;xa.produceWithPatches.bind(xa);xa.setAutoFreeze.bind(xa);xa.setUseProxies.bind(xa);xa.applyPatches.bind(xa);xa.createDraft.bind(xa);xa.finishDraft.bind(xa);function kme(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function EL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function PL(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(Zi(1));return n(I7)(e,t)}if(typeof e!="function")throw new Error(Zi(2));var i=e,o=t,a=[],s=a,l=!1;function d(){s===a&&(s=a.slice())}function p(){if(l)throw new Error(Zi(3));return o}function g(w){if(typeof w!="function")throw new Error(Zi(4));if(l)throw new Error(Zi(5));var P=!0;return d(),s.push(w),function(){if(!!P){if(l)throw new Error(Zi(6));P=!1,d();var k=s.indexOf(w);s.splice(k,1),a=null}}}function m(w){if(!Eme(w))throw new Error(Zi(7));if(typeof w.type>"u")throw new Error(Zi(8));if(l)throw new Error(Zi(9));try{l=!0,o=i(o,w)}finally{l=!1}for(var P=a=s,E=0;E"u")throw new Error(Zi(12));if(typeof n(void 0,{type:_4.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Zi(13))})}function VF(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(Zi(14));g[y]=P,p=p||P!==w}return p=p||o.length!==Object.keys(l).length,p?g:l}}function k4(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[l];return l>0&&(n.splice(l,1),n.unshift(d)),d.value}return E4}function i(s,l){r(s)===E4&&(n.unshift({key:s,value:l}),n.length>e&&n.pop())}function o(){return n}function a(){n=[]}return{get:r,put:i,getEntries:o,clear:a}}var Ime=function(t,n){return t===n};function Mme(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var i=n.length,o=0;o1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?ive:rve;KF.useSyncExternalStore=O1.useSyncExternalStore!==void 0?O1.useSyncExternalStore:ove;(function(e){e.exports=KF})(qF);var ZF={exports:{}},YF={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var J5=C.exports,ave=qF.exports;function sve(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var lve=typeof Object.is=="function"?Object.is:sve,uve=ave.useSyncExternalStore,cve=J5.useRef,dve=J5.useEffect,fve=J5.useMemo,hve=J5.useDebugValue;YF.useSyncExternalStoreWithSelector=function(e,t,n,r,i){var o=cve(null);if(o.current===null){var a={hasValue:!1,value:null};o.current=a}else a=o.current;o=fve(function(){function l(y){if(!d){if(d=!0,p=y,y=r(y),i!==void 0&&a.hasValue){var b=a.value;if(i(b,y))return g=b}return g=y}if(b=g,lve(p,y))return b;var w=r(y);return i!==void 0&&i(b,w)?b:(p=y,g=w)}var d=!1,p,g,m=n===void 0?null:n;return[function(){return l(t())},m===null?void 0:function(){return l(m())}]},[t,n,r,i]);var s=uve(e,o[0],o[1]);return dve(function(){a.hasValue=!0,a.value=s},[s]),hve(s),s};(function(e){e.exports=YF})(ZF);function pve(e){e()}let XF=pve;const gve=e=>XF=e,mve=()=>XF,pd=le.createContext(null);function QF(){return C.exports.useContext(pd)}const vve=()=>{throw new Error("uSES not initialized!")};let JF=vve;const yve=e=>{JF=e},xve=(e,t)=>e===t;function bve(e=pd){const t=e===pd?QF:()=>C.exports.useContext(e);return function(r,i=xve){const{store:o,subscription:a,getServerState:s}=t(),l=JF(a.addNestedSub,o.getState,s||o.getState,r,i);return C.exports.useDebugValue(l),l}}const Sve=bve();var wve={exports:{}},In={};/** + * @license React + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var R7=Symbol.for("react.element"),O7=Symbol.for("react.portal"),ex=Symbol.for("react.fragment"),tx=Symbol.for("react.strict_mode"),nx=Symbol.for("react.profiler"),rx=Symbol.for("react.provider"),ix=Symbol.for("react.context"),Cve=Symbol.for("react.server_context"),ox=Symbol.for("react.forward_ref"),ax=Symbol.for("react.suspense"),sx=Symbol.for("react.suspense_list"),lx=Symbol.for("react.memo"),ux=Symbol.for("react.lazy"),_ve=Symbol.for("react.offscreen"),eB;eB=Symbol.for("react.module.reference");function is(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case R7:switch(e=e.type,e){case ex:case nx:case tx:case ax:case sx:return e;default:switch(e=e&&e.$$typeof,e){case Cve:case ix:case ox:case ux:case lx:case rx:return e;default:return t}}case O7:return t}}}In.ContextConsumer=ix;In.ContextProvider=rx;In.Element=R7;In.ForwardRef=ox;In.Fragment=ex;In.Lazy=ux;In.Memo=lx;In.Portal=O7;In.Profiler=nx;In.StrictMode=tx;In.Suspense=ax;In.SuspenseList=sx;In.isAsyncMode=function(){return!1};In.isConcurrentMode=function(){return!1};In.isContextConsumer=function(e){return is(e)===ix};In.isContextProvider=function(e){return is(e)===rx};In.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===R7};In.isForwardRef=function(e){return is(e)===ox};In.isFragment=function(e){return is(e)===ex};In.isLazy=function(e){return is(e)===ux};In.isMemo=function(e){return is(e)===lx};In.isPortal=function(e){return is(e)===O7};In.isProfiler=function(e){return is(e)===nx};In.isStrictMode=function(e){return is(e)===tx};In.isSuspense=function(e){return is(e)===ax};In.isSuspenseList=function(e){return is(e)===sx};In.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===ex||e===nx||e===tx||e===ax||e===sx||e===_ve||typeof e=="object"&&e!==null&&(e.$$typeof===ux||e.$$typeof===lx||e.$$typeof===rx||e.$$typeof===ix||e.$$typeof===ox||e.$$typeof===eB||e.getModuleId!==void 0)};In.typeOf=is;(function(e){e.exports=In})(wve);function kve(){const e=mve();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],i=t;for(;i;)r.push(i),i=i.next;return r},subscribe(r){let i=!0,o=n={callback:r,next:null,prev:n};return o.prev?o.prev.next=o:t=o,function(){!i||t===null||(i=!1,o.next?o.next.prev=o.prev:n=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}const ML={notify(){},get:()=>[]};function Eve(e,t){let n,r=ML;function i(g){return l(),r.subscribe(g)}function o(){r.notify()}function a(){p.onStateChange&&p.onStateChange()}function s(){return Boolean(n)}function l(){n||(n=t?t.addNestedSub(a):e.subscribe(a),r=kve())}function d(){n&&(n(),n=void 0,r.clear(),r=ML)}const p={addNestedSub:i,notifyNestedSubs:o,handleChangeWrapper:a,isSubscribed:s,trySubscribe:l,tryUnsubscribe:d,getListeners:()=>r};return p}const Pve=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",Tve=Pve?C.exports.useLayoutEffect:C.exports.useEffect;function Lve({store:e,context:t,children:n,serverState:r}){const i=C.exports.useMemo(()=>{const s=Eve(e);return{store:e,subscription:s,getServerState:r?()=>r:void 0}},[e,r]),o=C.exports.useMemo(()=>e.getState(),[e]);return Tve(()=>{const{subscription:s}=i;return s.onStateChange=s.notifyNestedSubs,s.trySubscribe(),o!==e.getState()&&s.notifyNestedSubs(),()=>{s.tryUnsubscribe(),s.onStateChange=void 0}},[i,o]),S((t||pd).Provider,{value:i,children:n})}function tB(e=pd){const t=e===pd?QF:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const Ave=tB();function Ive(e=pd){const t=e===pd?Ave:tB(e);return function(){return t().dispatch}}const Mve=Ive();yve(ZF.exports.useSyncExternalStoreWithSelector);gve(Bl.exports.unstable_batchedUpdates);var N7="persist:",nB="persist/FLUSH",D7="persist/REHYDRATE",rB="persist/PAUSE",iB="persist/PERSIST",oB="persist/PURGE",aB="persist/REGISTER",Rve=-1;function l3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?l3=function(n){return typeof n}:l3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},l3(e)}function RL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Ove(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function Gve(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var jve=5e3;function u3(e,t){var n=e.version!==void 0?e.version:Rve;e.debug;var r=e.stateReconciler===void 0?Dve:e.stateReconciler,i=e.getStoredState||Bve,o=e.timeout!==void 0?e.timeout:jve,a=null,s=!1,l=!0,d=function(g){return g._persist.rehydrated&&a&&!l&&a.update(g),g};return function(p,g){var m=p||{},y=m._persist,b=Uve(m,["_persist"]),w=b;if(g.type===iB){var P=!1,E=function(z,j){P||(g.rehydrate(e.key,z,j),P=!0)};if(o&&setTimeout(function(){!P&&E(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},o),l=!1,a||(a=zve(e)),y)return vu({},t(w,g),{_persist:y});if(typeof g.rehydrate!="function"||typeof g.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return g.register(e.key),i(e).then(function(B){var z=e.migrate||function(j,q){return Promise.resolve(j)};z(B,n).then(function(j){E(j)},function(j){E(void 0,j)})},function(B){E(void 0,B)}),vu({},t(w,g),{_persist:{version:n,rehydrated:!1}})}else{if(g.type===oB)return s=!0,g.result(Hve(e)),vu({},t(w,g),{_persist:y});if(g.type===nB)return g.result(a&&a.flush()),vu({},t(w,g),{_persist:y});if(g.type===rB)l=!0;else if(g.type===D7){if(s)return vu({},w,{_persist:vu({},y,{rehydrated:!0})});if(g.key===e.key){var k=t(w,g),L=g.payload,M=r!==!1&&L!==void 0?r(L,p,k,e):k,N=vu({},M,{_persist:vu({},y,{rehydrated:!0})});return d(N)}}}if(!y)return t(p,g);var F=t(w,g);return F===w?p:d(vu({},F,{_persist:y}))}}function rm(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?rm=function(n){return typeof n}:rm=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},rm(e)}function NL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function DL(e){for(var t=1;t0&&arguments[0]!==void 0?arguments[0]:sB,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case aB:return t8({},t,{registry:[].concat(zL(t.registry),[n.key])});case D7:var r=t.registry.indexOf(n.key),i=zL(t.registry);return i.splice(r,1),t8({},t,{registry:i,bootstrapped:i.length===0});default:return t}};function e2e(e,t,n){var r=n||!1,i=I7(Jve,sB,t&&t.enhancer?t.enhancer:void 0),o=function(d){i.dispatch({type:aB,key:d})},a=function(d,p,g){var m={type:D7,payload:p,err:g,key:d};e.dispatch(m),i.dispatch(m),r&&s.getState().bootstrapped&&(r(),r=!1)},s=t8({},i,{purge:function(){var d=[];return e.dispatch({type:oB,result:function(g){d.push(g)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:nB,result:function(g){d.push(g)}}),Promise.all(d)},pause:function(){e.dispatch({type:rB})},persist:function(){e.dispatch({type:iB,register:o,rehydrate:a})}});return t&&t.manualPersist||s.persist(),s}var z7={},F7={};F7.__esModule=!0;F7.default=r2e;function c3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?c3=function(n){return typeof n}:c3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},c3(e)}function yS(){}var t2e={getItem:yS,setItem:yS,removeItem:yS};function n2e(e){if((typeof self>"u"?"undefined":c3(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function r2e(e){var t="".concat(e,"Storage");return n2e(t)?self[t]:t2e}z7.__esModule=!0;z7.default=a2e;var i2e=o2e(F7);function o2e(e){return e&&e.__esModule?e:{default:e}}function a2e(e){var t=(0,i2e.default)(e);return{getItem:function(r){return new Promise(function(i,o){i(t.getItem(r))})},setItem:function(r,i){return new Promise(function(o,a){o(t.setItem(r,i))})},removeItem:function(r){return new Promise(function(i,o){i(t.removeItem(r))})}}}var Lv=void 0,s2e=l2e(z7);function l2e(e){return e&&e.__esModule?e:{default:e}}var u2e=(0,s2e.default)("local");Lv=u2e;const d3=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),c2e=e=>{const r=e.split(",").map(i=>i.split(":")).map(i=>({seed:Number(i[0]),weight:Number(i[1])}));return B7(r)?r:!1},B7=e=>Boolean(typeof e=="string"?c2e(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,i=!isNaN(parseInt(n.toString(),10)),o=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(i&&o)})),T4=e=>e.reduce((t,n,r,i)=>{const{seed:o,weight:a}=n;return t+=`${o}:${a}`,r!==i.length-1&&(t+=","),t},""),d2e=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]);var ba={exports:{}};/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */(function(e,t){(function(){var n,r="4.17.21",i=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function",s="Invalid `variable` option passed into `_.template`",l="__lodash_hash_undefined__",d=500,p="__lodash_placeholder__",g=1,m=2,y=4,b=1,w=2,P=1,E=2,k=4,L=8,M=16,N=32,F=64,B=128,z=256,j=512,q=30,Y="...",ge=800,ce=16,ve=1,we=2,be=3,J=1/0,U=9007199254740991,ee=17976931348623157e292,Q=0/0,W=4294967295,ie=W-1,de=W>>>1,Se=[["ary",B],["bind",P],["bindKey",E],["curry",L],["curryRight",M],["flip",j],["partial",N],["partialRight",F],["rearg",z]],De="[object Arguments]",Me="[object Array]",Ue="[object AsyncFunction]",ke="[object Boolean]",Ve="[object Date]",ot="[object DOMException]",pt="[object Error]",Vt="[object Function]",Ft="[object GeneratorFunction]",Re="[object Map]",tt="[object Number]",mt="[object Null]",st="[object Object]",vt="[object Promise]",mn="[object Proxy]",yt="[object RegExp]",Ut="[object Set]",on="[object String]",Bt="[object Symbol]",Oe="[object Undefined]",et="[object WeakMap]",qt="[object WeakSet]",Gt="[object ArrayBuffer]",Ee="[object DataView]",Tt="[object Float32Array]",en="[object Float64Array]",Hn="[object Int8Array]",je="[object Int16Array]",It="[object Int32Array]",$e="[object Uint8Array]",ct="[object Uint8ClampedArray]",qe="[object Uint16Array]",wt="[object Uint32Array]",tn=/\b__p \+= '';/g,Kn=/\b(__p \+=) '' \+/g,yr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Wr=/&(?:amp|lt|gt|quot|#39);/g,$i=/[&<>"']/g,Id=RegExp(Wr.source),Vr=RegExp($i.source),qu=/<%-([\s\S]+?)%>/g,Md=/<%([\s\S]+?)%>/g,zs=/<%=([\s\S]+?)%>/g,Ku=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Zu=/^\w*$/,or=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Wl=/[\\^$.*+?()[\]{}|]/g,Rd=RegExp(Wl.source),Fs=/^\s+/,Vl=/\s/,Od=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,xi=/\{\n\/\* \[wrapped with (.+)\] \*/,Bs=/,? & /,Nd=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Dd=/[()=,{}\[\]\/\s]/,zd=/\\(\\)?/g,Fd=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ai=/\w*$/,Bd=/^[-+]0x[0-9a-f]+$/i,$d=/^0b[01]+$/i,Hd=/^\[object .+?Constructor\]$/,Wd=/^0o[0-7]+$/i,Vd=/^(?:0|[1-9]\d*)$/,Ud=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,So=/($^)/,Gd=/['\n\r\u2028\u2029\\]/g,Hi="\\ud800-\\udfff",jo="\\u0300-\\u036f",os="\\ufe20-\\ufe2f",eo="\\u20d0-\\u20ff",ka=jo+os+eo,Yu="\\u2700-\\u27bf",$s="a-z\\xdf-\\xf6\\xf8-\\xff",Ea="\\xac\\xb1\\xd7\\xf7",Wi="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",vn="\\u2000-\\u206f",fn=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",to="A-Z\\xc0-\\xd6\\xd8-\\xde",ar="\\ufe0e\\ufe0f",Lr=Ea+Wi+vn+fn,no="['\u2019]",Pa="["+Hi+"]",Ar="["+Lr+"]",qo="["+ka+"]",Ul="\\d+",wo="["+Yu+"]",ro="["+$s+"]",Gl="[^"+Hi+Lr+Ul+Yu+$s+to+"]",Qr="\\ud83c[\\udffb-\\udfff]",jl="(?:"+qo+"|"+Qr+")",Xu="[^"+Hi+"]",ql="(?:\\ud83c[\\udde6-\\uddff]){2}",Ta="[\\ud800-\\udbff][\\udc00-\\udfff]",bi="["+to+"]",La="\\u200d",as="(?:"+ro+"|"+Gl+")",jd="(?:"+bi+"|"+Gl+")",Aa="(?:"+no+"(?:d|ll|m|re|s|t|ve))?",Hs="(?:"+no+"(?:D|LL|M|RE|S|T|VE))?",Kl=jl+"?",Ws="["+ar+"]?",Si="(?:"+La+"(?:"+[Xu,ql,Ta].join("|")+")"+Ws+Kl+")*",ss="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ko="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Mt=Ws+Kl+Si,Qu="(?:"+[wo,ql,Ta].join("|")+")"+Mt,ls="(?:"+[Xu+qo+"?",qo,ql,Ta,Pa].join("|")+")",Ia=RegExp(no,"g"),Zl=RegExp(qo,"g"),Ir=RegExp(Qr+"(?="+Qr+")|"+ls+Mt,"g"),hn=RegExp([bi+"?"+ro+"+"+Aa+"(?="+[Ar,bi,"$"].join("|")+")",jd+"+"+Hs+"(?="+[Ar,bi+as,"$"].join("|")+")",bi+"?"+as+"+"+Aa,bi+"+"+Hs,Ko,ss,Ul,Qu].join("|"),"g"),Yl=RegExp("["+La+Hi+ka+ar+"]"),Xl=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ql=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Jl=-1,an={};an[Tt]=an[en]=an[Hn]=an[je]=an[It]=an[$e]=an[ct]=an[qe]=an[wt]=!0,an[De]=an[Me]=an[Gt]=an[ke]=an[Ee]=an[Ve]=an[pt]=an[Vt]=an[Re]=an[tt]=an[st]=an[yt]=an[Ut]=an[on]=an[et]=!1;var Nt={};Nt[De]=Nt[Me]=Nt[Gt]=Nt[Ee]=Nt[ke]=Nt[Ve]=Nt[Tt]=Nt[en]=Nt[Hn]=Nt[je]=Nt[It]=Nt[Re]=Nt[tt]=Nt[st]=Nt[yt]=Nt[Ut]=Nt[on]=Nt[Bt]=Nt[$e]=Nt[ct]=Nt[qe]=Nt[wt]=!0,Nt[pt]=Nt[Vt]=Nt[et]=!1;var eu={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},qd={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},D={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},G=parseFloat,me=parseInt,Ye=typeof Su=="object"&&Su&&Su.Object===Object&&Su,ft=typeof self=="object"&&self&&self.Object===Object&&self,Ke=Ye||ft||Function("return this")(),Ge=t&&!t.nodeType&&t,ut=Ge&&!0&&e&&!e.nodeType&&e,un=ut&&ut.exports===Ge,Xt=un&&Ye.process,Kt=function(){try{var te=ut&&ut.require&&ut.require("util").types;return te||Xt&&Xt.binding&&Xt.binding("util")}catch{}}(),sr=Kt&&Kt.isArrayBuffer,si=Kt&&Kt.isDate,li=Kt&&Kt.isMap,Ma=Kt&&Kt.isRegExp,Vs=Kt&&Kt.isSet,i0=Kt&&Kt.isTypedArray;function wi(te,xe,pe){switch(pe.length){case 0:return te.call(xe);case 1:return te.call(xe,pe[0]);case 2:return te.call(xe,pe[0],pe[1]);case 3:return te.call(xe,pe[0],pe[1],pe[2])}return te.apply(xe,pe)}function o0(te,xe,pe,Qe){for(var kt=-1,nn=te==null?0:te.length;++kt-1}function Ah(te,xe,pe){for(var Qe=-1,kt=te==null?0:te.length;++Qe-1;);return pe}function us(te,xe){for(var pe=te.length;pe--&&tc(xe,te[pe],0)>-1;);return pe}function s0(te,xe){for(var pe=te.length,Qe=0;pe--;)te[pe]===xe&&++Qe;return Qe}var Bv=Xd(eu),cs=Xd(qd);function Gs(te){return"\\"+D[te]}function Mh(te,xe){return te==null?n:te[xe]}function nu(te){return Yl.test(te)}function Rh(te){return Xl.test(te)}function $v(te){for(var xe,pe=[];!(xe=te.next()).done;)pe.push(xe.value);return pe}function Oh(te){var xe=-1,pe=Array(te.size);return te.forEach(function(Qe,kt){pe[++xe]=[kt,Qe]}),pe}function Nh(te,xe){return function(pe){return te(xe(pe))}}function Xo(te,xe){for(var pe=-1,Qe=te.length,kt=0,nn=[];++pe-1}function o2(u,h){var x=this.__data__,A=Rr(x,u);return A<0?(++this.size,x.push([u,h])):x[A][1]=h,this}Qo.prototype.clear=r2,Qo.prototype.delete=i2,Qo.prototype.get=w0,Qo.prototype.has=C0,Qo.prototype.set=o2;function Jo(u){var h=-1,x=u==null?0:u.length;for(this.clear();++h=h?u:h)),u}function di(u,h,x,A,O,H){var K,X=h&g,se=h&m,_e=h&y;if(x&&(K=O?x(u,A,O,H):x(u)),K!==n)return K;if(!dr(u))return u;var Pe=Ot(u);if(Pe){if(K=fW(u),!X)return Ti(u,K)}else{var Ie=pi(u),Xe=Ie==Vt||Ie==Ft;if(Lc(u))return nl(u,X);if(Ie==st||Ie==De||Xe&&!O){if(K=se||Xe?{}:L_(u),!X)return se?H0(u,xc(K,u)):Lo(u,nt(K,u))}else{if(!Nt[Ie])return O?u:{};K=hW(u,Ie,X)}}H||(H=new br);var dt=H.get(u);if(dt)return dt;H.set(u,K),ik(u)?u.forEach(function(St){K.add(di(St,h,x,St,u,H))}):nk(u)&&u.forEach(function(St,Zt){K.set(Zt,di(St,h,x,Zt,u,H))});var bt=_e?se?he:ia:se?Io:gi,Wt=Pe?n:bt(u);return Wn(Wt||u,function(St,Zt){Wt&&(Zt=St,St=u[Zt]),Ks(K,Zt,di(St,h,x,Zt,u,H))}),K}function Vh(u){var h=gi(u);return function(x){return Uh(x,u,h)}}function Uh(u,h,x){var A=x.length;if(u==null)return!A;for(u=pn(u);A--;){var O=x[A],H=h[O],K=u[O];if(K===n&&!(O in u)||!H(K))return!1}return!0}function P0(u,h,x){if(typeof u!="function")throw new Ci(a);return j0(function(){u.apply(n,x)},h)}function bc(u,h,x,A){var O=-1,H=Vi,K=!0,X=u.length,se=[],_e=h.length;if(!X)return se;x&&(h=Nn(h,Mr(x))),A?(H=Ah,K=!1):h.length>=i&&(H=rc,K=!1,h=new Da(h));e:for(;++OO?0:O+x),A=A===n||A>O?O:Dt(A),A<0&&(A+=O),A=x>A?0:ak(A);x0&&x(X)?h>1?Or(X,h-1,x,A,O):Ra(O,X):A||(O[O.length]=X)}return O}var jh=rl(),Eo=rl(!0);function ra(u,h){return u&&jh(u,h,gi)}function Po(u,h){return u&&Eo(u,h,gi)}function qh(u,h){return _o(h,function(x){return du(u[x])})}function Zs(u,h){h=tl(h,u);for(var x=0,A=h.length;u!=null&&xh}function Zh(u,h){return u!=null&&sn.call(u,h)}function Yh(u,h){return u!=null&&h in pn(u)}function Xh(u,h,x){return u>=ei(h,x)&&u=120&&Pe.length>=120)?new Da(K&&Pe):n}Pe=u[0];var Ie=-1,Xe=X[0];e:for(;++Ie-1;)X!==u&&af.call(X,se,1),af.call(u,se,1);return u}function gf(u,h){for(var x=u?h.length:0,A=x-1;x--;){var O=h[x];if(x==A||O!==H){var H=O;cu(O)?af.call(u,O,1):sp(u,O)}}return u}function mf(u,h){return u+iu(m0()*(h-u+1))}function Js(u,h,x,A){for(var O=-1,H=xr(uf((h-u)/(x||1)),0),K=pe(H);H--;)K[A?H:++O]=u,u+=x;return K}function Ec(u,h){var x="";if(!u||h<1||h>U)return x;do h%2&&(x+=u),h=iu(h/2),h&&(u+=u);while(h);return x}function _t(u,h){return Wx(M_(u,h,Mo),u+"")}function np(u){return yc(pp(u))}function vf(u,h){var x=pp(u);return h2(x,au(h,0,x.length))}function lu(u,h,x,A){if(!dr(u))return u;h=tl(h,u);for(var O=-1,H=h.length,K=H-1,X=u;X!=null&&++OO?0:O+h),x=x>O?O:x,x<0&&(x+=O),O=h>x?0:x-h>>>0,h>>>=0;for(var H=pe(O);++A>>1,K=u[H];K!==null&&!oa(K)&&(x?K<=h:K=i){var _e=h?null:V(u);if(_e)return tf(_e);K=!1,O=rc,se=new Da}else se=h?[]:X;e:for(;++A=A?u:Dr(u,h,x)}var z0=Gv||function(u){return Ke.clearTimeout(u)};function nl(u,h){if(h)return u.slice();var x=u.length,A=lc?lc(x):new u.constructor(x);return u.copy(A),A}function F0(u){var h=new u.constructor(u.byteLength);return new _i(h).set(new _i(u)),h}function uu(u,h){var x=h?F0(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.byteLength)}function u2(u){var h=new u.constructor(u.source,ai.exec(u));return h.lastIndex=u.lastIndex,h}function Vn(u){return df?pn(df.call(u)):{}}function c2(u,h){var x=h?F0(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.length)}function B0(u,h){if(u!==h){var x=u!==n,A=u===null,O=u===u,H=oa(u),K=h!==n,X=h===null,se=h===h,_e=oa(h);if(!X&&!_e&&!H&&u>h||H&&K&&se&&!X&&!_e||A&&K&&se||!x&&se||!O)return 1;if(!A&&!H&&!_e&&u=X)return se;var _e=x[A];return se*(_e=="desc"?-1:1)}}return u.index-h.index}function d2(u,h,x,A){for(var O=-1,H=u.length,K=x.length,X=-1,se=h.length,_e=xr(H-K,0),Pe=pe(se+_e),Ie=!A;++X1?x[O-1]:n,K=O>2?x[2]:n;for(H=u.length>3&&typeof H=="function"?(O--,H):n,K&&uo(x[0],x[1],K)&&(H=O<3?n:H,O=1),h=pn(h);++A-1?O[H?h[K]:K]:n}}function V0(u){return Jn(function(h){var x=h.length,A=x,O=oo.prototype.thru;for(u&&h.reverse();A--;){var H=h[A];if(typeof H!="function")throw new Ci(a);if(O&&!K&&ye(H)=="wrapper")var K=new oo([],!0)}for(A=K?A:x;++A1&&rn.reverse(),Pe&&seX))return!1;var _e=H.get(u),Pe=H.get(h);if(_e&&Pe)return _e==h&&Pe==u;var Ie=-1,Xe=!0,dt=x&w?new Da:n;for(H.set(u,h),H.set(h,u);++Ie1?"& ":"")+h[A],h=h.join(x>2?", ":" "),u.replace(Od,`{ +/* [wrapped with `+h+`] */ +`)}function gW(u){return Ot(u)||kf(u)||!!(p0&&u&&u[p0])}function cu(u,h){var x=typeof u;return h=h??U,!!h&&(x=="number"||x!="symbol"&&Vd.test(u))&&u>-1&&u%1==0&&u0){if(++h>=ge)return arguments[0]}else h=0;return u.apply(n,arguments)}}function h2(u,h){var x=-1,A=u.length,O=A-1;for(h=h===n?A:h;++x1?u[h-1]:n;return x=typeof x=="function"?(u.pop(),x):n,U_(u,x)});function G_(u){var h=$(u);return h.__chain__=!0,h}function EV(u,h){return h(u),u}function p2(u,h){return h(u)}var PV=Jn(function(u){var h=u.length,x=h?u[0]:0,A=this.__wrapped__,O=function(H){return Wh(H,u)};return h>1||this.__actions__.length||!(A instanceof jt)||!cu(x)?this.thru(O):(A=A.slice(x,+x+(h?1:0)),A.__actions__.push({func:p2,args:[O],thisArg:n}),new oo(A,this.__chain__).thru(function(H){return h&&!H.length&&H.push(n),H}))});function TV(){return G_(this)}function LV(){return new oo(this.value(),this.__chain__)}function AV(){this.__values__===n&&(this.__values__=ok(this.value()));var u=this.__index__>=this.__values__.length,h=u?n:this.__values__[this.__index__++];return{done:u,value:h}}function IV(){return this}function MV(u){for(var h,x=this;x instanceof ff;){var A=F_(x);A.__index__=0,A.__values__=n,h?O.__wrapped__=A:h=A;var O=A;x=x.__wrapped__}return O.__wrapped__=u,h}function RV(){var u=this.__wrapped__;if(u instanceof jt){var h=u;return this.__actions__.length&&(h=new jt(this)),h=h.reverse(),h.__actions__.push({func:p2,args:[Vx],thisArg:n}),new oo(h,this.__chain__)}return this.thru(Vx)}function OV(){return el(this.__wrapped__,this.__actions__)}var NV=up(function(u,h,x){sn.call(u,x)?++u[x]:ea(u,x,1)});function DV(u,h,x){var A=Ot(u)?On:T0;return x&&uo(u,h,x)&&(h=n),A(u,Ae(h,3))}function zV(u,h){var x=Ot(u)?_o:na;return x(u,Ae(h,3))}var FV=W0(B_),BV=W0($_);function $V(u,h){return Or(g2(u,h),1)}function HV(u,h){return Or(g2(u,h),J)}function WV(u,h,x){return x=x===n?1:Dt(x),Or(g2(u,h),x)}function j_(u,h){var x=Ot(u)?Wn:hs;return x(u,Ae(h,3))}function q_(u,h){var x=Ot(u)?Co:Gh;return x(u,Ae(h,3))}var VV=up(function(u,h,x){sn.call(u,x)?u[x].push(h):ea(u,x,[h])});function UV(u,h,x,A){u=Ao(u)?u:pp(u),x=x&&!A?Dt(x):0;var O=u.length;return x<0&&(x=xr(O+x,0)),b2(u)?x<=O&&u.indexOf(h,x)>-1:!!O&&tc(u,h,x)>-1}var GV=_t(function(u,h,x){var A=-1,O=typeof h=="function",H=Ao(u)?pe(u.length):[];return hs(u,function(K){H[++A]=O?wi(h,K,x):ps(K,h,x)}),H}),jV=up(function(u,h,x){ea(u,x,h)});function g2(u,h){var x=Ot(u)?Nn:wr;return x(u,Ae(h,3))}function qV(u,h,x,A){return u==null?[]:(Ot(h)||(h=h==null?[]:[h]),x=A?n:x,Ot(x)||(x=x==null?[]:[x]),Ei(u,h,x))}var KV=up(function(u,h,x){u[x?0:1].push(h)},function(){return[[],[]]});function ZV(u,h,x){var A=Ot(u)?Kd:Ih,O=arguments.length<3;return A(u,Ae(h,4),x,O,hs)}function YV(u,h,x){var A=Ot(u)?Nv:Ih,O=arguments.length<3;return A(u,Ae(h,4),x,O,Gh)}function XV(u,h){var x=Ot(u)?_o:na;return x(u,y2(Ae(h,3)))}function QV(u){var h=Ot(u)?yc:np;return h(u)}function JV(u,h,x){(x?uo(u,h,x):h===n)?h=1:h=Dt(h);var A=Ot(u)?ci:vf;return A(u,h)}function eU(u){var h=Ot(u)?Ox:hi;return h(u)}function tU(u){if(u==null)return 0;if(Ao(u))return b2(u)?Oa(u):u.length;var h=pi(u);return h==Re||h==Ut?u.size:Nr(u).length}function nU(u,h,x){var A=Ot(u)?Ju:To;return x&&uo(u,h,x)&&(h=n),A(u,Ae(h,3))}var rU=_t(function(u,h){if(u==null)return[];var x=h.length;return x>1&&uo(u,h[0],h[1])?h=[]:x>2&&uo(h[0],h[1],h[2])&&(h=[h[0]]),Ei(u,Or(h,1),[])}),m2=jv||function(){return Ke.Date.now()};function iU(u,h){if(typeof h!="function")throw new Ci(a);return u=Dt(u),function(){if(--u<1)return h.apply(this,arguments)}}function K_(u,h,x){return h=x?n:h,h=u&&h==null?u.length:h,fe(u,B,n,n,n,n,h)}function Z_(u,h){var x;if(typeof h!="function")throw new Ci(a);return u=Dt(u),function(){return--u>0&&(x=h.apply(this,arguments)),u<=1&&(h=n),x}}var Gx=_t(function(u,h,x){var A=P;if(x.length){var O=Xo(x,Ze(Gx));A|=N}return fe(u,A,h,x,O)}),Y_=_t(function(u,h,x){var A=P|E;if(x.length){var O=Xo(x,Ze(Y_));A|=N}return fe(h,A,u,x,O)});function X_(u,h,x){h=x?n:h;var A=fe(u,L,n,n,n,n,n,h);return A.placeholder=X_.placeholder,A}function Q_(u,h,x){h=x?n:h;var A=fe(u,M,n,n,n,n,n,h);return A.placeholder=Q_.placeholder,A}function J_(u,h,x){var A,O,H,K,X,se,_e=0,Pe=!1,Ie=!1,Xe=!0;if(typeof u!="function")throw new Ci(a);h=Ba(h)||0,dr(x)&&(Pe=!!x.leading,Ie="maxWait"in x,H=Ie?xr(Ba(x.maxWait)||0,h):H,Xe="trailing"in x?!!x.trailing:Xe);function dt(Fr){var xs=A,hu=O;return A=O=n,_e=Fr,K=u.apply(hu,xs),K}function bt(Fr){return _e=Fr,X=j0(Zt,h),Pe?dt(Fr):K}function Wt(Fr){var xs=Fr-se,hu=Fr-_e,yk=h-xs;return Ie?ei(yk,H-hu):yk}function St(Fr){var xs=Fr-se,hu=Fr-_e;return se===n||xs>=h||xs<0||Ie&&hu>=H}function Zt(){var Fr=m2();if(St(Fr))return rn(Fr);X=j0(Zt,Wt(Fr))}function rn(Fr){return X=n,Xe&&A?dt(Fr):(A=O=n,K)}function aa(){X!==n&&z0(X),_e=0,A=se=O=X=n}function co(){return X===n?K:rn(m2())}function sa(){var Fr=m2(),xs=St(Fr);if(A=arguments,O=this,se=Fr,xs){if(X===n)return bt(se);if(Ie)return z0(X),X=j0(Zt,h),dt(se)}return X===n&&(X=j0(Zt,h)),K}return sa.cancel=aa,sa.flush=co,sa}var oU=_t(function(u,h){return P0(u,1,h)}),aU=_t(function(u,h,x){return P0(u,Ba(h)||0,x)});function sU(u){return fe(u,j)}function v2(u,h){if(typeof u!="function"||h!=null&&typeof h!="function")throw new Ci(a);var x=function(){var A=arguments,O=h?h.apply(this,A):A[0],H=x.cache;if(H.has(O))return H.get(O);var K=u.apply(this,A);return x.cache=H.set(O,K)||H,K};return x.cache=new(v2.Cache||Jo),x}v2.Cache=Jo;function y2(u){if(typeof u!="function")throw new Ci(a);return function(){var h=arguments;switch(h.length){case 0:return!u.call(this);case 1:return!u.call(this,h[0]);case 2:return!u.call(this,h[0],h[1]);case 3:return!u.call(this,h[0],h[1],h[2])}return!u.apply(this,h)}}function lU(u){return Z_(2,u)}var uU=zx(function(u,h){h=h.length==1&&Ot(h[0])?Nn(h[0],Mr(Ae())):Nn(Or(h,1),Mr(Ae()));var x=h.length;return _t(function(A){for(var O=-1,H=ei(A.length,x);++O=h}),kf=Jh(function(){return arguments}())?Jh:function(u){return Cr(u)&&sn.call(u,"callee")&&!h0.call(u,"callee")},Ot=pe.isArray,_U=sr?Mr(sr):A0;function Ao(u){return u!=null&&x2(u.length)&&!du(u)}function zr(u){return Cr(u)&&Ao(u)}function kU(u){return u===!0||u===!1||Cr(u)&&fi(u)==ke}var Lc=qv||rb,EU=si?Mr(si):I0;function PU(u){return Cr(u)&&u.nodeType===1&&!q0(u)}function TU(u){if(u==null)return!0;if(Ao(u)&&(Ot(u)||typeof u=="string"||typeof u.splice=="function"||Lc(u)||hp(u)||kf(u)))return!u.length;var h=pi(u);if(h==Re||h==Ut)return!u.size;if(G0(u))return!Nr(u).length;for(var x in u)if(sn.call(u,x))return!1;return!0}function LU(u,h){return wc(u,h)}function AU(u,h,x){x=typeof x=="function"?x:n;var A=x?x(u,h):n;return A===n?wc(u,h,n,x):!!A}function qx(u){if(!Cr(u))return!1;var h=fi(u);return h==pt||h==ot||typeof u.message=="string"&&typeof u.name=="string"&&!q0(u)}function IU(u){return typeof u=="number"&&Fh(u)}function du(u){if(!dr(u))return!1;var h=fi(u);return h==Vt||h==Ft||h==Ue||h==mn}function tk(u){return typeof u=="number"&&u==Dt(u)}function x2(u){return typeof u=="number"&&u>-1&&u%1==0&&u<=U}function dr(u){var h=typeof u;return u!=null&&(h=="object"||h=="function")}function Cr(u){return u!=null&&typeof u=="object"}var nk=li?Mr(li):Dx;function MU(u,h){return u===h||Cc(u,h,Et(h))}function RU(u,h,x){return x=typeof x=="function"?x:n,Cc(u,h,Et(h),x)}function OU(u){return rk(u)&&u!=+u}function NU(u){if(yW(u))throw new kt(o);return ep(u)}function DU(u){return u===null}function zU(u){return u==null}function rk(u){return typeof u=="number"||Cr(u)&&fi(u)==tt}function q0(u){if(!Cr(u)||fi(u)!=st)return!1;var h=uc(u);if(h===null)return!0;var x=sn.call(h,"constructor")&&h.constructor;return typeof x=="function"&&x instanceof x&&lr.call(x)==ui}var Kx=Ma?Mr(Ma):ur;function FU(u){return tk(u)&&u>=-U&&u<=U}var ik=Vs?Mr(Vs):$t;function b2(u){return typeof u=="string"||!Ot(u)&&Cr(u)&&fi(u)==on}function oa(u){return typeof u=="symbol"||Cr(u)&&fi(u)==Bt}var hp=i0?Mr(i0):Ur;function BU(u){return u===n}function $U(u){return Cr(u)&&pi(u)==et}function HU(u){return Cr(u)&&fi(u)==qt}var WU=_(Ys),VU=_(function(u,h){return u<=h});function ok(u){if(!u)return[];if(Ao(u))return b2(u)?Ui(u):Ti(u);if(cc&&u[cc])return $v(u[cc]());var h=pi(u),x=h==Re?Oh:h==Ut?tf:pp;return x(u)}function fu(u){if(!u)return u===0?u:0;if(u=Ba(u),u===J||u===-J){var h=u<0?-1:1;return h*ee}return u===u?u:0}function Dt(u){var h=fu(u),x=h%1;return h===h?x?h-x:h:0}function ak(u){return u?au(Dt(u),0,W):0}function Ba(u){if(typeof u=="number")return u;if(oa(u))return Q;if(dr(u)){var h=typeof u.valueOf=="function"?u.valueOf():u;u=dr(h)?h+"":h}if(typeof u!="string")return u===0?u:+u;u=io(u);var x=$d.test(u);return x||Wd.test(u)?me(u.slice(2),x?2:8):Bd.test(u)?Q:+u}function sk(u){return za(u,Io(u))}function UU(u){return u?au(Dt(u),-U,U):u===0?u:0}function Cn(u){return u==null?"":so(u)}var GU=lo(function(u,h){if(G0(h)||Ao(h)){za(h,gi(h),u);return}for(var x in h)sn.call(h,x)&&Ks(u,x,h[x])}),lk=lo(function(u,h){za(h,Io(h),u)}),S2=lo(function(u,h,x,A){za(h,Io(h),u,A)}),jU=lo(function(u,h,x,A){za(h,gi(h),u,A)}),qU=Jn(Wh);function KU(u,h){var x=ou(u);return h==null?x:nt(x,h)}var ZU=_t(function(u,h){u=pn(u);var x=-1,A=h.length,O=A>2?h[2]:n;for(O&&uo(h[0],h[1],O)&&(A=1);++x1),H}),za(u,he(u),x),A&&(x=di(x,g|m|y,Lt));for(var O=h.length;O--;)sp(x,h[O]);return x});function hG(u,h){return ck(u,y2(Ae(h)))}var pG=Jn(function(u,h){return u==null?{}:O0(u,h)});function ck(u,h){if(u==null)return{};var x=Nn(he(u),function(A){return[A]});return h=Ae(h),tp(u,x,function(A,O){return h(A,O[0])})}function gG(u,h,x){h=tl(h,u);var A=-1,O=h.length;for(O||(O=1,u=n);++Ah){var A=u;u=h,h=A}if(x||u%1||h%1){var O=m0();return ei(u+O*(h-u+G("1e-"+((O+"").length-1))),h)}return mf(u,h)}var EG=il(function(u,h,x){return h=h.toLowerCase(),u+(x?hk(h):h)});function hk(u){return Xx(Cn(u).toLowerCase())}function pk(u){return u=Cn(u),u&&u.replace(Ud,Bv).replace(Zl,"")}function PG(u,h,x){u=Cn(u),h=so(h);var A=u.length;x=x===n?A:au(Dt(x),0,A);var O=x;return x-=h.length,x>=0&&u.slice(x,O)==h}function TG(u){return u=Cn(u),u&&Vr.test(u)?u.replace($i,cs):u}function LG(u){return u=Cn(u),u&&Rd.test(u)?u.replace(Wl,"\\$&"):u}var AG=il(function(u,h,x){return u+(x?"-":"")+h.toLowerCase()}),IG=il(function(u,h,x){return u+(x?" ":"")+h.toLowerCase()}),MG=dp("toLowerCase");function RG(u,h,x){u=Cn(u),h=Dt(h);var A=h?Oa(u):0;if(!h||A>=h)return u;var O=(h-A)/2;return c(iu(O),x)+u+c(uf(O),x)}function OG(u,h,x){u=Cn(u),h=Dt(h);var A=h?Oa(u):0;return h&&A>>0,x?(u=Cn(u),u&&(typeof h=="string"||h!=null&&!Kx(h))&&(h=so(h),!h&&nu(u))?ms(Ui(u),0,x):u.split(h,x)):[]}var HG=il(function(u,h,x){return u+(x?" ":"")+Xx(h)});function WG(u,h,x){return u=Cn(u),x=x==null?0:au(Dt(x),0,u.length),h=so(h),u.slice(x,x+h.length)==h}function VG(u,h,x){var A=$.templateSettings;x&&uo(u,h,x)&&(h=n),u=Cn(u),h=S2({},h,A,Fe);var O=S2({},h.imports,A.imports,Fe),H=gi(O),K=ef(O,H),X,se,_e=0,Pe=h.interpolate||So,Ie="__p += '",Xe=rf((h.escape||So).source+"|"+Pe.source+"|"+(Pe===zs?Fd:So).source+"|"+(h.evaluate||So).source+"|$","g"),dt="//# sourceURL="+(sn.call(h,"sourceURL")?(h.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Jl+"]")+` +`;u.replace(Xe,function(St,Zt,rn,aa,co,sa){return rn||(rn=aa),Ie+=u.slice(_e,sa).replace(Gd,Gs),Zt&&(X=!0,Ie+=`' + +__e(`+Zt+`) + +'`),co&&(se=!0,Ie+=`'; +`+co+`; +__p += '`),rn&&(Ie+=`' + +((__t = (`+rn+`)) == null ? '' : __t) + +'`),_e=sa+St.length,St}),Ie+=`'; +`;var bt=sn.call(h,"variable")&&h.variable;if(!bt)Ie=`with (obj) { +`+Ie+` +} +`;else if(Dd.test(bt))throw new kt(s);Ie=(se?Ie.replace(tn,""):Ie).replace(Kn,"$1").replace(yr,"$1;"),Ie="function("+(bt||"obj")+`) { +`+(bt?"":`obj || (obj = {}); +`)+"var __t, __p = ''"+(X?", __e = _.escape":"")+(se?`, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +`:`; +`)+Ie+`return __p +}`;var Wt=mk(function(){return nn(H,dt+"return "+Ie).apply(n,K)});if(Wt.source=Ie,qx(Wt))throw Wt;return Wt}function UG(u){return Cn(u).toLowerCase()}function GG(u){return Cn(u).toUpperCase()}function jG(u,h,x){if(u=Cn(u),u&&(x||h===n))return io(u);if(!u||!(h=so(h)))return u;var A=Ui(u),O=Ui(h),H=Yo(A,O),K=us(A,O)+1;return ms(A,H,K).join("")}function qG(u,h,x){if(u=Cn(u),u&&(x||h===n))return u.slice(0,u0(u)+1);if(!u||!(h=so(h)))return u;var A=Ui(u),O=us(A,Ui(h))+1;return ms(A,0,O).join("")}function KG(u,h,x){if(u=Cn(u),u&&(x||h===n))return u.replace(Fs,"");if(!u||!(h=so(h)))return u;var A=Ui(u),O=Yo(A,Ui(h));return ms(A,O).join("")}function ZG(u,h){var x=q,A=Y;if(dr(h)){var O="separator"in h?h.separator:O;x="length"in h?Dt(h.length):x,A="omission"in h?so(h.omission):A}u=Cn(u);var H=u.length;if(nu(u)){var K=Ui(u);H=K.length}if(x>=H)return u;var X=x-Oa(A);if(X<1)return A;var se=K?ms(K,0,X).join(""):u.slice(0,X);if(O===n)return se+A;if(K&&(X+=se.length-X),Kx(O)){if(u.slice(X).search(O)){var _e,Pe=se;for(O.global||(O=rf(O.source,Cn(ai.exec(O))+"g")),O.lastIndex=0;_e=O.exec(Pe);)var Ie=_e.index;se=se.slice(0,Ie===n?X:Ie)}}else if(u.indexOf(so(O),X)!=X){var Xe=se.lastIndexOf(O);Xe>-1&&(se=se.slice(0,Xe))}return se+A}function YG(u){return u=Cn(u),u&&Id.test(u)?u.replace(Wr,Vv):u}var XG=il(function(u,h,x){return u+(x?" ":"")+h.toUpperCase()}),Xx=dp("toUpperCase");function gk(u,h,x){return u=Cn(u),h=x?n:h,h===n?Rh(u)?nf(u):a0(u):u.match(h)||[]}var mk=_t(function(u,h){try{return wi(u,n,h)}catch(x){return qx(x)?x:new kt(x)}}),QG=Jn(function(u,h){return Wn(h,function(x){x=ol(x),ea(u,x,Gx(u[x],u))}),u});function JG(u){var h=u==null?0:u.length,x=Ae();return u=h?Nn(u,function(A){if(typeof A[1]!="function")throw new Ci(a);return[x(A[0]),A[1]]}):[],_t(function(A){for(var O=-1;++OU)return[];var x=W,A=ei(u,W);h=Ae(h),u-=W;for(var O=Jd(A,h);++x0||h<0)?new jt(x):(u<0?x=x.takeRight(-u):u&&(x=x.drop(u)),h!==n&&(h=Dt(h),x=h<0?x.dropRight(-h):x.take(h-u)),x)},jt.prototype.takeRightWhile=function(u){return this.reverse().takeWhile(u).reverse()},jt.prototype.toArray=function(){return this.take(W)},ra(jt.prototype,function(u,h){var x=/^(?:filter|find|map|reject)|While$/.test(h),A=/^(?:head|last)$/.test(h),O=$[A?"take"+(h=="last"?"Right":""):h],H=A||/^find/.test(h);!O||($.prototype[h]=function(){var K=this.__wrapped__,X=A?[1]:arguments,se=K instanceof jt,_e=X[0],Pe=se||Ot(K),Ie=function(Zt){var rn=O.apply($,Ra([Zt],X));return A&&Xe?rn[0]:rn};Pe&&x&&typeof _e=="function"&&_e.length!=1&&(se=Pe=!1);var Xe=this.__chain__,dt=!!this.__actions__.length,bt=H&&!Xe,Wt=se&&!dt;if(!H&&Pe){K=Wt?K:new jt(this);var St=u.apply(K,X);return St.__actions__.push({func:p2,args:[Ie],thisArg:n}),new oo(St,Xe)}return bt&&Wt?u.apply(this,X):(St=this.thru(Ie),bt?A?St.value()[0]:St.value():St)})}),Wn(["pop","push","shift","sort","splice","unshift"],function(u){var h=oc[u],x=/^(?:push|sort|unshift)$/.test(u)?"tap":"thru",A=/^(?:pop|shift)$/.test(u);$.prototype[u]=function(){var O=arguments;if(A&&!this.__chain__){var H=this.value();return h.apply(Ot(H)?H:[],O)}return this[x](function(K){return h.apply(Ot(K)?K:[],O)})}}),ra(jt.prototype,function(u,h){var x=$[h];if(x){var A=x.name+"";sn.call(ds,A)||(ds[A]=[]),ds[A].push({name:h,func:x})}}),ds[wf(n,E).name]=[{name:"wrapper",func:n}],jt.prototype.clone=Gi,jt.prototype.reverse=ki,jt.prototype.value=Qv,$.prototype.at=PV,$.prototype.chain=TV,$.prototype.commit=LV,$.prototype.next=AV,$.prototype.plant=MV,$.prototype.reverse=RV,$.prototype.toJSON=$.prototype.valueOf=$.prototype.value=OV,$.prototype.first=$.prototype.head,cc&&($.prototype[cc]=IV),$},Na=ko();ut?((ut.exports=Na)._=Na,Ge._=Na):Ke._=Na}).call(Su)})(ba,ba.exports);const xt=ba.exports;var xS=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function bS(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function lB(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function f2e(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,i=!0,o=0;o=0&&tr.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&tr.splice(0,tr.length),(t===93||t===224)&&(t=91),t in Ni){Ni[t]=!1;for(var r in gd)gd[r]===t&&(ha[r]=!1)}}function y2e(e){if(typeof e>"u")Object.keys(qr).forEach(function(a){return delete qr[a]});else if(Array.isArray(e))e.forEach(function(a){a.key&&SS(a)});else if(typeof e=="object")e.key&&SS(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?lB(gd,d):[];qr[m]=qr[m].filter(function(b){var w=i?b.method===i:!0;return!(w&&b.scope===r&&f2e(b.mods,y))})}})};function $L(e,t,n,r){if(t.element===r){var i;if(t.scope===n||t.scope==="all"){i=t.mods.length>0;for(var o in Ni)Object.prototype.hasOwnProperty.call(Ni,o)&&(!Ni[o]&&t.mods.indexOf(+o)>-1||Ni[o]&&t.mods.indexOf(+o)===-1)&&(i=!1);(t.mods.length===0&&!Ni[16]&&!Ni[18]&&!Ni[17]&&!Ni[91]||i||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function HL(e,t){var n=qr["*"],r=e.keyCode||e.which||e.charCode;if(!!ha.filter.call(this,e)){if((r===93||r===224)&&(r=91),tr.indexOf(r)===-1&&r!==229&&tr.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var w=n8[b];e[b]&&tr.indexOf(w)===-1?tr.push(w):!e[b]&&tr.indexOf(w)>-1?tr.splice(tr.indexOf(w),1):b==="metaKey"&&e[b]&&tr.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(tr=tr.slice(tr.indexOf(w))))}),r in Ni){Ni[r]=!0;for(var i in gd)gd[i]===r&&(ha[i]=!0);if(!n)return}for(var o in Ni)Object.prototype.hasOwnProperty.call(Ni,o)&&(Ni[o]=e[n8[o]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(tr.indexOf(17)===-1&&tr.push(17),tr.indexOf(18)===-1&&tr.push(18),Ni[17]=!0,Ni[18]=!0);var a=Xm();if(n)for(var s=0;s-1}function ha(e,t,n){tr=[];var r=uB(e),i=[],o="all",a=document,s=0,l=!1,d=!0,p="+",g=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(o=t.scope),t.element&&(a=t.element),t.keyup&&(l=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(g=t.capture),typeof t.splitKey=="string"&&(p=t.splitKey)),typeof t=="string"&&(o=t);s1&&(i=lB(gd,e)),e=e[e.length-1],e=e==="*"?"*":dx(e),e in qr||(qr[e]=[]),qr[e].push({keyup:l,keydown:d,scope:o,mods:i,shortcut:r[s],method:n,key:r[s],splitKey:p,element:a});typeof a<"u"&&!x2e(a)&&window&&(dB.push(a),bS(a,"keydown",function(m){HL(m,a)},g),BL||(BL=!0,bS(window,"focus",function(){tr=[]},g)),bS(a,"keyup",function(m){HL(m,a),v2e(m)},g))}function b2e(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(qr).forEach(function(n){var r=qr[n].find(function(i){return i.scope===t&&i.shortcut===e});r&&r.method&&r.method()})}var wS={setScope:fB,getScope:Xm,deleteScope:m2e,getPressedKeyCodes:h2e,isPressed:g2e,filter:p2e,trigger:b2e,unbind:y2e,keyMap:$7,modifier:gd,modifierMap:n8};for(var CS in wS)Object.prototype.hasOwnProperty.call(wS,CS)&&(ha[CS]=wS[CS]);if(typeof window<"u"){var S2e=window.hotkeys;ha.noConflict=function(e){return e&&window.hotkeys===ha&&(window.hotkeys=S2e),ha},window.hotkeys=ha}ha.filter=function(){return!0};var hB=function(t,n){var r=t.target,i=r&&r.tagName;return Boolean(i&&n&&n.includes(i))},w2e=function(t){return hB(t,["INPUT","TEXTAREA","SELECT"])};function zt(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var i=n||{},o=i.enableOnTags,a=i.filter,s=i.keyup,l=i.keydown,d=i.filterPreventDefault,p=d===void 0?!0:d,g=i.enabled,m=g===void 0?!0:g,y=i.enableOnContentEditable,b=y===void 0?!1:y,w=C.exports.useRef(null),P=C.exports.useCallback(function(E,k){var L,M;return a&&!a(E)?!p:w2e(E)&&!hB(E,o)||(L=E.target)!=null&&L.isContentEditable&&!b?!0:w.current===null||document.activeElement===w.current||(M=w.current)!=null&&M.contains(document.activeElement)?(t(E,k),!0):!1},r?[w,o,a].concat(r):[w,o,a]);return C.exports.useEffect(function(){if(!m){ha.unbind(e,P);return}return s&&l!==!0&&(n.keydown=!1),ha(e,n||{},P),function(){return ha.unbind(e,P)}},[P,e,m]),w}ha.isPressed;function C2e(){return oe("div",{className:"work-in-progress nodes-work-in-progress",children:[S("h1",{children:"Nodes"}),S("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function _2e(){return oe("div",{className:"work-in-progress outpainting-work-in-progress",children:[S("h1",{children:"Outpainting"}),S("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const k2e=()=>oe("div",{className:"work-in-progress post-processing-work-in-progress",children:[S("h1",{children:"Post Processing"}),S("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image and Image To Image tabs. You can also process images directly, using the image action buttons above the main image display."}),S("p",{children:"A dedicated UI will be released soon to facilitate more advanced post processing workflows."}),S("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen."})]}),E2e=V1({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:S("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:S("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),P2e=V1({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:S("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),T2e=V1({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:S("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),L2e=V1({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:S("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),A2e=V1({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:S("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),I2e=V1({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:S("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:S("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var go=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(go||{});const M2e={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN or Codeformer, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher strength values will apply a stronger corrective pressure on outputs, resulting in more appealing faces. With Codeformer, a higher fidelity will attempt to preserve the original image, at the expense of face correction strength.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},Nl=e=>{const{label:t,isDisabled:n=!1,width:r="auto",formControlProps:i,formLabelProps:o,styleClass:a,...s}=e;return S(Sd,{isDisabled:n,width:r,className:`invokeai__switch-form-control ${a}`,...i,children:oe(yh,{className:"invokeai__switch-form-label",whiteSpace:"nowrap",...o,children:[t,S(b7,{className:"invokeai__switch-root",...s})]})})};function H7(){const e=Be(i=>i.system.isGFPGANAvailable),t=Be(i=>i.options.shouldRunFacetool),n=it();return oe(zn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[S("p",{children:"Restore Face"}),S(Nl,{isDisabled:!e,isChecked:t,onChange:i=>n(L8e(i.target.checked))})]})}const WL=/^-?(0\.)?\.?$/,Uo=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:i=!0,width:o,textAlign:a,isInvalid:s,value:l,onChange:d,min:p,max:g,isInteger:m=!0,formControlProps:y,formLabelProps:b,numberInputFieldProps:w,numberInputStepperProps:P,tooltipProps:E,...k}=e,[L,M]=C.exports.useState(String(l));C.exports.useEffect(()=>{!L.match(WL)&&l!==Number(L)&&M(String(l))},[l,L]);const N=B=>{M(B),B.match(WL)||d(m?Math.floor(Number(B)):Number(B))},F=B=>{const z=xt.clamp(m?Math.floor(Number(B.target.value)):Number(B.target.value),p,g);M(String(z)),d(z)};return S(Qi,{...E,children:oe(Sd,{isDisabled:r,isInvalid:s,className:n?`invokeai__number-input-form-control ${n}`:"invokeai__number-input-form-control",...y,children:[t&&S(yh,{className:"invokeai__number-input-form-label",style:{display:t?"block":"none"},...b,children:t}),oe(Uz,{className:"invokeai__number-input-root",value:L,keepWithinRange:!0,clampValueOnBlur:!1,onChange:N,onBlur:F,width:o,...k,children:[S(Gz,{className:"invokeai__number-input-field",textAlign:a,...w}),i&&oe("div",{className:"invokeai__number-input-stepper",children:[S(Kz,{...P,className:"invokeai__number-input-stepper-button"}),S(qz,{...P,className:"invokeai__number-input-stepper-button"})]})]})]})})},X1=e=>{const{label:t,isDisabled:n,validValues:r,size:i="sm",fontSize:o="md",styleClass:a,...s}=e;return oe(Sd,{isDisabled:n,className:`invokeai__select ${a}`,onClick:l=>{l.stopPropagation(),l.nativeEvent.stopImmediatePropagation(),l.nativeEvent.stopPropagation(),l.nativeEvent.cancelBubble=!0},children:[S(yh,{className:"invokeai__select-label",fontSize:o,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",children:t}),S(Xz,{className:"invokeai__select-picker",fontSize:o,size:i,...s,children:r.map(l=>typeof l=="string"||typeof l=="number"?S("option",{value:l,className:"invokeai__select-option",children:l},l):S("option",{value:l.value,className:"invokeai__select-option",children:l.key},l.value))})]})},R2e=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],O2e=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],N2e=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],D2e=[{key:"2x",value:2},{key:"4x",value:4}],W7=0,V7=4294967295,z2e=["gfpgan","codeformer"],F2e=[{key:"None",value:"none"},{key:"Fast",value:"latents"},{key:"Accurate",value:"full-res"}],B2e=Pt(e=>e.options,e=>({facetoolStrength:e.facetoolStrength,facetoolType:e.facetoolType,codeformerFidelity:e.codeformerFidelity}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),$2e=Pt(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),fx=()=>{const e=it(),{facetoolStrength:t,facetoolType:n,codeformerFidelity:r}=Be(B2e),{isGFPGANAvailable:i}=Be($2e),o=l=>e(m3(l)),a=l=>e(MH(l)),s=l=>e(v3(l.target.value));return oe(zn,{direction:"column",gap:2,children:[S(X1,{label:"Type",validValues:z2e.concat(),value:n,onChange:s}),S(Uo,{isDisabled:!i,label:"Strength",step:.05,min:0,max:1,onChange:o,value:t,width:"90px",isInteger:!1}),n==="codeformer"&&S(Uo,{isDisabled:!i,label:"Fidelity",step:.05,min:0,max:1,onChange:a,value:r,width:"90px",isInteger:!1})]})};function H2e(){const e=it(),t=Be(r=>r.options.shouldFitToWidthHeight);return S(Nl,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(RH(r.target.checked))})}function pB(e){const{label:t="Strength",styleClass:n}=e,r=Be(a=>a.options.img2imgStrength),i=it();return S(Uo,{label:t,step:.01,min:.01,max:.99,onChange:a=>i(IH(a)),value:r,width:"100%",isInteger:!1,styleClass:n})}const gB=()=>S(wd,{flex:"1",textAlign:"left",children:"Other Options"}),W2e=()=>{const e=it(),t=Be(r=>r.options.hiresFix);return S(zn,{gap:2,direction:"column",children:S(Nl,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(AH(r.target.checked))})})},V2e=()=>{const e=it(),t=Be(r=>r.options.seamless);return S(zn,{gap:2,direction:"column",children:S(Nl,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(LH(r.target.checked))})})},mB=()=>oe(zn,{gap:2,direction:"column",children:[S(V2e,{}),S(W2e,{})]}),U7=()=>S(wd,{flex:"1",textAlign:"left",children:"Seed"});function U2e(){const e=it(),t=Be(r=>r.options.shouldRandomizeSeed);return S(Nl,{label:"Randomize Seed",isChecked:t,onChange:r=>e(I8e(r.target.checked))})}function G2e(){const e=Be(o=>o.options.seed),t=Be(o=>o.options.shouldRandomizeSeed),n=Be(o=>o.options.shouldGenerateVariations),r=it(),i=o=>r(Rv(o));return S(Uo,{label:"Seed",step:1,precision:0,flexGrow:1,min:W7,max:V7,isDisabled:t,isInvalid:e<0&&n,onChange:i,value:e,width:"10rem"})}const vB=(e,t)=>Math.floor(Math.random()*(t-e+1)+e);function j2e(){const e=it(),t=Be(r=>r.options.shouldRandomizeSeed);return S(Za,{size:"sm",isDisabled:t,onClick:()=>e(Rv(vB(W7,V7))),children:S("p",{children:"Shuffle"})})}function q2e(){const e=it(),t=Be(r=>r.options.threshold);return S(Uo,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(_8e(r)),value:t,isInteger:!1})}function K2e(){const e=it(),t=Be(r=>r.options.perlin);return S(Uo,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(k8e(r)),value:t,isInteger:!1})}const G7=()=>oe(zn,{gap:2,direction:"column",children:[S(U2e,{}),oe(zn,{gap:2,children:[S(G2e,{}),S(j2e,{})]}),S(zn,{gap:2,children:S(q2e,{})}),S(zn,{gap:2,children:S(K2e,{})})]});function j7(){const e=Be(i=>i.system.isESRGANAvailable),t=Be(i=>i.options.shouldRunESRGAN),n=it();return oe(zn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[S("p",{children:"Upscale"}),S(Nl,{isDisabled:!e,isChecked:t,onChange:i=>n(A8e(i.target.checked))})]})}const Z2e=Pt(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),Y2e=Pt(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),hx=()=>{const e=it(),{upscalingLevel:t,upscalingStrength:n}=Be(Z2e),{isESRGANAvailable:r}=Be(Y2e);return oe("div",{className:"upscale-options",children:[S(X1,{isDisabled:!r,label:"Scale",value:t,onChange:a=>e(O8(Number(a.target.value))),validValues:D2e}),S(Uo,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:a=>e(N8(a)),value:n,isInteger:!1})]})};function X2e(){const e=Be(r=>r.options.shouldGenerateVariations),t=it();return S(Nl,{isChecked:e,width:"auto",onChange:r=>t(E8e(r.target.checked))})}function q7(){return oe(zn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[S("p",{children:"Variations"}),S(X2e,{})]})}function Q2e(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:i="1rem",width:o,isInvalid:a,...s}=e;return oe(Sd,{className:`input ${n}`,isInvalid:a,isDisabled:r,flexGrow:1,children:[S(yh,{fontSize:i,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),S($9,{...s,className:"input-entry",size:"sm",width:o})]})}function J2e(){const e=Be(i=>i.options.seedWeights),t=Be(i=>i.options.shouldGenerateVariations),n=it(),r=i=>n(OH(i.target.value));return S(Q2e,{label:"Seed Weights",value:e,isInvalid:t&&!(B7(e)||e===""),isDisabled:!t,onChange:r})}function eye(){const e=Be(i=>i.options.variationAmount),t=Be(i=>i.options.shouldGenerateVariations),n=it();return S(Uo,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:i=>n(P8e(i)),isInteger:!1})}const K7=()=>oe(zn,{gap:2,direction:"column",children:[S(eye,{}),S(J2e,{})]}),Qm=e=>{const{label:t,styleClass:n,...r}=e;return S(vD,{className:`invokeai__checkbox ${n}`,...r,children:t})};function Z7(){const e=Be(r=>r.options.showAdvancedOptions),t=it();return S(Qm,{label:"Advanced Options",styleClass:"advanced-options-checkbox",onChange:r=>t(M8e(r.target.checked)),isChecked:e})}function tye(){const e=it(),t=Be(r=>r.options.cfgScale);return S(Uo,{label:"CFG Scale",step:.5,min:1.01,max:30,onChange:r=>e(kH(r)),value:t,width:Y7,fontSize:Q1,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}const Tr=Pt(e=>e.options,e=>Ex[e.activeTab],{memoizeOptions:{equalityCheck:xt.isEqual}}),nye=Pt(e=>e.options,e=>{const{shouldRandomizeSeed:t,shouldGenerateVariations:n}=e;return t||n},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function rye(){const e=Be(i=>i.options.height),t=Be(Tr),n=it();return S(X1,{isDisabled:t==="inpainting",label:"Height",value:e,flexGrow:1,onChange:i=>n(EH(Number(i.target.value))),validValues:N2e,fontSize:Q1,styleClass:"main-option-block"})}const iye=Pt([e=>e.options,nye],(e,t)=>{const{iterations:n}=e;return{iterations:n,mayGenerateMultipleImages:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function oye(){const e=it(),{iterations:t,mayGenerateMultipleImages:n}=Be(iye);return S(Uo,{label:"Images",step:1,min:1,max:9999,isDisabled:!n,onChange:i=>e(C8e(i)),value:t,width:Y7,fontSize:Q1,styleClass:"main-option-block",textAlign:"center"})}function aye(){const e=Be(r=>r.options.sampler),t=it();return S(X1,{label:"Sampler",value:e,onChange:r=>t(TH(r.target.value)),validValues:R2e,fontSize:Q1,styleClass:"main-option-block"})}function sye(){const e=it(),t=Be(r=>r.options.steps);return S(Uo,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(_H(r)),value:t,width:Y7,fontSize:Q1,styleClass:"main-option-block",textAlign:"center"})}function lye(){const e=Be(i=>i.options.width),t=Be(Tr),n=it();return S(X1,{isDisabled:t==="inpainting",label:"Width",value:e,flexGrow:1,onChange:i=>n(PH(Number(i.target.value))),validValues:O2e,fontSize:Q1,styleClass:"main-option-block"})}const Q1="0.9rem",Y7="auto";function X7(){return S("div",{className:"main-options",children:oe("div",{className:"main-options-list",children:[oe("div",{className:"main-options-row",children:[S(oye,{}),S(sye,{}),S(tye,{})]}),oe("div",{className:"main-options-row",children:[S(lye,{}),S(rye,{}),S(aye,{})]})]})})}const uye={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgressType:"latents",shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",model_list:{},hasError:!1,wasErrorSeen:!0,isCancelable:!0},yB=Q5({name:"system",initialState:uye,reducers:{setShouldDisplayInProgressType:(e,t)=>{e.shouldDisplayInProgressType=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:i}=t.payload,a={timestamp:n,message:r,level:i||"info"};e.log.push(a)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"},setModelList:(e,t)=>{e.model_list=t.payload},setIsCancelable:(e,t)=>{e.isCancelable=t.payload},modelChangeRequested:e=>{e.currentStatus="Loading Model",e.isCancelable=!1,e.isProcessing=!0,e.currentStatusHasSteps=!1}}}),{setShouldDisplayInProgressType:cye,setIsProcessing:p1,addLogEntry:Mi,setShouldShowLogViewer:VL,setIsConnected:UL,setSocketId:k7e,setShouldConfirmOnDelete:xB,setOpenAccordions:dye,setSystemStatus:fye,setCurrentStatus:_S,setSystemConfig:hye,setShouldDisplayGuides:pye,processingCanceled:gye,errorOccurred:r8,errorSeen:bB,setModelList:GL,setIsCancelable:jL,modelChangeRequested:mye}=yB.actions,vye=yB.reducer;var SB={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},qL=le.createContext&&le.createContext(SB),ad=globalThis&&globalThis.__assign||function(){return ad=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),Eye=({children:e,feature:t})=>{const n=Be(kye),{text:r}=M2e[t];return n?oe(f7,{trigger:"hover",children:[S(m7,{children:S(wd,{children:e})}),oe(g7,{className:"guide-popover-content",maxWidth:"400px",onClick:i=>i.preventDefault(),cursor:"initial",children:[S(h7,{className:"guide-popover-arrow"}),S("div",{className:"guide-popover-guide-content",children:r})]})]}):null},Pye=Le(({feature:e,icon:t=bye},n)=>S(Eye,{feature:e,children:S(wd,{ref:n,children:S(_a,{as:t})})}));function Tye(e){const{header:t,feature:n,options:r}=e;return oe(qf,{className:"advanced-settings-item",children:[S("h2",{children:oe(Gf,{className:"advanced-settings-header",children:[t,S(Pye,{feature:n}),S(jf,{})]})}),S(Kf,{className:"advanced-settings-panel",children:r})]})}const Q7=e=>{const{accordionInfo:t}=e,n=Be(a=>a.system.openAccordions),r=it();return S(D5,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:a=>r(dye(a)),className:"advanced-settings",children:(()=>{const a=[];return t&&Object.keys(t).forEach(s=>{a.push(S(Tye,{header:t[s].header,feature:t[s].feature,options:t[s].options},s))}),a})()})};function Lye(e){return gt({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function Aye(e){return gt({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function Iye(e){return gt({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function Mye(e){return gt({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function Rye(e){return gt({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function Oye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"}}]})(e)}function Nye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"}}]})(e)}function Dye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function _B(e){return gt({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function kB(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function zye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}function Fye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"}}]})(e)}function Bye(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z"}}]})(e)}function $ye(e){return gt({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"}}]})(e)}function Hye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function Wye(e){return gt({tag:"svg",attr:{viewBox:"0 0 576 512"},child:[{tag:"path",attr:{d:"M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"}}]})(e)}function Vye(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"}}]})(e)}function Uye(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function Gye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function jye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"}}]})(e)}function qye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"}}]})(e)}function Kye(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"}}]})(e)}function Zye(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function Yye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"}}]})(e)}function Xye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"}}]})(e)}function Qye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z"}}]})(e)}function Jye(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function e3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"}}]})(e)}function KL(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"}}]})(e)}function t3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function n3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function r3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"}}]})(e)}function i3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"}}]})(e)}function o3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"}}]})(e)}function EB(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}function a3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"}}]})(e)}function s3e(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"}}]})(e)}function PB(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"}}]})(e)}const TB=Pt([e=>e.options,e=>e.system,e=>e.inpainting,Tr],(e,t,n,r)=>{const{prompt:i,shouldGenerateVariations:o,seedWeights:a,initialImage:s,seed:l}=e,{isProcessing:d,isConnected:p}=t,{imageToInpaint:g}=n;let m=!0;const y=[];return(!i||Boolean(i.match(/^[\s\r\n]+$/)))&&(m=!1,y.push("Missing prompt")),r==="img2img"&&!s&&(m=!1,y.push("No initial image selected")),r==="inpainting"&&!g&&(m=!1,y.push("No inpainting image selected")),d&&(m=!1,y.push("System Busy")),p||(m=!1,y.push("System Disconnected")),o&&(!(B7(a)||a==="")||l===-1)&&(m=!1,y.push("Seed-Weights badly formatted.")),{isReady:m,reasonsWhyNotReady:y}},{memoizeOptions:{equalityCheck:xt.isEqual,resultEqualityCheck:xt.isEqual}}),i8=Ji("socketio/generateImage"),l3e=Ji("socketio/runESRGAN"),u3e=Ji("socketio/runFacetool"),c3e=Ji("socketio/deleteImage"),o8=Ji("socketio/requestImages"),ZL=Ji("socketio/requestNewImages"),d3e=Ji("socketio/cancelProcessing"),YL=Ji("socketio/uploadImage");Ji("socketio/uploadMaskImage");const f3e=Ji("socketio/requestSystemConfig"),h3e=Ji("socketio/requestModelChange"),Hc=Le((e,t)=>{const{children:n,tooltip:r="",tooltipProps:i,styleClass:o,...a}=e;return S(Qi,{label:r,...i,children:S(Za,{ref:t,className:["invokeai__button",o].join(" "),...a,children:n})})}),Yt=Le((e,t)=>{const{tooltip:n="",styleClass:r,tooltipProps:i,asCheckbox:o,isChecked:a,...s}=e;return S(Qi,{label:n,hasArrow:!0,...i,children:S(Ru,{ref:t,className:`invokeai__icon-button ${r}`,"data-as-checkbox":o,"data-selected":a!==void 0?a:void 0,style:e.onClick?{cursor:"pointer"}:{},...s})})}),oh=e=>{const{triggerComponent:t,children:n,styleClass:r,hasArrow:i=!0,...o}=e;return oe(f7,{...o,children:[S(m7,{children:t}),oe(g7,{className:`invokeai__popover-content ${r}`,children:[i&&S(h7,{className:"invokeai__popover-arrow"}),n]})]})};function LB(e){const{iconButton:t=!1,...n}=e,r=it(),{isReady:i,reasonsWhyNotReady:o}=Be(TB),a=Be(Tr),s=()=>{r(i8(a))};zt("ctrl+enter, cmd+enter",()=>{i&&r(i8(a))},[i,a]);const l=S("div",{style:{flexGrow:4},children:t?S(Yt,{"aria-label":"Invoke",type:"submit",icon:S(Kye,{}),isDisabled:!i,onClick:s,className:"invoke-btn invoke",tooltip:"Invoke",tooltipProps:{placement:"bottom"},...n}):S(Hc,{"aria-label":"Invoke",type:"submit",isDisabled:!i,onClick:s,className:"invoke-btn",...n,children:"Invoke"})});return i?l:S(oh,{trigger:"hover",triggerComponent:l,children:o&&S(ID,{children:o.map((d,p)=>S(MD,{children:d},p))})})}const p3e=Pt(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isCancelable:e.isCancelable}),{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function AB(e){const{...t}=e,n=it(),{isProcessing:r,isConnected:i,isCancelable:o}=Be(p3e),a=()=>n(d3e());return zt("shift+x",()=>{(i||r)&&o&&a()},[i,r,o]),S(Yt,{icon:S(_ye,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!i||!r||!o,onClick:a,styleClass:"cancel-btn",...t})}const g3e=Pt(e=>e.options,e=>e.shouldLoopback),IB=()=>{const e=it(),t=Be(g3e);return S(Yt,{"aria-label":"Toggle Loopback",tooltip:"Toggle Loopback",asCheckbox:!0,isChecked:t,icon:S(Xye,{}),onClick:()=>{e($8e(!t))}})},J7=()=>oe("div",{className:"process-buttons",children:[S(LB,{}),S(IB,{}),S(AB,{})]}),m3e=Pt([e=>e.options,Tr],(e,t)=>({prompt:e.prompt,activeTabName:t}),{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),e_=()=>{const e=it(),{prompt:t,activeTabName:n}=Be(m3e),{isReady:r}=Be(TB),i=C.exports.useRef(null),o=s=>{e(Px(s.target.value))};zt("alt+a",()=>{i.current?.focus()},[]);const a=s=>{s.key==="Enter"&&s.shiftKey===!1&&r&&(s.preventDefault(),e(i8(n)))};return S("div",{className:"prompt-bar",children:S(Sd,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),children:S(vF,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:o,onKeyDown:a,resize:"vertical",height:30,ref:i})})})};function MB(e){return gt({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146z"}}]})(e)}function RB(e){return gt({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146zm.122 2.112v-.002.002zm0-.002v.002a.5.5 0 0 1-.122.51L6.293 6.878a.5.5 0 0 1-.511.12H5.78l-.014-.004a4.507 4.507 0 0 0-.288-.076 4.922 4.922 0 0 0-.765-.116c-.422-.028-.836.008-1.175.15l5.51 5.509c.141-.34.177-.753.149-1.175a4.924 4.924 0 0 0-.192-1.054l-.004-.013v-.001a.5.5 0 0 1 .12-.512l3.536-3.535a.5.5 0 0 1 .532-.115l.096.022c.087.017.208.034.344.034.114 0 .23-.011.343-.04L9.927 2.028c-.029.113-.04.23-.04.343a1.779 1.779 0 0 0 .062.46z"}}]})(e)}function qn(){return qn=Object.assign?Object.assign.bind():function(e){for(var t=1;t=0)&&(n[i]=e[i]);return n}function a8(e,t){return a8=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,i){return r.__proto__=i,r},a8(e,t)}function NB(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,a8(e,t)}function v3e(e,t){return e.classList?!!t&&e.classList.contains(t):(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")!==-1}function y3e(e,t){e.classList?e.classList.add(t):v3e(e,t)||(typeof e.className=="string"?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))}function XL(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function x3e(e,t){e.classList?e.classList.remove(t):typeof e.className=="string"?e.className=XL(e.className,t):e.setAttribute("class",XL(e.className&&e.className.baseVal||"",t))}const QL={disabled:!1},DB=le.createContext(null);var zB=function(t){return t.scrollTop},kg="unmounted",Rf="exited",Of="entering",Ap="entered",s8="exiting",Wu=function(e){NB(t,e);function t(r,i){var o;o=e.call(this,r,i)||this;var a=i,s=a&&!a.isMounting?r.enter:r.appear,l;return o.appearStatus=null,r.in?s?(l=Rf,o.appearStatus=Of):l=Ap:r.unmountOnExit||r.mountOnEnter?l=kg:l=Rf,o.state={status:l},o.nextCallback=null,o}t.getDerivedStateFromProps=function(i,o){var a=i.in;return a&&o.status===kg?{status:Rf}:null};var n=t.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(i){var o=null;if(i!==this.props){var a=this.state.status;this.props.in?a!==Of&&a!==Ap&&(o=Of):(a===Of||a===Ap)&&(o=s8)}this.updateStatus(!1,o)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var i=this.props.timeout,o,a,s;return o=a=s=i,i!=null&&typeof i!="number"&&(o=i.exit,a=i.enter,s=i.appear!==void 0?i.appear:a),{exit:o,enter:a,appear:s}},n.updateStatus=function(i,o){if(i===void 0&&(i=!1),o!==null)if(this.cancelNextCallback(),o===Of){if(this.props.unmountOnExit||this.props.mountOnEnter){var a=this.props.nodeRef?this.props.nodeRef.current:B2.findDOMNode(this);a&&zB(a)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Rf&&this.setState({status:kg})},n.performEnter=function(i){var o=this,a=this.props.enter,s=this.context?this.context.isMounting:i,l=this.props.nodeRef?[s]:[B2.findDOMNode(this),s],d=l[0],p=l[1],g=this.getTimeouts(),m=s?g.appear:g.enter;if(!i&&!a||QL.disabled){this.safeSetState({status:Ap},function(){o.props.onEntered(d)});return}this.props.onEnter(d,p),this.safeSetState({status:Of},function(){o.props.onEntering(d,p),o.onTransitionEnd(m,function(){o.safeSetState({status:Ap},function(){o.props.onEntered(d,p)})})})},n.performExit=function(){var i=this,o=this.props.exit,a=this.getTimeouts(),s=this.props.nodeRef?void 0:B2.findDOMNode(this);if(!o||QL.disabled){this.safeSetState({status:Rf},function(){i.props.onExited(s)});return}this.props.onExit(s),this.safeSetState({status:s8},function(){i.props.onExiting(s),i.onTransitionEnd(a.exit,function(){i.safeSetState({status:Rf},function(){i.props.onExited(s)})})})},n.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(i,o){o=this.setNextCallback(o),this.setState(i,o)},n.setNextCallback=function(i){var o=this,a=!0;return this.nextCallback=function(s){a&&(a=!1,o.nextCallback=null,i(s))},this.nextCallback.cancel=function(){a=!1},this.nextCallback},n.onTransitionEnd=function(i,o){this.setNextCallback(o);var a=this.props.nodeRef?this.props.nodeRef.current:B2.findDOMNode(this),s=i==null&&!this.props.addEndListener;if(!a||s){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var l=this.props.nodeRef?[this.nextCallback]:[a,this.nextCallback],d=l[0],p=l[1];this.props.addEndListener(d,p)}i!=null&&setTimeout(this.nextCallback,i)},n.render=function(){var i=this.state.status;if(i===kg)return null;var o=this.props,a=o.children;o.in,o.mountOnEnter,o.unmountOnExit,o.appear,o.enter,o.exit,o.timeout,o.addEndListener,o.onEnter,o.onEntering,o.onEntered,o.onExit,o.onExiting,o.onExited,o.nodeRef;var s=OB(o,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return S(DB.Provider,{value:null,children:typeof a=="function"?a(i,s):le.cloneElement(le.Children.only(a),s)})},t}(le.Component);Wu.contextType=DB;Wu.propTypes={};function _p(){}Wu.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:_p,onEntering:_p,onEntered:_p,onExit:_p,onExiting:_p,onExited:_p};Wu.UNMOUNTED=kg;Wu.EXITED=Rf;Wu.ENTERING=Of;Wu.ENTERED=Ap;Wu.EXITING=s8;const b3e=Wu;var S3e=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return y3e(t,r)})},kS=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return x3e(t,r)})},t_=function(e){NB(t,e);function t(){for(var r,i=arguments.length,o=new Array(i),a=0;a{C.exports.useEffect(()=>{function r(i){e.current&&!e.current.contains(i.target)&&t()}return n&&document.addEventListener("mousedown",r),()=>{n&&document.removeEventListener("mousedown",r)}},[e,n,t])},pl=(e,t)=>Math.floor(e/t)*t,JL=(e,t)=>Math.round(e/t)*t,w3e={tool:"brush",brushSize:50,maskColor:{r:255,g:90,b:90,a:.5},canvasDimensions:{width:0,height:0},boundingBoxDimensions:{width:512,height:512},boundingBoxCoordinate:{x:0,y:0},boundingBoxPreviewFill:{r:0,g:0,b:0,a:.5},shouldShowBoundingBox:!0,shouldShowBoundingBoxFill:!0,cursorPosition:null,lines:[],pastLines:[],futureLines:[],shouldShowMask:!0,shouldInvertMask:!1,shouldShowCheckboardTransparency:!1,shouldShowBrush:!0,shouldShowBrushPreview:!1,needsCache:!1,isDrawing:!1,isTransformingBoundingBox:!1,isMouseOverBoundingBox:!1,isMovingBoundingBox:!1,stageScale:1,shouldUseInpaintReplace:!1,inpaintReplace:.1,shouldLockBoundingBox:!0,isSpacebarHeld:!1},C3e=w3e,$B=Q5({name:"inpainting",initialState:C3e,reducers:{setTool:(e,t)=>{e.tool=t.payload},toggleTool:e=>{e.tool=e.tool==="brush"?"eraser":"brush"},setBrushSize:(e,t)=>{e.brushSize=t.payload},addLine:(e,t)=>{e.pastLines.push(e.lines),e.lines.push(t.payload),e.futureLines=[]},addPointToCurrentLine:(e,t)=>{e.lines[e.lines.length-1].points.push(...t.payload)},undo:e=>{if(e.pastLines.length===0)return;const t=e.pastLines.pop();!t||(e.futureLines.unshift(e.lines),e.lines=t)},redo:e=>{if(e.futureLines.length===0)return;const t=e.futureLines.shift();!t||(e.pastLines.push(e.lines),e.lines=t)},clearMask:e=>{e.pastLines.push(e.lines),e.lines=[],e.futureLines=[],e.shouldInvertMask=!1},toggleShouldInvertMask:e=>{e.shouldInvertMask=!e.shouldInvertMask},toggleShouldShowMask:e=>{e.shouldShowMask=!e.shouldShowMask},setShouldInvertMask:(e,t)=>{e.shouldInvertMask=t.payload},setShouldShowMask:(e,t)=>{e.shouldShowMask=t.payload,t.payload||(e.shouldInvertMask=!1)},setShouldShowCheckboardTransparency:(e,t)=>{e.shouldShowCheckboardTransparency=t.payload},setShouldShowBrushPreview:(e,t)=>{e.shouldShowBrushPreview=t.payload},setShouldShowBrush:(e,t)=>{e.shouldShowBrush=t.payload},setMaskColor:(e,t)=>{e.maskColor=t.payload},setCursorPosition:(e,t)=>{e.cursorPosition=t.payload},clearImageToInpaint:e=>{e.imageToInpaint=void 0},setImageToInpaint:(e,t)=>{const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,{x:a,y:s}=e.boundingBoxCoordinate,l={x:a,y:s},d={width:i,height:o};i+a>n&&(i>n&&(d.width=pl(n,64)),l.x=n-d.width),o+s>r&&(o>r&&(d.height=pl(r,64)),l.y=r-d.height),e.boundingBoxDimensions=d,e.boundingBoxCoordinate=l,e.canvasDimensions={width:n,height:r},e.imageToInpaint=t.payload,e.needsCache=!0},setCanvasDimensions:(e,t)=>{e.canvasDimensions=t.payload;const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,a=pl(xt.clamp(i,64,n),64),s=pl(xt.clamp(o,64,r),64);e.boundingBoxDimensions={width:a,height:s}},setBoundingBoxDimensions:(e,t)=>{e.boundingBoxDimensions=t.payload;const{width:n,height:r}=t.payload,{x:i,y:o}=e.boundingBoxCoordinate,{width:a,height:s}=e.canvasDimensions,l=pl(a,64),d=pl(s,64),p=pl(n,64),g=pl(r,64),m=i+n-a,y=o+r-s,b=xt.clamp(p,64,l),w=xt.clamp(g,64,d),P=m>0?i-m:i,E=y>0?o-y:o,k=xt.clamp(P,0,l-b),L=xt.clamp(E,0,d-w);e.boundingBoxDimensions={width:b,height:w},e.boundingBoxCoordinate={x:k,y:L}},setBoundingBoxCoordinate:(e,t)=>{e.boundingBoxCoordinate=t.payload},setBoundingBoxPreviewFill:(e,t)=>{e.boundingBoxPreviewFill=t.payload},setNeedsCache:(e,t)=>{e.needsCache=t.payload},setStageScale:(e,t)=>{e.stageScale=t.payload,e.needsCache=!1},setShouldShowBoundingBoxFill:(e,t)=>{e.shouldShowBoundingBoxFill=t.payload},setIsDrawing:(e,t)=>{e.isDrawing=t.payload},setClearBrushHistory:e=>{e.pastLines=[],e.futureLines=[]},setShouldUseInpaintReplace:(e,t)=>{e.shouldUseInpaintReplace=t.payload},setInpaintReplace:(e,t)=>{e.inpaintReplace=t.payload},setShouldLockBoundingBox:(e,t)=>{e.shouldLockBoundingBox=t.payload},toggleShouldLockBoundingBox:e=>{e.shouldLockBoundingBox=!e.shouldLockBoundingBox},setShouldShowBoundingBox:(e,t)=>{e.shouldShowBoundingBox=t.payload},setIsTransformingBoundingBox:(e,t)=>{e.isTransformingBoundingBox=t.payload},setIsMovingBoundingBox:(e,t)=>{e.isMovingBoundingBox=t.payload},setIsMouseOverBoundingBox:(e,t)=>{e.isMouseOverBoundingBox=t.payload},setIsSpacebarHeld:(e,t)=>{e.isSpacebarHeld=t.payload}}}),{setTool:HB,setBrushSize:_3e,addLine:eA,addPointToCurrentLine:tA,setShouldInvertMask:k3e,setShouldShowMask:E3e,setShouldShowCheckboardTransparency:E7e,setShouldShowBrushPreview:ES,setMaskColor:P3e,clearMask:T3e,clearImageToInpaint:WB,undo:L3e,redo:A3e,setCursorPosition:nA,setCanvasDimensions:P7e,setImageToInpaint:L4,setBoundingBoxDimensions:Eg,setBoundingBoxCoordinate:rA,setBoundingBoxPreviewFill:T7e,setNeedsCache:Eu,setStageScale:I3e,toggleTool:M3e,setShouldShowBoundingBox:VB,setShouldShowBoundingBoxFill:R3e,setIsDrawing:ly,setShouldShowBrush:L7e,setClearBrushHistory:O3e,setShouldUseInpaintReplace:N3e,setInpaintReplace:D3e,setShouldLockBoundingBox:n_,toggleShouldLockBoundingBox:z3e,setIsMovingBoundingBox:iA,setIsTransformingBoundingBox:PS,setIsMouseOverBoundingBox:kp,setIsSpacebarHeld:F3e}=$B.actions,B3e=$B.reducer,UB=""+new URL("logo.13003d72.png",import.meta.url).href,$3e=Pt(e=>e.options,e=>{const{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}=e;return{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),r_=e=>{const t=it(),{shouldShowOptionsPanel:n,shouldHoldOptionsPanelOpen:r,shouldPinOptionsPanel:i}=Be($3e),o=C.exports.useRef(null),a=C.exports.useRef(null),s=C.exports.useRef(null),{children:l}=e;zt("o",()=>{t(z8(!n))},[n]),zt("shift+o",()=>{m()},[i]);const d=C.exports.useCallback(()=>{i||(t(F8e(a.current?a.current.scrollTop:0)),t(z8(!1)),t(B8e(!1)))},[t,i]);BB(o,d,!i);const p=()=>{s.current=window.setTimeout(()=>d(),500)},g=()=>{s.current&&window.clearTimeout(s.current)},m=()=>{t(z8e(!i)),t(Eu(!0))};return S(FB,{nodeRef:o,in:n||r&&!i,unmountOnExit:!0,timeout:200,classNames:"options-panel-wrapper",children:S("div",{className:"options-panel-wrapper","data-pinned":i,tabIndex:1,ref:o,onMouseEnter:i?void 0:g,onMouseOver:i?void 0:g,children:S("div",{className:"options-panel-margin",children:oe("div",{className:"options-panel",ref:a,onMouseLeave:y=>{y.target!==a.current?g():!i&&p()},children:[S(Qi,{label:"Pin Options Panel",children:S("div",{className:"options-panel-pin-button","data-selected":i,onClick:m,children:i?S(MB,{}):S(RB,{})})}),!i&&oe("div",{className:"invoke-ai-logo-wrapper",children:[S("img",{src:UB,alt:"invoke-ai-logo"}),oe("h1",{children:["invoke ",S("strong",{children:"ai"})]})]}),l]})})})})};function H3e(){const e=Be(n=>n.options.showAdvancedOptions),t={seed:{header:S(U7,{}),feature:go.SEED,options:S(G7,{})},variations:{header:S(q7,{}),feature:go.VARIATIONS,options:S(K7,{})},face_restore:{header:S(H7,{}),feature:go.FACE_CORRECTION,options:S(fx,{})},upscale:{header:S(j7,{}),feature:go.UPSCALE,options:S(hx,{})},other:{header:S(gB,{}),feature:go.OTHER,options:S(mB,{})}};return oe(r_,{children:[S(e_,{}),S(J7,{}),S(X7,{}),S(pB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),S(H2e,{}),S(Z7,{}),e?S(Q7,{accordionInfo:t}):null]})}const i_=C.exports.createContext(null),GB=e=>{const{styleClass:t}=e,n=C.exports.useContext(i_),r=()=>{n&&n()};return S("div",{className:`image-uploader-button-outer ${t}`,onClick:r,children:oe("div",{className:"image-upload-button",children:[S(EB,{}),S(eh,{size:"lg",children:"Click or Drag and Drop"})]})})},W3e=Pt(e=>e.system,e=>{const{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}=e;return{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),l8=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:i,onClose:o}=h4(),a=it(),{shouldConfirmOnDelete:s,isConnected:l,isProcessing:d}=Be(W3e),p=C.exports.useRef(null),g=b=>{b.stopPropagation(),s?i():m()},m=()=>{l&&!d&&e&&a(c3e(e)),o()};zt("del",()=>{s?i():m()},[e,s]);const y=b=>a(xB(!b.target.checked));return oe(Bn,{children:[C.exports.cloneElement(t,{onClick:e?g:void 0,ref:n}),S(Rue,{isOpen:r,leastDestructiveRef:p,onClose:o,children:S(Gm,{children:oe(Oue,{children:[S(c7,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),S(v4,{children:oe(zn,{direction:"column",gap:5,children:[S(Do,{children:"Are you sure? You can't undo this action afterwards."}),S(Sd,{children:oe(zn,{alignItems:"center",children:[S(yh,{mb:0,children:"Don't ask me again"}),S(b7,{checked:!s,onChange:y})]})})]})}),oe(u7,{children:[S(Za,{ref:p,onClick:o,children:"Cancel"}),S(Za,{colorScheme:"red",onClick:m,ml:3,children:"Delete"})]})]})})})]})}),V3e=Pt([e=>e.system,e=>e.options,e=>e.gallery,Tr],(e,t,n,r)=>{const{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s}=e,{upscalingLevel:l,facetoolStrength:d,shouldShowImageDetails:p}=t,{intermediateImage:g,currentImage:m}=n;return{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s,upscalingLevel:l,facetoolStrength:d,shouldDisableToolbarButtons:Boolean(g)||!m,currentImage:m,shouldShowImageDetails:p,activeTabName:r}},{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),U3e=()=>{const e=it(),{isProcessing:t,isConnected:n,isGFPGANAvailable:r,isESRGANAvailable:i,upscalingLevel:o,facetoolStrength:a,shouldDisableToolbarButtons:s,shouldShowImageDetails:l,currentImage:d}=Be(V3e),{onCopy:p}=moe(d?window.location.toString()+d.url:""),g=kd(),m=()=>{!d||(e(tv(d)),e(Wa("img2img")))},y=()=>{p(),g({title:"Image Link Copied",status:"success",duration:2500,isClosable:!0})};zt("shift+i",()=>{d?(m(),g({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):g({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[d]);const b=()=>{!d||d.metadata&&e(T8e(d.metadata))};zt("a",()=>{["txt2img","img2img"].includes(d?.metadata?.image?.type)?(b(),g({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):g({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[d]);const w=()=>{d?.metadata&&e(Rv(d.metadata.image.seed))};zt("s",()=>{d?.metadata?.image?.seed?(w(),g({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):g({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[d]);const P=()=>d?.metadata?.image?.prompt&&e(Px(d.metadata.image.prompt));zt("p",()=>{d?.metadata?.image?.prompt?(P(),g({title:"Prompt Set",status:"success",duration:2500,isClosable:!0})):g({title:"Prompt Not Set",description:"Could not find prompt for this image.",status:"error",duration:2500,isClosable:!0})},[d]);const E=()=>{d&&e(l3e(d))};zt("u",()=>{i&&!s&&n&&!t&&o?E():g({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[d,i,s,n,t,o]);const k=()=>{d&&e(u3e(d))};zt("r",()=>{r&&!s&&n&&!t&&a?k():g({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[d,r,s,n,t,a]);const L=()=>e(R8e(!l)),M=()=>{!d||(e(L4(d)),e(Wa("inpainting")),e(Eu(!0)),g({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0}))};return zt("i",()=>{d?L():g({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[d,l]),S("div",{className:"current-image-options",children:oe(Zf,{isAttached:!0,children:[S(oh,{trigger:"hover",triggerComponent:S(Yt,{"aria-label":"Send to...",icon:S(e3e,{})}),children:oe("div",{className:"current-image-send-to-popover",children:[S(Hc,{size:"sm",onClick:m,leftIcon:S(KL,{}),children:"Send to Image to Image"}),S(Hc,{size:"sm",onClick:M,leftIcon:S(KL,{}),children:"Send to Inpainting"}),S(Hc,{size:"sm",onClick:y,leftIcon:S(kB,{}),children:"Copy Link to Image"}),S(Hc,{leftIcon:S(zye,{}),size:"sm",children:S(th,{download:!0,href:d?.url,children:"Download Image"})})]})}),S(Yt,{icon:S(Yye,{}),tooltip:"Use Prompt","aria-label":"Use Prompt",isDisabled:!d?.metadata?.image?.prompt,onClick:P}),S(Yt,{icon:S(Jye,{}),tooltip:"Use Seed","aria-label":"Use Seed",isDisabled:!d?.metadata?.image?.seed,onClick:w}),S(Yt,{icon:S(Oye,{}),tooltip:"Use All","aria-label":"Use All",isDisabled:!["txt2img","img2img"].includes(d?.metadata?.image?.type),onClick:b}),S(oh,{trigger:"hover",triggerComponent:S(Yt,{icon:S($ye,{}),"aria-label":"Restore Faces"}),children:oe("div",{className:"current-image-postprocessing-popover",children:[S(fx,{}),S(Hc,{isDisabled:!r||!d||!(n&&!t)||!a,onClick:k,children:"Restore Faces"})]})}),S(oh,{trigger:"hover",triggerComponent:S(Yt,{icon:S(Bye,{}),"aria-label":"Upscale"}),children:oe("div",{className:"current-image-postprocessing-popover",children:[S(hx,{}),S(Hc,{isDisabled:!i||!d||!(n&&!t)||!o,onClick:E,children:"Upscale Image"})]})}),S(Yt,{icon:S(_B,{}),tooltip:"Details","aria-label":"Details","data-selected":l,onClick:L}),S(l8,{image:d,children:S(Yt,{icon:S(r3e,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:!d||!n||t})})]})})},G3e={currentImageUuid:"",shouldPinGallery:!0,shouldShowGallery:!0,galleryScrollPosition:0,galleryImageMinimumWidth:64,galleryImageObjectFit:"cover",shouldHoldGalleryOpen:!1,shouldAutoSwitchToNewImages:!0,currentCategory:"result",categories:{user:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0},result:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0}},galleryWidth:300},jB=Q5({name:"gallery",initialState:G3e,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const{uuid:n,category:r}=t.payload,i=e.categories[r].images,o=i.filter(a=>a.uuid!==n);if(n===e.currentImageUuid){const a=i.findIndex(l=>l.uuid===n),s=ba.exports.clamp(a,0,o.length-1);e.currentImage=o.length?o[s]:void 0,e.currentImageUuid=o.length?o[s].uuid:""}e.categories[r].images=o},addImage:(e,t)=>{const{image:n,category:r}=t.payload,{uuid:i,url:o,mtime:a}=n,s=e.categories[r];s.images.find(l=>l.url===o&&l.mtime===a)||(s.images.unshift(n),e.shouldAutoSwitchToNewImages&&(e.currentImageUuid=i,e.currentImage=n,e.currentCategory=r),e.intermediateImage=void 0,s.latest_mtime=a)},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(xt.inRange(r,0,n.length)){const i=n[r+1];e.currentImage=i,e.currentImageUuid=i.uuid}}},selectPrevImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(xt.inRange(r,1,n.length+1)){const i=n[r-1];e.currentImage=i,e.currentImageUuid=i.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r,category:i}=t.payload,o=e.categories[i].images;if(n.length>0){const a=n.filter(s=>!o.find(l=>l.url===s.url&&l.mtime===s.mtime));if(e.categories[i].images=o.concat(a).sort((s,l)=>l.mtime-s.mtime),!e.currentImage){const s=n[0];e.currentImage=s,e.currentImageUuid=s.uuid}e.categories[i].latest_mtime=n[0].mtime,e.categories[i].earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.categories[i].areMoreImagesAvailable=r)},setShouldPinGallery:(e,t)=>{e.shouldPinGallery=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload},setGalleryScrollPosition:(e,t)=>{e.galleryScrollPosition=t.payload},setGalleryImageMinimumWidth:(e,t)=>{e.galleryImageMinimumWidth=t.payload},setGalleryImageObjectFit:(e,t)=>{e.galleryImageObjectFit=t.payload},setShouldHoldGalleryOpen:(e,t)=>{e.shouldHoldGalleryOpen=t.payload},setShouldAutoSwitchToNewImages:(e,t)=>{e.shouldAutoSwitchToNewImages=t.payload},setCurrentCategory:(e,t)=>{e.currentCategory=t.payload},setGalleryWidth:(e,t)=>{e.galleryWidth=t.payload}}}),{addImage:uy,clearIntermediateImage:oA,removeImage:qB,setCurrentImage:KB,addGalleryImages:j3e,setIntermediateImage:q3e,selectNextImage:ZB,selectPrevImage:YB,setShouldPinGallery:K3e,setShouldShowGallery:u8,setGalleryScrollPosition:Z3e,setGalleryImageMinimumWidth:Tf,setGalleryImageObjectFit:Y3e,setShouldHoldGalleryOpen:X3e,setShouldAutoSwitchToNewImages:Q3e,setCurrentCategory:cy,setGalleryWidth:dy}=jB.actions,J3e=jB.reducer;var aA={path:oe("g",{stroke:"currentColor",strokeWidth:"1.5",children:[S("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),S("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),S("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},XB=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=Pr("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??aA.viewBox;if(n&&typeof n!="string")return le.createElement(Ce.svg,{as:n,...m,...d});const b=a??aA.path;return le.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});XB.displayName="Icon";function ht(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:i={}}=e,o=C.exports.Children.toArray(e.path),a=Le((s,l)=>S(XB,{ref:l,viewBox:t,...i,...s,children:o.length?o:S("path",{fill:"currentColor",d:n})}));return a.displayName=r,a}ht({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});ht({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});ht({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});ht({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});ht({displayName:"SunIcon",path:oe("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[S("circle",{cx:"12",cy:"12",r:"5"}),S("path",{d:"M12 1v2"}),S("path",{d:"M12 21v2"}),S("path",{d:"M4.22 4.22l1.42 1.42"}),S("path",{d:"M18.36 18.36l1.42 1.42"}),S("path",{d:"M1 12h2"}),S("path",{d:"M21 12h2"}),S("path",{d:"M4.22 19.78l1.42-1.42"}),S("path",{d:"M18.36 5.64l1.42-1.42"})]})});ht({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});ht({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:S("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});ht({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});ht({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});ht({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});ht({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});ht({displayName:"ViewIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),S("circle",{cx:"12",cy:"12",r:"2"})]})});ht({displayName:"ViewOffIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),S("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});ht({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});ht({displayName:"DeleteIcon",path:S("g",{fill:"currentColor",children:S("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});ht({displayName:"RepeatIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),S("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});ht({displayName:"RepeatClockIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),S("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});ht({displayName:"EditIcon",path:oe("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[S("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),S("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});ht({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});ht({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});ht({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});ht({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});ht({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});ht({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});ht({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});ht({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});ht({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var QB=ht({displayName:"ExternalLinkIcon",path:oe("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[S("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),S("path",{d:"M15 3h6v6"}),S("path",{d:"M10 14L21 3"})]})});ht({displayName:"LinkIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),S("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});ht({displayName:"PlusSquareIcon",path:oe("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[S("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),S("path",{d:"M12 8v8"}),S("path",{d:"M8 12h8"})]})});ht({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});ht({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});ht({displayName:"TimeIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),S("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});ht({displayName:"ArrowRightIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),S("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});ht({displayName:"ArrowLeftIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),S("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});ht({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});ht({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});ht({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});ht({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});ht({displayName:"EmailIcon",path:oe("g",{fill:"currentColor",children:[S("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),S("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});ht({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});ht({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});ht({displayName:"SpinnerIcon",path:oe(Bn,{children:[S("defs",{children:oe("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[S("stop",{stopColor:"currentColor",offset:"0%"}),S("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),oe("g",{transform:"translate(2)",fill:"none",children:[S("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),S("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),S("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});ht({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});ht({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:S("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});ht({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});ht({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});ht({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});ht({displayName:"InfoOutlineIcon",path:oe("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[S("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),S("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),S("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});ht({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});ht({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});ht({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});ht({displayName:"QuestionOutlineIcon",path:oe("g",{stroke:"currentColor",strokeWidth:"1.5",children:[S("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),S("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),S("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});ht({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});ht({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});ht({viewBox:"0 0 14 14",path:S("g",{fill:"currentColor",children:S("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});ht({displayName:"MinusIcon",path:S("g",{fill:"currentColor",children:S("rect",{height:"4",width:"20",x:"2",y:"10"})})});ht({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function e4e(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const er=({label:e,value:t,onClick:n,isLink:r,labelPosition:i})=>oe(zn,{gap:2,children:[n&&S(Qi,{label:`Recall ${e}`,children:S(Ru,{"aria-label":"Use this parameter",icon:S(e4e,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),oe(zn,{direction:i?"column":"row",children:[oe(Do,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?oe(th,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",S(QB,{mx:"2px"})]}):S(Do,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),t4e=(e,t)=>e.image.uuid===t.image.uuid,n4e=C.exports.memo(({image:e,styleClass:t})=>{const n=it(),r=e?.metadata?.image||{},{type:i,postprocessing:o,sampler:a,prompt:s,seed:l,variations:d,steps:p,cfg_scale:g,seamless:m,hires_fix:y,width:b,height:w,strength:P,fit:E,init_image_path:k,mask_image_path:L,orig_path:M,scale:N}=r,F=JSON.stringify(r,null,2);return S("div",{className:`image-metadata-viewer ${t}`,children:oe(zn,{gap:1,direction:"column",width:"100%",children:[oe(zn,{gap:2,children:[S(Do,{fontWeight:"semibold",children:"File:"}),oe(th,{href:e.url,isExternal:!0,children:[e.url,S(QB,{mx:"2px"})]})]}),Object.keys(r).length>0?oe(Bn,{children:[i&&S(er,{label:"Generation type",value:i}),["esrgan","gfpgan"].includes(i)&&S(er,{label:"Original image",value:M}),i==="gfpgan"&&P!==void 0&&S(er,{label:"Fix faces strength",value:P,onClick:()=>n(m3(P))}),i==="esrgan"&&N!==void 0&&S(er,{label:"Upscaling scale",value:N,onClick:()=>n(O8(N))}),i==="esrgan"&&P!==void 0&&S(er,{label:"Upscaling strength",value:P,onClick:()=>n(N8(P))}),s&&S(er,{label:"Prompt",labelPosition:"top",value:d3(s),onClick:()=>n(Px(s))}),l!==void 0&&S(er,{label:"Seed",value:l,onClick:()=>n(Rv(l))}),a&&S(er,{label:"Sampler",value:a,onClick:()=>n(TH(a))}),p&&S(er,{label:"Steps",value:p,onClick:()=>n(_H(p))}),g!==void 0&&S(er,{label:"CFG scale",value:g,onClick:()=>n(kH(g))}),d&&d.length>0&&S(er,{label:"Seed-weight pairs",value:T4(d),onClick:()=>n(OH(T4(d)))}),m&&S(er,{label:"Seamless",value:m,onClick:()=>n(LH(m))}),y&&S(er,{label:"High Resolution Optimization",value:y,onClick:()=>n(AH(y))}),b&&S(er,{label:"Width",value:b,onClick:()=>n(PH(b))}),w&&S(er,{label:"Height",value:w,onClick:()=>n(EH(w))}),k&&S(er,{label:"Initial image",value:k,isLink:!0,onClick:()=>n(tv(k))}),L&&S(er,{label:"Mask image",value:L,isLink:!0,onClick:()=>n(D8(L))}),i==="img2img"&&P&&S(er,{label:"Image to image strength",value:P,onClick:()=>n(IH(P))}),E&&S(er,{label:"Image to image fit",value:E,onClick:()=>n(RH(E))}),o&&o.length>0&&oe(Bn,{children:[S(eh,{size:"sm",children:"Postprocessing"}),o.map((B,z)=>{if(B.type==="esrgan"){const{scale:j,strength:q}=B;return oe(zn,{pl:"2rem",gap:1,direction:"column",children:[S(Do,{size:"md",children:`${z+1}: Upscale (ESRGAN)`}),S(er,{label:"Scale",value:j,onClick:()=>n(O8(j))}),S(er,{label:"Strength",value:q,onClick:()=>n(N8(q))})]},z)}else if(B.type==="gfpgan"){const{strength:j}=B;return oe(zn,{pl:"2rem",gap:1,direction:"column",children:[S(Do,{size:"md",children:`${z+1}: Face restoration (GFPGAN)`}),S(er,{label:"Strength",value:j,onClick:()=>{n(m3(j)),n(v3("gfpgan"))}})]},z)}else if(B.type==="codeformer"){const{strength:j,fidelity:q}=B;return oe(zn,{pl:"2rem",gap:1,direction:"column",children:[S(Do,{size:"md",children:`${z+1}: Face restoration (Codeformer)`}),S(er,{label:"Strength",value:j,onClick:()=>{n(m3(j)),n(v3("codeformer"))}}),q&&S(er,{label:"Fidelity",value:q,onClick:()=>{n(MH(q)),n(v3("codeformer"))}})]},z)}})]}),oe(zn,{gap:2,direction:"column",children:[oe(zn,{gap:2,children:[S(Qi,{label:"Copy metadata JSON",children:S(Ru,{"aria-label":"Copy metadata JSON",icon:S(kB,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(F)})}),S(Do,{fontWeight:"semibold",children:"Metadata JSON:"})]}),S("div",{className:"image-json-viewer",children:S("pre",{children:F})})]})]}):S(TD,{width:"100%",pt:10,children:S(Do,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},t4e),r4e=Pt([e=>e.gallery,e=>e.options],(e,t)=>{const{currentCategory:n,currentImage:r,intermediateImage:i}=e,{shouldShowImageDetails:o}=t,a=e.categories[r?r.category:"result"].images,s=a.findIndex(d=>d.uuid===e?.currentImage?.uuid),l=a.length;return{imageToDisplay:i||r,currentCategory:n,isOnFirstImage:s===0,isOnLastImage:!isNaN(s)&&s===l-1,shouldShowImageDetails:o,shouldShowPrevImageButton:s===0,shouldShowNextImageButton:!isNaN(s)&&s===l-1}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function i4e(){const e=it(),{isOnFirstImage:t,isOnLastImage:n,shouldShowImageDetails:r,imageToDisplay:i}=Be(r4e),[o,a]=C.exports.useState(!1),s=()=>{a(!0)},l=()=>{a(!1)},d=()=>{e(YB())},p=()=>{e(ZB())};return oe("div",{className:"current-image-preview",children:[i&&S(F5,{src:i.url}),!r&&oe("div",{className:"current-image-next-prev-buttons",children:[S("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:s,onMouseOut:l,children:o&&!t&&S(Ru,{"aria-label":"Previous image",icon:S(Mye,{className:"next-prev-button"}),variant:"unstyled",onClick:d})}),S("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:s,onMouseOut:l,children:o&&!n&&S(Ru,{"aria-label":"Next image",icon:S(Rye,{className:"next-prev-button"}),variant:"unstyled",onClick:p})})]}),r&&i&&S(n4e,{image:i,styleClass:"current-image-metadata"})]})}const o4e=Pt([e=>e.gallery,e=>e.options,Tr],(e,t,n)=>{const{currentImage:r,intermediateImage:i}=e,{shouldShowImageDetails:o}=t;return{activeTabName:n,shouldShowImageDetails:o,hasAnImageToDisplay:r||i}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),o_=()=>{const{hasAnImageToDisplay:e,activeTabName:t}=Be(o4e);return S("div",{className:"current-image-area","data-tab-name":t,children:e?oe(Bn,{children:[S(U3e,{}),S(i4e,{})]}):S("div",{className:"current-image-display-placeholder",children:S(Cye,{})})})},JB=()=>{const e=C.exports.useContext(i_);return S(Yt,{"aria-label":"Upload Image",tooltip:"Upload Image",icon:S(EB,{}),onClick:e||void 0})};function a4e(){const e=Be(i=>i.options.initialImage),t=it(),n=kd(),r=()=>{n({title:"Problem loading parameters",description:"Unable to load init image.",status:"error",isClosable:!0}),t(NH())};return oe(Bn,{children:[S("div",{className:"init-image-preview-header",children:S(JB,{})}),e&&S("div",{className:"init-image-preview",children:S(F5,{fit:"contain",maxWidth:"100%",maxHeight:"100%",src:typeof e=="string"?e:e.url,onError:r})})]})}const s4e=()=>{const e=Be(r=>r.options.initialImage),{currentImage:t}=Be(r=>r.gallery);return oe("div",{className:"workarea-split-view",children:[S("div",{className:"workarea-split-view-left",children:e?S("div",{className:"image-to-image-area",children:S(a4e,{})}):S(GB,{})}),t&&S("div",{className:"workarea-split-view-right",children:S(o_,{})})]})};function l4e(e){return gt({tag:"svg",attr:{viewBox:"0 0 16 16",fill:"currentColor"},child:[{tag:"path",attr:{d:"M14 1H3L2 2v11l1 1h11l1-1V2l-1-1zM8 13H3V2h5v11zm6 0H9V2h5v11z"}}]})(e)}var u4e=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),jr=globalThis&&globalThis.__assign||function(){return jr=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof i>"u"?void 0:Number(i),minWidth:typeof o>"u"?void 0:Number(o),minHeight:typeof a>"u"?void 0:Number(a)}},m4e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],dA="__resizable_base__",e$=function(e){f4e(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var i=r.parentNode;if(!i)return null;var o=r.window.document.createElement("div");return o.style.width="100%",o.style.height="100%",o.style.position="absolute",o.style.transform="scale(0, 0)",o.style.left="0",o.style.flex="0 0 100%",o.classList?o.classList.add(dA):o.className+=dA,i.appendChild(o),o},r.removeBase=function(i){var o=r.parentNode;!o||o.removeChild(i)},r.ref=function(i){i&&(r.resizable=i)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||h4e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var i=this.resizable.offsetWidth,o=this.resizable.offsetHeight,a=this.resizable.style.position;a!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:i,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:o,this.resizable.style.position=a}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,i=function(s){if(typeof n.state[s]>"u"||n.state[s]==="auto")return"auto";if(n.propsSize&&n.propsSize[s]&&n.propsSize[s].toString().endsWith("%")){if(n.state[s].toString().endsWith("%"))return n.state[s].toString();var l=n.getParentSize(),d=Number(n.state[s].toString().replace("px","")),p=d/l[s]*100;return p+"%"}return TS(n.state[s])},o=r&&typeof r.width<"u"&&!this.state.isResizing?TS(r.width):i("width"),a=r&&typeof r.height<"u"&&!this.state.isResizing?TS(r.height):i("height");return{width:o,height:a}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,i=this.parentNode.style.flexWrap;i!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var o={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=i),this.removeBase(n),o},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var i=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof i>"u"||i==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var i=this.props.boundsByDirection,o=this.state.direction,a=i&&Ep("left",o),s=i&&Ep("top",o),l,d;if(this.props.bounds==="parent"){var p=this.parentNode;p&&(l=a?this.resizableRight-this.parentLeft:p.offsetWidth+(this.parentLeft-this.resizableLeft),d=s?this.resizableBottom-this.parentTop:p.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(l=a?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=s?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(l=a?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=s?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return l&&Number.isFinite(l)&&(n=n&&n"u"?10:o.width,g=typeof i.width>"u"||i.width<0?n:i.width,m=typeof o.height>"u"?10:o.height,y=typeof i.height>"u"||i.height<0?r:i.height,b=l||0,w=d||0;if(s){var P=(m-b)*this.ratio+w,E=(y-b)*this.ratio+w,k=(p-w)/this.ratio+b,L=(g-w)/this.ratio+b,M=Math.max(p,P),N=Math.min(g,E),F=Math.max(m,k),B=Math.min(y,L);n=hy(n,M,N),r=hy(r,F,B)}else n=hy(n,p,g),r=hy(r,m,y);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var i=this.props.bounds.getBoundingClientRect();this.targetLeft=i.left,this.targetTop=i.top}if(this.resizable){var o=this.resizable.getBoundingClientRect(),a=o.left,s=o.top,l=o.right,d=o.bottom;this.resizableLeft=a,this.resizableRight=l,this.resizableTop=s,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var i=0,o=0;if(n.nativeEvent&&p4e(n.nativeEvent)?(i=n.nativeEvent.clientX,o=n.nativeEvent.clientY):n.nativeEvent&&py(n.nativeEvent)&&(i=n.nativeEvent.touches[0].clientX,o=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var a=this.props.onResizeStart(n,r,this.resizable);if(a===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var s,l=this.window.getComputedStyle(this.resizable);if(l.flexBasis!=="auto"){var d=this.parentNode;if(d){var p=this.window.getComputedStyle(d).flexDirection;this.flexDir=p.startsWith("row")?"row":"column",s=l.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var g={original:{x:i,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:gl(gl({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:s};this.setState(g)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&py(n))try{n.preventDefault(),n.stopPropagation()}catch{}var i=this.props,o=i.maxWidth,a=i.maxHeight,s=i.minWidth,l=i.minHeight,d=py(n)?n.touches[0].clientX:n.clientX,p=py(n)?n.touches[0].clientY:n.clientY,g=this.state,m=g.direction,y=g.original,b=g.width,w=g.height,P=this.getParentSize(),E=g4e(P,this.window.innerWidth,this.window.innerHeight,o,a,s,l);o=E.maxWidth,a=E.maxHeight,s=E.minWidth,l=E.minHeight;var k=this.calculateNewSizeFromDirection(d,p),L=k.newHeight,M=k.newWidth,N=this.calculateNewMaxFromBoundary(o,a);this.props.snap&&this.props.snap.x&&(M=cA(M,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(L=cA(L,this.props.snap.y,this.props.snapGap));var F=this.calculateNewSizeFromAspectRatio(M,L,{width:N.maxWidth,height:N.maxHeight},{width:s,height:l});if(M=F.newWidth,L=F.newHeight,this.props.grid){var B=uA(M,this.props.grid[0]),z=uA(L,this.props.grid[1]),j=this.props.snapGap||0;M=j===0||Math.abs(B-M)<=j?B:M,L=j===0||Math.abs(z-L)<=j?z:L}var q={width:M-y.width,height:L-y.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var Y=M/P.width*100;M=Y+"%"}else if(b.endsWith("vw")){var ge=M/this.window.innerWidth*100;M=ge+"vw"}else if(b.endsWith("vh")){var ce=M/this.window.innerHeight*100;M=ce+"vh"}}if(w&&typeof w=="string"){if(w.endsWith("%")){var Y=L/P.height*100;L=Y+"%"}else if(w.endsWith("vw")){var ge=L/this.window.innerWidth*100;L=ge+"vw"}else if(w.endsWith("vh")){var ce=L/this.window.innerHeight*100;L=ce+"vh"}}var ve={width:this.createSizeForCssProperty(M,"width"),height:this.createSizeForCssProperty(L,"height")};this.flexDir==="row"?ve.flexBasis=ve.width:this.flexDir==="column"&&(ve.flexBasis=ve.height),Bl.exports.flushSync(function(){r.setState(ve)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,q)}},t.prototype.onMouseUp=function(n){var r=this.state,i=r.isResizing,o=r.direction,a=r.original;if(!(!i||!this.resizable)){var s={width:this.size.width-a.width,height:this.size.height-a.height};this.props.onResizeStop&&this.props.onResizeStop(n,o,this.resizable,s),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:gl(gl({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,i=r.enable,o=r.handleStyles,a=r.handleClasses,s=r.handleWrapperStyle,l=r.handleWrapperClass,d=r.handleComponent;if(!i)return null;var p=Object.keys(i).map(function(g){return i[g]!==!1?S(d4e,{direction:g,onResizeStart:n.onResizeStart,replaceStyles:o&&o[g],className:a&&a[g],children:d&&d[g]?d[g]:null},g):null});return S("div",{className:l,style:s,children:p})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(a,s){return m4e.indexOf(s)!==-1||(a[s]=n.props[s]),a},{}),i=gl(gl(gl({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(i.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return oe(o,{...gl({ref:this.ref,style:i,className:this.props.className},r),children:[this.state.isResizing&&S("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function jn(e,t,{checkForDefaultPrevented:n=!0}={}){return function(i){if(e?.(i),n===!1||!i.defaultPrevented)return t?.(i)}}function Av(e,t=[]){let n=[];function r(o,a){const s=C.exports.createContext(a),l=n.length;n=[...n,a];function d(g){const{scope:m,children:y,...b}=g,w=m?.[e][l]||s,P=C.exports.useMemo(()=>b,Object.values(b));return C.exports.createElement(w.Provider,{value:P},y)}function p(g,m){const y=m?.[e][l]||s,b=C.exports.useContext(y);if(b)return b;if(a!==void 0)return a;throw new Error(`\`${g}\` must be used within \`${o}\``)}return d.displayName=o+"Provider",[d,p]}const i=()=>{const o=n.map(a=>C.exports.createContext(a));return function(s){const l=s?.[e]||o;return C.exports.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return i.scopeName=e,[r,v4e(i,...t)]}function v4e(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(i=>({useScope:i(),scopeName:i.scopeName}));return function(o){const a=r.reduce((s,{useScope:l,scopeName:d})=>{const g=l(o)[`__scope${d}`];return{...s,...g}},{});return C.exports.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])}};return n.scopeName=t.scopeName,n}function y4e(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function t$(...e){return t=>e.forEach(n=>y4e(n,t))}function ts(...e){return C.exports.useCallback(t$(...e),e)}const Jm=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e,i=C.exports.Children.toArray(n),o=i.find(b4e);if(o){const a=o.props.children,s=i.map(l=>l===o?C.exports.Children.count(a)>1?C.exports.Children.only(null):C.exports.isValidElement(a)?a.props.children:null:l);return C.exports.createElement(c8,qn({},r,{ref:t}),C.exports.isValidElement(a)?C.exports.cloneElement(a,void 0,s):null)}return C.exports.createElement(c8,qn({},r,{ref:t}),n)});Jm.displayName="Slot";const c8=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e;return C.exports.isValidElement(n)?C.exports.cloneElement(n,{...S4e(r,n.props),ref:t$(t,n.ref)}):C.exports.Children.count(n)>1?C.exports.Children.only(null):null});c8.displayName="SlotClone";const x4e=({children:e})=>C.exports.createElement(C.exports.Fragment,null,e);function b4e(e){return C.exports.isValidElement(e)&&e.type===x4e}function S4e(e,t){const n={...t};for(const r in t){const i=e[r],o=t[r];/^on[A-Z]/.test(r)?i&&o?n[r]=(...s)=>{o(...s),i(...s)}:i&&(n[r]=i):r==="style"?n[r]={...i,...o}:r==="className"&&(n[r]=[i,o].filter(Boolean).join(" "))}return{...e,...n}}const w4e=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"],zu=w4e.reduce((e,t)=>{const n=C.exports.forwardRef((r,i)=>{const{asChild:o,...a}=r,s=o?Jm:t;return C.exports.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),C.exports.createElement(s,qn({},a,{ref:i}))});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function n$(e,t){e&&Bl.exports.flushSync(()=>e.dispatchEvent(t))}function r$(e){const t=e+"CollectionProvider",[n,r]=Av(t),[i,o]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=y=>{const{scope:b,children:w}=y,P=le.useRef(null),E=le.useRef(new Map).current;return le.createElement(i,{scope:b,itemMap:E,collectionRef:P},w)},s=e+"CollectionSlot",l=le.forwardRef((y,b)=>{const{scope:w,children:P}=y,E=o(s,w),k=ts(b,E.collectionRef);return le.createElement(Jm,{ref:k},P)}),d=e+"CollectionItemSlot",p="data-radix-collection-item",g=le.forwardRef((y,b)=>{const{scope:w,children:P,...E}=y,k=le.useRef(null),L=ts(b,k),M=o(d,w);return le.useEffect(()=>(M.itemMap.set(k,{ref:k,...E}),()=>void M.itemMap.delete(k))),le.createElement(Jm,{[p]:"",ref:L},P)});function m(y){const b=o(e+"CollectionConsumer",y);return le.useCallback(()=>{const P=b.collectionRef.current;if(!P)return[];const E=Array.from(P.querySelectorAll(`[${p}]`));return Array.from(b.itemMap.values()).sort((M,N)=>E.indexOf(M.ref.current)-E.indexOf(N.ref.current))},[b.collectionRef,b.itemMap])}return[{Provider:a,Slot:l,ItemSlot:g},m,r]}const C4e=C.exports.createContext(void 0);function i$(e){const t=C.exports.useContext(C4e);return e||t||"ltr"}function Dl(e){const t=C.exports.useRef(e);return C.exports.useEffect(()=>{t.current=e}),C.exports.useMemo(()=>(...n)=>{var r;return(r=t.current)===null||r===void 0?void 0:r.call(t,...n)},[])}function _4e(e,t=globalThis?.document){const n=Dl(e);C.exports.useEffect(()=>{const r=i=>{i.key==="Escape"&&n(i)};return t.addEventListener("keydown",r),()=>t.removeEventListener("keydown",r)},[n,t])}const d8="dismissableLayer.update",k4e="dismissableLayer.pointerDownOutside",E4e="dismissableLayer.focusOutside";let fA;const P4e=C.exports.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),T4e=C.exports.forwardRef((e,t)=>{var n;const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:a,onInteractOutside:s,onDismiss:l,...d}=e,p=C.exports.useContext(P4e),[g,m]=C.exports.useState(null),y=(n=g?.ownerDocument)!==null&&n!==void 0?n:globalThis?.document,[,b]=C.exports.useState({}),w=ts(t,z=>m(z)),P=Array.from(p.layers),[E]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),k=P.indexOf(E),L=g?P.indexOf(g):-1,M=p.layersWithOutsidePointerEventsDisabled.size>0,N=L>=k,F=L4e(z=>{const j=z.target,q=[...p.branches].some(Y=>Y.contains(j));!N||q||(o?.(z),s?.(z),z.defaultPrevented||l?.())},y),B=A4e(z=>{const j=z.target;[...p.branches].some(Y=>Y.contains(j))||(a?.(z),s?.(z),z.defaultPrevented||l?.())},y);return _4e(z=>{L===p.layers.size-1&&(i?.(z),!z.defaultPrevented&&l&&(z.preventDefault(),l()))},y),C.exports.useEffect(()=>{if(!!g)return r&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(fA=y.body.style.pointerEvents,y.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(g)),p.layers.add(g),hA(),()=>{r&&p.layersWithOutsidePointerEventsDisabled.size===1&&(y.body.style.pointerEvents=fA)}},[g,y,r,p]),C.exports.useEffect(()=>()=>{!g||(p.layers.delete(g),p.layersWithOutsidePointerEventsDisabled.delete(g),hA())},[g,p]),C.exports.useEffect(()=>{const z=()=>b({});return document.addEventListener(d8,z),()=>document.removeEventListener(d8,z)},[]),C.exports.createElement(zu.div,qn({},d,{ref:w,style:{pointerEvents:M?N?"auto":"none":void 0,...e.style},onFocusCapture:jn(e.onFocusCapture,B.onFocusCapture),onBlurCapture:jn(e.onBlurCapture,B.onBlurCapture),onPointerDownCapture:jn(e.onPointerDownCapture,F.onPointerDownCapture)}))});function L4e(e,t=globalThis?.document){const n=Dl(e),r=C.exports.useRef(!1),i=C.exports.useRef(()=>{});return C.exports.useEffect(()=>{const o=s=>{if(s.target&&!r.current){let d=function(){o$(k4e,n,l,{discrete:!0})};const l={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",i.current),i.current=d,t.addEventListener("click",i.current,{once:!0})):d()}r.current=!1},a=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(a),t.removeEventListener("pointerdown",o),t.removeEventListener("click",i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function A4e(e,t=globalThis?.document){const n=Dl(e),r=C.exports.useRef(!1);return C.exports.useEffect(()=>{const i=o=>{o.target&&!r.current&&o$(E4e,n,{originalEvent:o},{discrete:!1})};return t.addEventListener("focusin",i),()=>t.removeEventListener("focusin",i)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function hA(){const e=new CustomEvent(d8);document.dispatchEvent(e)}function o$(e,t,n,{discrete:r}){const i=n.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?n$(i,o):i.dispatchEvent(o)}let LS=0;function I4e(){C.exports.useEffect(()=>{var e,t;const n=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",(e=n[0])!==null&&e!==void 0?e:pA()),document.body.insertAdjacentElement("beforeend",(t=n[1])!==null&&t!==void 0?t:pA()),LS++,()=>{LS===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(r=>r.remove()),LS--}},[])}function pA(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}const AS="focusScope.autoFocusOnMount",IS="focusScope.autoFocusOnUnmount",gA={bubbles:!1,cancelable:!0},M4e=C.exports.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:i,onUnmountAutoFocus:o,...a}=e,[s,l]=C.exports.useState(null),d=Dl(i),p=Dl(o),g=C.exports.useRef(null),m=ts(t,w=>l(w)),y=C.exports.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;C.exports.useEffect(()=>{if(r){let w=function(E){if(y.paused||!s)return;const k=E.target;s.contains(k)?g.current=k:Nf(g.current,{select:!0})},P=function(E){y.paused||!s||s.contains(E.relatedTarget)||Nf(g.current,{select:!0})};return document.addEventListener("focusin",w),document.addEventListener("focusout",P),()=>{document.removeEventListener("focusin",w),document.removeEventListener("focusout",P)}}},[r,s,y.paused]),C.exports.useEffect(()=>{if(s){vA.add(y);const w=document.activeElement;if(!s.contains(w)){const E=new CustomEvent(AS,gA);s.addEventListener(AS,d),s.dispatchEvent(E),E.defaultPrevented||(R4e(F4e(a$(s)),{select:!0}),document.activeElement===w&&Nf(s))}return()=>{s.removeEventListener(AS,d),setTimeout(()=>{const E=new CustomEvent(IS,gA);s.addEventListener(IS,p),s.dispatchEvent(E),E.defaultPrevented||Nf(w??document.body,{select:!0}),s.removeEventListener(IS,p),vA.remove(y)},0)}}},[s,d,p,y]);const b=C.exports.useCallback(w=>{if(!n&&!r||y.paused)return;const P=w.key==="Tab"&&!w.altKey&&!w.ctrlKey&&!w.metaKey,E=document.activeElement;if(P&&E){const k=w.currentTarget,[L,M]=O4e(k);L&&M?!w.shiftKey&&E===M?(w.preventDefault(),n&&Nf(L,{select:!0})):w.shiftKey&&E===L&&(w.preventDefault(),n&&Nf(M,{select:!0})):E===k&&w.preventDefault()}},[n,r,y.paused]);return C.exports.createElement(zu.div,qn({tabIndex:-1},a,{ref:m,onKeyDown:b}))});function R4e(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(Nf(r,{select:t}),document.activeElement!==n)return}function O4e(e){const t=a$(e),n=mA(t,e),r=mA(t.reverse(),e);return[n,r]}function a$(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const i=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||i?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function mA(e,t){for(const n of e)if(!N4e(n,{upTo:t}))return n}function N4e(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function D4e(e){return e instanceof HTMLInputElement&&"select"in e}function Nf(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&D4e(e)&&t&&e.select()}}const vA=z4e();function z4e(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=yA(e,t),e.unshift(t)},remove(t){var n;e=yA(e,t),(n=e[0])===null||n===void 0||n.resume()}}}function yA(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function F4e(e){return e.filter(t=>t.tagName!=="A")}const N1=Boolean(globalThis?.document)?C.exports.useLayoutEffect:()=>{},B4e=jS["useId".toString()]||(()=>{});let $4e=0;function H4e(e){const[t,n]=C.exports.useState(B4e());return N1(()=>{e||n(r=>r??String($4e++))},[e]),e||(t?`radix-${t}`:"")}function J1(e){return e.split("-")[0]}function px(e){return e.split("-")[1]}function e0(e){return["top","bottom"].includes(J1(e))?"x":"y"}function a_(e){return e==="y"?"height":"width"}function xA(e,t,n){let{reference:r,floating:i}=e;const o=r.x+r.width/2-i.width/2,a=r.y+r.height/2-i.height/2,s=e0(t),l=a_(s),d=r[l]/2-i[l]/2,p=J1(t),g=s==="x";let m;switch(p){case"top":m={x:o,y:r.y-i.height};break;case"bottom":m={x:o,y:r.y+r.height};break;case"right":m={x:r.x+r.width,y:a};break;case"left":m={x:r.x-i.width,y:a};break;default:m={x:r.x,y:r.y}}switch(px(t)){case"start":m[s]-=d*(n&&g?-1:1);break;case"end":m[s]+=d*(n&&g?-1:1);break}return m}const W4e=async(e,t,n)=>{const{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:a}=n,s=await(a.isRTL==null?void 0:a.isRTL(t));let l=await a.getElementRects({reference:e,floating:t,strategy:i}),{x:d,y:p}=xA(l,r,s),g=r,m={},y=0;for(let b=0;b({name:"arrow",options:e,async fn(t){const{element:n,padding:r=0}=e??{},{x:i,y:o,placement:a,rects:s,platform:l}=t;if(n==null)return{};const d=s$(r),p={x:i,y:o},g=e0(a),m=px(a),y=a_(g),b=await l.getDimensions(n),w=g==="y"?"top":"left",P=g==="y"?"bottom":"right",E=s.reference[y]+s.reference[g]-p[g]-s.floating[y],k=p[g]-s.reference[g],L=await(l.getOffsetParent==null?void 0:l.getOffsetParent(n));let M=L?g==="y"?L.clientHeight||0:L.clientWidth||0:0;M===0&&(M=s.floating[y]);const N=E/2-k/2,F=d[w],B=M-b[y]-d[P],z=M/2-b[y]/2+N,j=f8(F,z,B),ge=(m==="start"?d[w]:d[P])>0&&z!==j&&s.reference[y]<=s.floating[y]?zj4e[t])}function q4e(e,t,n){n===void 0&&(n=!1);const r=px(e),i=e0(e),o=a_(i);let a=i==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(a=M4(a)),{main:a,cross:M4(a)}}const K4e={start:"end",end:"start"};function SA(e){return e.replace(/start|end/g,t=>K4e[t])}const Z4e=["top","right","bottom","left"];function Y4e(e){const t=M4(e);return[SA(e),t,SA(t)]}const X4e=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:r,middlewareData:i,rects:o,initialPlacement:a,platform:s,elements:l}=t,{mainAxis:d=!0,crossAxis:p=!0,fallbackPlacements:g,fallbackStrategy:m="bestFit",flipAlignment:y=!0,...b}=e,w=J1(r),E=g||(w===a||!y?[M4(a)]:Y4e(a)),k=[a,...E],L=await I4(t,b),M=[];let N=((n=i.flip)==null?void 0:n.overflows)||[];if(d&&M.push(L[w]),p){const{main:j,cross:q}=q4e(r,o,await(s.isRTL==null?void 0:s.isRTL(l.floating)));M.push(L[j],L[q])}if(N=[...N,{placement:r,overflows:M}],!M.every(j=>j<=0)){var F,B;const j=((F=(B=i.flip)==null?void 0:B.index)!=null?F:0)+1,q=k[j];if(q)return{data:{index:j,overflows:N},reset:{placement:q}};let Y="bottom";switch(m){case"bestFit":{var z;const ge=(z=N.map(ce=>[ce,ce.overflows.filter(ve=>ve>0).reduce((ve,we)=>ve+we,0)]).sort((ce,ve)=>ce[1]-ve[1])[0])==null?void 0:z[0].placement;ge&&(Y=ge);break}case"initialPlacement":Y=a;break}if(r!==Y)return{reset:{placement:Y}}}return{}}}};function wA(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function CA(e){return Z4e.some(t=>e[t]>=0)}const Q4e=function(e){let{strategy:t="referenceHidden",...n}=e===void 0?{}:e;return{name:"hide",async fn(r){const{rects:i}=r;switch(t){case"referenceHidden":{const o=await I4(r,{...n,elementContext:"reference"}),a=wA(o,i.reference);return{data:{referenceHiddenOffsets:a,referenceHidden:CA(a)}}}case"escaped":{const o=await I4(r,{...n,altBoundary:!0}),a=wA(o,i.floating);return{data:{escapedOffsets:a,escaped:CA(a)}}}default:return{}}}}};async function J4e(e,t){const{placement:n,platform:r,elements:i}=e,o=await(r.isRTL==null?void 0:r.isRTL(i.floating)),a=J1(n),s=px(n),l=e0(n)==="x",d=["left","top"].includes(a)?-1:1,p=o&&l?-1:1,g=typeof t=="function"?t(e):t;let{mainAxis:m,crossAxis:y,alignmentAxis:b}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...g};return s&&typeof b=="number"&&(y=s==="end"?b*-1:b),l?{x:y*p,y:m*d}:{x:m*d,y:y*p}}const e5e=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:r}=t,i=await J4e(t,e);return{x:n+i.x,y:r+i.y,data:i}}}};function l$(e){return e==="x"?"y":"x"}const t5e=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:s={fn:P=>{let{x:E,y:k}=P;return{x:E,y:k}}},...l}=e,d={x:n,y:r},p=await I4(t,l),g=e0(J1(i)),m=l$(g);let y=d[g],b=d[m];if(o){const P=g==="y"?"top":"left",E=g==="y"?"bottom":"right",k=y+p[P],L=y-p[E];y=f8(k,y,L)}if(a){const P=m==="y"?"top":"left",E=m==="y"?"bottom":"right",k=b+p[P],L=b-p[E];b=f8(k,b,L)}const w=s.fn({...t,[g]:y,[m]:b});return{...w,data:{x:w.x-n,y:w.y-r}}}}},n5e=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:i,rects:o,middlewareData:a}=t,{offset:s=0,mainAxis:l=!0,crossAxis:d=!0}=e,p={x:n,y:r},g=e0(i),m=l$(g);let y=p[g],b=p[m];const w=typeof s=="function"?s({...o,placement:i}):s,P=typeof w=="number"?{mainAxis:w,crossAxis:0}:{mainAxis:0,crossAxis:0,...w};if(l){const N=g==="y"?"height":"width",F=o.reference[g]-o.floating[N]+P.mainAxis,B=o.reference[g]+o.reference[N]-P.mainAxis;yB&&(y=B)}if(d){var E,k,L,M;const N=g==="y"?"width":"height",F=["top","left"].includes(J1(i)),B=o.reference[m]-o.floating[N]+(F&&(E=(k=a.offset)==null?void 0:k[m])!=null?E:0)+(F?0:P.crossAxis),z=o.reference[m]+o.reference[N]+(F?0:(L=(M=a.offset)==null?void 0:M[m])!=null?L:0)-(F?P.crossAxis:0);bz&&(b=z)}return{[g]:y,[m]:b}}}};function u$(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function Vu(e){if(e==null)return window;if(!u$(e)){const t=e.ownerDocument;return t&&t.defaultView||window}return e}function Iv(e){return Vu(e).getComputedStyle(e)}function Fu(e){return u$(e)?"":e?(e.nodeName||"").toLowerCase():""}function c$(){const e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(t=>t.brand+"/"+t.version).join(" "):navigator.userAgent}function zl(e){return e instanceof Vu(e).HTMLElement}function md(e){return e instanceof Vu(e).Element}function r5e(e){return e instanceof Vu(e).Node}function s_(e){if(typeof ShadowRoot>"u")return!1;const t=Vu(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function gx(e){const{overflow:t,overflowX:n,overflowY:r}=Iv(e);return/auto|scroll|overlay|hidden/.test(t+r+n)}function i5e(e){return["table","td","th"].includes(Fu(e))}function d$(e){const t=/firefox/i.test(c$()),n=Iv(e);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||t&&n.willChange==="filter"||t&&(n.filter?n.filter!=="none":!1)}function f$(){return!/^((?!chrome|android).)*safari/i.test(c$())}const _A=Math.min,im=Math.max,R4=Math.round;function Bu(e,t,n){var r,i,o,a;t===void 0&&(t=!1),n===void 0&&(n=!1);const s=e.getBoundingClientRect();let l=1,d=1;t&&zl(e)&&(l=e.offsetWidth>0&&R4(s.width)/e.offsetWidth||1,d=e.offsetHeight>0&&R4(s.height)/e.offsetHeight||1);const p=md(e)?Vu(e):window,g=!f$()&&n,m=(s.left+(g&&(r=(i=p.visualViewport)==null?void 0:i.offsetLeft)!=null?r:0))/l,y=(s.top+(g&&(o=(a=p.visualViewport)==null?void 0:a.offsetTop)!=null?o:0))/d,b=s.width/l,w=s.height/d;return{width:b,height:w,top:y,right:m+b,bottom:y+w,left:m,x:m,y}}function Ed(e){return((r5e(e)?e.ownerDocument:e.document)||window.document).documentElement}function mx(e){return md(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function h$(e){return Bu(Ed(e)).left+mx(e).scrollLeft}function o5e(e){const t=Bu(e);return R4(t.width)!==e.offsetWidth||R4(t.height)!==e.offsetHeight}function a5e(e,t,n){const r=zl(t),i=Ed(t),o=Bu(e,r&&o5e(t),n==="fixed");let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if(r||!r&&n!=="fixed")if((Fu(t)!=="body"||gx(i))&&(a=mx(t)),zl(t)){const l=Bu(t,!0);s.x=l.x+t.clientLeft,s.y=l.y+t.clientTop}else i&&(s.x=h$(i));return{x:o.left+a.scrollLeft-s.x,y:o.top+a.scrollTop-s.y,width:o.width,height:o.height}}function p$(e){return Fu(e)==="html"?e:e.assignedSlot||e.parentNode||(s_(e)?e.host:null)||Ed(e)}function kA(e){return!zl(e)||getComputedStyle(e).position==="fixed"?null:e.offsetParent}function s5e(e){let t=p$(e);for(s_(t)&&(t=t.host);zl(t)&&!["html","body"].includes(Fu(t));){if(d$(t))return t;t=t.parentNode}return null}function h8(e){const t=Vu(e);let n=kA(e);for(;n&&i5e(n)&&getComputedStyle(n).position==="static";)n=kA(n);return n&&(Fu(n)==="html"||Fu(n)==="body"&&getComputedStyle(n).position==="static"&&!d$(n))?t:n||s5e(e)||t}function EA(e){if(zl(e))return{width:e.offsetWidth,height:e.offsetHeight};const t=Bu(e);return{width:t.width,height:t.height}}function l5e(e){let{rect:t,offsetParent:n,strategy:r}=e;const i=zl(n),o=Ed(n);if(n===o)return t;let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if((i||!i&&r!=="fixed")&&((Fu(n)!=="body"||gx(o))&&(a=mx(n)),zl(n))){const l=Bu(n,!0);s.x=l.x+n.clientLeft,s.y=l.y+n.clientTop}return{...t,x:t.x-a.scrollLeft+s.x,y:t.y-a.scrollTop+s.y}}function u5e(e,t){const n=Vu(e),r=Ed(e),i=n.visualViewport;let o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;const d=f$();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s,y:l}}function c5e(e){var t;const n=Ed(e),r=mx(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=im(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=im(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0);let s=-r.scrollLeft+h$(e);const l=-r.scrollTop;return Iv(i||n).direction==="rtl"&&(s+=im(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function g$(e){const t=p$(e);return["html","body","#document"].includes(Fu(t))?e.ownerDocument.body:zl(t)&&gx(t)?t:g$(t)}function O4(e,t){var n;t===void 0&&(t=[]);const r=g$(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=Vu(r),a=i?[o].concat(o.visualViewport||[],gx(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(O4(a))}function d5e(e,t){const n=t.getRootNode==null?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&s_(n)){let r=t;do{if(r&&e===r)return!0;r=r.parentNode||r.host}while(r)}return!1}function f5e(e,t){const n=Bu(e,!1,t==="fixed"),r=n.top+e.clientTop,i=n.left+e.clientLeft;return{top:r,left:i,x:i,y:r,right:i+e.clientWidth,bottom:r+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}function PA(e,t,n){return t==="viewport"?A4(u5e(e,n)):md(t)?f5e(t,n):A4(c5e(Ed(e)))}function h5e(e){const t=O4(e),r=["absolute","fixed"].includes(Iv(e).position)&&zl(e)?h8(e):e;return md(r)?t.filter(i=>md(i)&&d5e(i,r)&&Fu(i)!=="body"):[]}function p5e(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e;const a=[...n==="clippingAncestors"?h5e(t):[].concat(n),r],s=a[0],l=a.reduce((d,p)=>{const g=PA(t,p,i);return d.top=im(g.top,d.top),d.right=_A(g.right,d.right),d.bottom=_A(g.bottom,d.bottom),d.left=im(g.left,d.left),d},PA(t,s,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}const g5e={getClippingRect:p5e,convertOffsetParentRelativeRectToViewportRelativeRect:l5e,isElement:md,getDimensions:EA,getOffsetParent:h8,getDocumentElement:Ed,getElementRects:e=>{let{reference:t,floating:n,strategy:r}=e;return{reference:a5e(t,h8(n),r),floating:{...EA(n),x:0,y:0}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>Iv(e).direction==="rtl"};function m5e(e,t,n,r){r===void 0&&(r={});const{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:a=!0,animationFrame:s=!1}=r,l=i&&!s,d=o&&!s,p=l||d?[...md(e)?O4(e):[],...O4(t)]:[];p.forEach(w=>{l&&w.addEventListener("scroll",n,{passive:!0}),d&&w.addEventListener("resize",n)});let g=null;if(a){let w=!0;g=new ResizeObserver(()=>{w||n(),w=!1}),md(e)&&!s&&g.observe(e),g.observe(t)}let m,y=s?Bu(e):null;s&&b();function b(){const w=Bu(e);y&&(w.x!==y.x||w.y!==y.y||w.width!==y.width||w.height!==y.height)&&n(),y=w,m=requestAnimationFrame(b)}return n(),()=>{var w;p.forEach(P=>{l&&P.removeEventListener("scroll",n),d&&P.removeEventListener("resize",n)}),(w=g)==null||w.disconnect(),g=null,s&&cancelAnimationFrame(m)}}const v5e=(e,t,n)=>W4e(e,t,{platform:g5e,...n});var p8=typeof document<"u"?C.exports.useLayoutEffect:C.exports.useEffect;function g8(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(!g8(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){const o=i[r];if(!(o==="_owner"&&e.$$typeof)&&!g8(e[o],t[o]))return!1}return!0}return e!==e&&t!==t}function y5e(e){const t=C.exports.useRef(e);return p8(()=>{t.current=e}),t}function x5e(e){let{middleware:t,placement:n="bottom",strategy:r="absolute",whileElementsMounted:i}=e===void 0?{}:e;const o=C.exports.useRef(null),a=C.exports.useRef(null),s=y5e(i),l=C.exports.useRef(null),[d,p]=C.exports.useState({x:null,y:null,strategy:r,placement:n,middlewareData:{}}),[g,m]=C.exports.useState(t);g8(g?.map(L=>{let{options:M}=L;return M}),t?.map(L=>{let{options:M}=L;return M}))||m(t);const y=C.exports.useCallback(()=>{!o.current||!a.current||v5e(o.current,a.current,{middleware:g,placement:n,strategy:r}).then(L=>{b.current&&Bl.exports.flushSync(()=>{p(L)})})},[g,n,r]);p8(()=>{b.current&&y()},[y]);const b=C.exports.useRef(!1);p8(()=>(b.current=!0,()=>{b.current=!1}),[]);const w=C.exports.useCallback(()=>{if(typeof l.current=="function"&&(l.current(),l.current=null),o.current&&a.current)if(s.current){const L=s.current(o.current,a.current,y);l.current=L}else y()},[y,s]),P=C.exports.useCallback(L=>{o.current=L,w()},[w]),E=C.exports.useCallback(L=>{a.current=L,w()},[w]),k=C.exports.useMemo(()=>({reference:o,floating:a}),[]);return C.exports.useMemo(()=>({...d,update:y,refs:k,reference:P,floating:E}),[d,y,k,P,E])}const b5e=e=>{const{element:t,padding:n}=e;function r(i){return Object.prototype.hasOwnProperty.call(i,"current")}return{name:"arrow",options:e,fn(i){return r(t)?t.current!=null?bA({element:t.current,padding:n}).fn(i):{}:t?bA({element:t,padding:n}).fn(i):{}}}};function S5e(e){const[t,n]=C.exports.useState(void 0);return N1(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const o=i[0];let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;n({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}const m$="Popper",[l_,v$]=Av(m$),[w5e,y$]=l_(m$),C5e=e=>{const{__scopePopper:t,children:n}=e,[r,i]=C.exports.useState(null);return C.exports.createElement(w5e,{scope:t,anchor:r,onAnchorChange:i},n)},_5e="PopperAnchor",k5e=C.exports.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...i}=e,o=y$(_5e,n),a=C.exports.useRef(null),s=ts(t,a);return C.exports.useEffect(()=>{o.onAnchorChange(r?.current||a.current)}),r?null:C.exports.createElement(zu.div,qn({},i,{ref:s}))}),N4="PopperContent",[E5e,A7e]=l_(N4),[P5e,T5e]=l_(N4,{hasParent:!1,positionUpdateFns:new Set}),L5e=C.exports.forwardRef((e,t)=>{var n,r,i,o,a,s,l,d;const{__scopePopper:p,side:g="bottom",sideOffset:m=0,align:y="center",alignOffset:b=0,arrowPadding:w=0,collisionBoundary:P=[],collisionPadding:E=0,sticky:k="partial",hideWhenDetached:L=!1,avoidCollisions:M=!0,...N}=e,F=y$(N4,p),[B,z]=C.exports.useState(null),j=ts(t,yt=>z(yt)),[q,Y]=C.exports.useState(null),ge=S5e(q),ce=(n=ge?.width)!==null&&n!==void 0?n:0,ve=(r=ge?.height)!==null&&r!==void 0?r:0,we=g+(y!=="center"?"-"+y:""),be=typeof E=="number"?E:{top:0,right:0,bottom:0,left:0,...E},J=Array.isArray(P)?P:[P],U=J.length>0,ee={padding:be,boundary:J.filter(I5e),altBoundary:U},{reference:Q,floating:W,strategy:ie,x:de,y:Se,placement:De,middlewareData:Me,update:Ue}=x5e({strategy:"fixed",placement:we,whileElementsMounted:m5e,middleware:[e5e({mainAxis:m+ve,alignmentAxis:b}),M?t5e({mainAxis:!0,crossAxis:!1,limiter:k==="partial"?n5e():void 0,...ee}):void 0,q?b5e({element:q,padding:w}):void 0,M?X4e({...ee}):void 0,M5e({arrowWidth:ce,arrowHeight:ve}),L?Q4e({strategy:"referenceHidden"}):void 0].filter(A5e)});N1(()=>{Q(F.anchor)},[Q,F.anchor]);const ke=de!==null&&Se!==null,[Ve,ot]=x$(De),pt=(i=Me.arrow)===null||i===void 0?void 0:i.x,Vt=(o=Me.arrow)===null||o===void 0?void 0:o.y,Ft=((a=Me.arrow)===null||a===void 0?void 0:a.centerOffset)!==0,[Re,tt]=C.exports.useState();N1(()=>{B&&tt(window.getComputedStyle(B).zIndex)},[B]);const{hasParent:mt,positionUpdateFns:st}=T5e(N4,p),vt=!mt;C.exports.useLayoutEffect(()=>{if(!vt)return st.add(Ue),()=>{st.delete(Ue)}},[vt,st,Ue]),C.exports.useLayoutEffect(()=>{vt&&ke&&Array.from(st).reverse().forEach(yt=>requestAnimationFrame(yt))},[vt,ke,st]);const mn={"data-side":Ve,"data-align":ot,...N,ref:j,style:{...N.style,animation:ke?void 0:"none",opacity:(s=Me.hide)!==null&&s!==void 0&&s.referenceHidden?0:void 0}};return C.exports.createElement("div",{ref:W,"data-radix-popper-content-wrapper":"",style:{position:ie,left:0,top:0,transform:ke?`translate3d(${Math.round(de)}px, ${Math.round(Se)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:Re,["--radix-popper-transform-origin"]:[(l=Me.transformOrigin)===null||l===void 0?void 0:l.x,(d=Me.transformOrigin)===null||d===void 0?void 0:d.y].join(" ")}},C.exports.createElement(E5e,{scope:p,placedSide:Ve,onArrowChange:Y,arrowX:pt,arrowY:Vt,shouldHideArrow:Ft},vt?C.exports.createElement(P5e,{scope:p,hasParent:!0,positionUpdateFns:st},C.exports.createElement(zu.div,mn)):C.exports.createElement(zu.div,mn)))});function A5e(e){return e!==void 0}function I5e(e){return e!==null}const M5e=e=>({name:"transformOrigin",options:e,fn(t){var n,r,i,o,a;const{placement:s,rects:l,middlewareData:d}=t,g=((n=d.arrow)===null||n===void 0?void 0:n.centerOffset)!==0,m=g?0:e.arrowWidth,y=g?0:e.arrowHeight,[b,w]=x$(s),P={start:"0%",center:"50%",end:"100%"}[w],E=((r=(i=d.arrow)===null||i===void 0?void 0:i.x)!==null&&r!==void 0?r:0)+m/2,k=((o=(a=d.arrow)===null||a===void 0?void 0:a.y)!==null&&o!==void 0?o:0)+y/2;let L="",M="";return b==="bottom"?(L=g?P:`${E}px`,M=`${-y}px`):b==="top"?(L=g?P:`${E}px`,M=`${l.floating.height+y}px`):b==="right"?(L=`${-y}px`,M=g?P:`${k}px`):b==="left"&&(L=`${l.floating.width+y}px`,M=g?P:`${k}px`),{data:{x:L,y:M}}}});function x$(e){const[t,n="center"]=e.split("-");return[t,n]}const R5e=C5e,O5e=k5e,N5e=L5e;function D5e(e,t){return C.exports.useReducer((n,r)=>{const i=t[n][r];return i??n},e)}const b$=e=>{const{present:t,children:n}=e,r=z5e(t),i=typeof n=="function"?n({present:r.isPresent}):C.exports.Children.only(n),o=ts(r.ref,i.ref);return typeof n=="function"||r.isPresent?C.exports.cloneElement(i,{ref:o}):null};b$.displayName="Presence";function z5e(e){const[t,n]=C.exports.useState(),r=C.exports.useRef({}),i=C.exports.useRef(e),o=C.exports.useRef("none"),a=e?"mounted":"unmounted",[s,l]=D5e(a,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return C.exports.useEffect(()=>{const d=my(r.current);o.current=s==="mounted"?d:"none"},[s]),N1(()=>{const d=r.current,p=i.current;if(p!==e){const m=o.current,y=my(d);e?l("MOUNT"):y==="none"||d?.display==="none"?l("UNMOUNT"):l(p&&m!==y?"ANIMATION_OUT":"UNMOUNT"),i.current=e}},[e,l]),N1(()=>{if(t){const d=g=>{const y=my(r.current).includes(g.animationName);g.target===t&&y&&Bl.exports.flushSync(()=>l("ANIMATION_END"))},p=g=>{g.target===t&&(o.current=my(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:C.exports.useCallback(d=>{d&&(r.current=getComputedStyle(d)),n(d)},[])}}function my(e){return e?.animationName||"none"}function F5e({prop:e,defaultProp:t,onChange:n=()=>{}}){const[r,i]=B5e({defaultProp:t,onChange:n}),o=e!==void 0,a=o?e:r,s=Dl(n),l=C.exports.useCallback(d=>{if(o){const g=typeof d=="function"?d(e):d;g!==e&&s(g)}else i(d)},[o,e,i,s]);return[a,l]}function B5e({defaultProp:e,onChange:t}){const n=C.exports.useState(e),[r]=n,i=C.exports.useRef(r),o=Dl(t);return C.exports.useEffect(()=>{i.current!==r&&(o(r),i.current=r)},[r,i,o]),n}const MS="rovingFocusGroup.onEntryFocus",$5e={bubbles:!1,cancelable:!0},u_="RovingFocusGroup",[m8,S$,H5e]=r$(u_),[W5e,w$]=Av(u_,[H5e]),[V5e,U5e]=W5e(u_),G5e=C.exports.forwardRef((e,t)=>C.exports.createElement(m8.Provider,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(m8.Slot,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(j5e,qn({},e,{ref:t}))))),j5e=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:i=!1,dir:o,currentTabStopId:a,defaultCurrentTabStopId:s,onCurrentTabStopIdChange:l,onEntryFocus:d,...p}=e,g=C.exports.useRef(null),m=ts(t,g),y=i$(o),[b=null,w]=F5e({prop:a,defaultProp:s,onChange:l}),[P,E]=C.exports.useState(!1),k=Dl(d),L=S$(n),M=C.exports.useRef(!1),[N,F]=C.exports.useState(0);return C.exports.useEffect(()=>{const B=g.current;if(B)return B.addEventListener(MS,k),()=>B.removeEventListener(MS,k)},[k]),C.exports.createElement(V5e,{scope:n,orientation:r,dir:y,loop:i,currentTabStopId:b,onItemFocus:C.exports.useCallback(B=>w(B),[w]),onItemShiftTab:C.exports.useCallback(()=>E(!0),[]),onFocusableItemAdd:C.exports.useCallback(()=>F(B=>B+1),[]),onFocusableItemRemove:C.exports.useCallback(()=>F(B=>B-1),[])},C.exports.createElement(zu.div,qn({tabIndex:P||N===0?-1:0,"data-orientation":r},p,{ref:m,style:{outline:"none",...e.style},onMouseDown:jn(e.onMouseDown,()=>{M.current=!0}),onFocus:jn(e.onFocus,B=>{const z=!M.current;if(B.target===B.currentTarget&&z&&!P){const j=new CustomEvent(MS,$5e);if(B.currentTarget.dispatchEvent(j),!j.defaultPrevented){const q=L().filter(we=>we.focusable),Y=q.find(we=>we.active),ge=q.find(we=>we.id===b),ve=[Y,ge,...q].filter(Boolean).map(we=>we.ref.current);C$(ve)}}M.current=!1}),onBlur:jn(e.onBlur,()=>E(!1))})))}),q5e="RovingFocusGroupItem",K5e=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:i=!1,...o}=e,a=H4e(),s=U5e(q5e,n),l=s.currentTabStopId===a,d=S$(n),{onFocusableItemAdd:p,onFocusableItemRemove:g}=s;return C.exports.useEffect(()=>{if(r)return p(),()=>g()},[r,p,g]),C.exports.createElement(m8.ItemSlot,{scope:n,id:a,focusable:r,active:i},C.exports.createElement(zu.span,qn({tabIndex:l?0:-1,"data-orientation":s.orientation},o,{ref:t,onMouseDown:jn(e.onMouseDown,m=>{r?s.onItemFocus(a):m.preventDefault()}),onFocus:jn(e.onFocus,()=>s.onItemFocus(a)),onKeyDown:jn(e.onKeyDown,m=>{if(m.key==="Tab"&&m.shiftKey){s.onItemShiftTab();return}if(m.target!==m.currentTarget)return;const y=X5e(m,s.orientation,s.dir);if(y!==void 0){m.preventDefault();let w=d().filter(P=>P.focusable).map(P=>P.ref.current);if(y==="last")w.reverse();else if(y==="prev"||y==="next"){y==="prev"&&w.reverse();const P=w.indexOf(m.currentTarget);w=s.loop?Q5e(w,P+1):w.slice(P+1)}setTimeout(()=>C$(w))}})})))}),Z5e={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function Y5e(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function X5e(e,t,n){const r=Y5e(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return Z5e[r]}function C$(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function Q5e(e,t){return e.map((n,r)=>e[(t+r)%e.length])}const J5e=G5e,exe=K5e,txe=["Enter"," "],nxe=["ArrowDown","PageUp","Home"],_$=["ArrowUp","PageDown","End"],rxe=[...nxe,..._$],vx="Menu",[v8,ixe,oxe]=r$(vx),[Ch,k$]=Av(vx,[oxe,v$,w$]),c_=v$(),E$=w$(),[axe,yx]=Ch(vx),[sxe,d_]=Ch(vx),lxe=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:i,onOpenChange:o,modal:a=!0}=e,s=c_(t),[l,d]=C.exports.useState(null),p=C.exports.useRef(!1),g=Dl(o),m=i$(i);return C.exports.useEffect(()=>{const y=()=>{p.current=!0,document.addEventListener("pointerdown",b,{capture:!0,once:!0}),document.addEventListener("pointermove",b,{capture:!0,once:!0})},b=()=>p.current=!1;return document.addEventListener("keydown",y,{capture:!0}),()=>{document.removeEventListener("keydown",y,{capture:!0}),document.removeEventListener("pointerdown",b,{capture:!0}),document.removeEventListener("pointermove",b,{capture:!0})}},[]),C.exports.createElement(R5e,s,C.exports.createElement(axe,{scope:t,open:n,onOpenChange:g,content:l,onContentChange:d},C.exports.createElement(sxe,{scope:t,onClose:C.exports.useCallback(()=>g(!1),[g]),isUsingKeyboardRef:p,dir:m,modal:a},r)))},uxe=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,i=c_(n);return C.exports.createElement(O5e,qn({},i,r,{ref:t}))}),cxe="MenuPortal",[I7e,dxe]=Ch(cxe,{forceMount:void 0}),sd="MenuContent",[fxe,P$]=Ch(sd),hxe=C.exports.forwardRef((e,t)=>{const n=dxe(sd,e.__scopeMenu),{forceMount:r=n.forceMount,...i}=e,o=yx(sd,e.__scopeMenu),a=d_(sd,e.__scopeMenu);return C.exports.createElement(v8.Provider,{scope:e.__scopeMenu},C.exports.createElement(b$,{present:r||o.open},C.exports.createElement(v8.Slot,{scope:e.__scopeMenu},a.modal?C.exports.createElement(pxe,qn({},i,{ref:t})):C.exports.createElement(gxe,qn({},i,{ref:t})))))}),pxe=C.exports.forwardRef((e,t)=>{const n=yx(sd,e.__scopeMenu),r=C.exports.useRef(null),i=ts(t,r);return C.exports.useEffect(()=>{const o=r.current;if(o)return tz(o)},[]),C.exports.createElement(T$,qn({},e,{ref:i,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:jn(e.onFocusOutside,o=>o.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)}))}),gxe=C.exports.forwardRef((e,t)=>{const n=yx(sd,e.__scopeMenu);return C.exports.createElement(T$,qn({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)}))}),T$=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:i,onOpenAutoFocus:o,onCloseAutoFocus:a,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m,disableOutsideScroll:y,...b}=e,w=yx(sd,n),P=d_(sd,n),E=c_(n),k=E$(n),L=ixe(n),[M,N]=C.exports.useState(null),F=C.exports.useRef(null),B=ts(t,F,w.onContentChange),z=C.exports.useRef(0),j=C.exports.useRef(""),q=C.exports.useRef(0),Y=C.exports.useRef(null),ge=C.exports.useRef("right"),ce=C.exports.useRef(0),ve=y?$z:C.exports.Fragment,we=y?{as:Jm,allowPinchZoom:!0}:void 0,be=U=>{var ee,Q;const W=j.current+U,ie=L().filter(ke=>!ke.disabled),de=document.activeElement,Se=(ee=ie.find(ke=>ke.ref.current===de))===null||ee===void 0?void 0:ee.textValue,De=ie.map(ke=>ke.textValue),Me=_xe(De,W,Se),Ue=(Q=ie.find(ke=>ke.textValue===Me))===null||Q===void 0?void 0:Q.ref.current;(function ke(Ve){j.current=Ve,window.clearTimeout(z.current),Ve!==""&&(z.current=window.setTimeout(()=>ke(""),1e3))})(W),Ue&&setTimeout(()=>Ue.focus())};C.exports.useEffect(()=>()=>window.clearTimeout(z.current),[]),I4e();const J=C.exports.useCallback(U=>{var ee,Q;return ge.current===((ee=Y.current)===null||ee===void 0?void 0:ee.side)&&Exe(U,(Q=Y.current)===null||Q===void 0?void 0:Q.area)},[]);return C.exports.createElement(fxe,{scope:n,searchRef:j,onItemEnter:C.exports.useCallback(U=>{J(U)&&U.preventDefault()},[J]),onItemLeave:C.exports.useCallback(U=>{var ee;J(U)||((ee=F.current)===null||ee===void 0||ee.focus(),N(null))},[J]),onTriggerLeave:C.exports.useCallback(U=>{J(U)&&U.preventDefault()},[J]),pointerGraceTimerRef:q,onPointerGraceIntentChange:C.exports.useCallback(U=>{Y.current=U},[])},C.exports.createElement(ve,we,C.exports.createElement(M4e,{asChild:!0,trapped:i,onMountAutoFocus:jn(o,U=>{var ee;U.preventDefault(),(ee=F.current)===null||ee===void 0||ee.focus()}),onUnmountAutoFocus:a},C.exports.createElement(T4e,{asChild:!0,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m},C.exports.createElement(J5e,qn({asChild:!0},k,{dir:P.dir,orientation:"vertical",loop:r,currentTabStopId:M,onCurrentTabStopIdChange:N,onEntryFocus:U=>{P.isUsingKeyboardRef.current||U.preventDefault()}}),C.exports.createElement(N5e,qn({role:"menu","aria-orientation":"vertical","data-state":Sxe(w.open),"data-radix-menu-content":"",dir:P.dir},E,b,{ref:B,style:{outline:"none",...b.style},onKeyDown:jn(b.onKeyDown,U=>{const Q=U.target.closest("[data-radix-menu-content]")===U.currentTarget,W=U.ctrlKey||U.altKey||U.metaKey,ie=U.key.length===1;Q&&(U.key==="Tab"&&U.preventDefault(),!W&&ie&&be(U.key));const de=F.current;if(U.target!==de||!rxe.includes(U.key))return;U.preventDefault();const De=L().filter(Me=>!Me.disabled).map(Me=>Me.ref.current);_$.includes(U.key)&&De.reverse(),wxe(De)}),onBlur:jn(e.onBlur,U=>{U.currentTarget.contains(U.target)||(window.clearTimeout(z.current),j.current="")}),onPointerMove:jn(e.onPointerMove,x8(U=>{const ee=U.target,Q=ce.current!==U.clientX;if(U.currentTarget.contains(ee)&&Q){const W=U.clientX>ce.current?"right":"left";ge.current=W,ce.current=U.clientX}}))})))))))}),y8="MenuItem",TA="menu.itemSelect",mxe=C.exports.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...i}=e,o=C.exports.useRef(null),a=d_(y8,e.__scopeMenu),s=P$(y8,e.__scopeMenu),l=ts(t,o),d=C.exports.useRef(!1),p=()=>{const g=o.current;if(!n&&g){const m=new CustomEvent(TA,{bubbles:!0,cancelable:!0});g.addEventListener(TA,y=>r?.(y),{once:!0}),n$(g,m),m.defaultPrevented?d.current=!1:a.onClose()}};return C.exports.createElement(vxe,qn({},i,{ref:l,disabled:n,onClick:jn(e.onClick,p),onPointerDown:g=>{var m;(m=e.onPointerDown)===null||m===void 0||m.call(e,g),d.current=!0},onPointerUp:jn(e.onPointerUp,g=>{var m;d.current||(m=g.currentTarget)===null||m===void 0||m.click()}),onKeyDown:jn(e.onKeyDown,g=>{const m=s.searchRef.current!=="";n||m&&g.key===" "||txe.includes(g.key)&&(g.currentTarget.click(),g.preventDefault())})}))}),vxe=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:i,...o}=e,a=P$(y8,n),s=E$(n),l=C.exports.useRef(null),d=ts(t,l),[p,g]=C.exports.useState(!1),[m,y]=C.exports.useState("");return C.exports.useEffect(()=>{const b=l.current;if(b){var w;y(((w=b.textContent)!==null&&w!==void 0?w:"").trim())}},[o.children]),C.exports.createElement(v8.ItemSlot,{scope:n,disabled:r,textValue:i??m},C.exports.createElement(exe,qn({asChild:!0},s,{focusable:!r}),C.exports.createElement(zu.div,qn({role:"menuitem","data-highlighted":p?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0},o,{ref:d,onPointerMove:jn(e.onPointerMove,x8(b=>{r?a.onItemLeave(b):(a.onItemEnter(b),b.defaultPrevented||b.currentTarget.focus())})),onPointerLeave:jn(e.onPointerLeave,x8(b=>a.onItemLeave(b))),onFocus:jn(e.onFocus,()=>g(!0)),onBlur:jn(e.onBlur,()=>g(!1))}))))}),yxe="MenuRadioGroup";Ch(yxe,{value:void 0,onValueChange:()=>{}});const xxe="MenuItemIndicator";Ch(xxe,{checked:!1});const bxe="MenuSub";Ch(bxe);function Sxe(e){return e?"open":"closed"}function wxe(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function Cxe(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function _xe(e,t,n){const i=t.length>1&&Array.from(t).every(d=>d===t[0])?t[0]:t,o=n?e.indexOf(n):-1;let a=Cxe(e,Math.max(o,0));i.length===1&&(a=a.filter(d=>d!==n));const l=a.find(d=>d.toLowerCase().startsWith(i.toLowerCase()));return l!==n?l:void 0}function kxe(e,t){const{x:n,y:r}=e;let i=!1;for(let o=0,a=t.length-1;or!=p>r&&n<(d-s)*(r-l)/(p-l)+s&&(i=!i)}return i}function Exe(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return kxe(n,t)}function x8(e){return t=>t.pointerType==="mouse"?e(t):void 0}const Pxe=lxe,Txe=uxe,Lxe=hxe,Axe=mxe,L$="ContextMenu",[Ixe,M7e]=Av(L$,[k$]),xx=k$(),[Mxe,A$]=Ixe(L$),Rxe=e=>{const{__scopeContextMenu:t,children:n,onOpenChange:r,dir:i,modal:o=!0}=e,[a,s]=C.exports.useState(!1),l=xx(t),d=Dl(r),p=C.exports.useCallback(g=>{s(g),d(g)},[d]);return C.exports.createElement(Mxe,{scope:t,open:a,onOpenChange:p,modal:o},C.exports.createElement(Pxe,qn({},l,{dir:i,open:a,onOpenChange:p,modal:o}),n))},Oxe="ContextMenuTrigger",Nxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=A$(Oxe,n),o=xx(n),a=C.exports.useRef({x:0,y:0}),s=C.exports.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...a.current})}),l=C.exports.useRef(0),d=C.exports.useCallback(()=>window.clearTimeout(l.current),[]),p=g=>{a.current={x:g.clientX,y:g.clientY},i.onOpenChange(!0)};return C.exports.useEffect(()=>d,[d]),C.exports.createElement(C.exports.Fragment,null,C.exports.createElement(Txe,qn({},o,{virtualRef:s})),C.exports.createElement(zu.span,qn({"data-state":i.open?"open":"closed"},r,{ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:jn(e.onContextMenu,g=>{d(),p(g),g.preventDefault()}),onPointerDown:jn(e.onPointerDown,vy(g=>{d(),l.current=window.setTimeout(()=>p(g),700)})),onPointerMove:jn(e.onPointerMove,vy(d)),onPointerCancel:jn(e.onPointerCancel,vy(d)),onPointerUp:jn(e.onPointerUp,vy(d))})))}),Dxe="ContextMenuContent",zxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=A$(Dxe,n),o=xx(n),a=C.exports.useRef(!1);return C.exports.createElement(Lxe,qn({},o,r,{ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:s=>{var l;(l=e.onCloseAutoFocus)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&a.current&&s.preventDefault(),a.current=!1},onInteractOutside:s=>{var l;(l=e.onInteractOutside)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&!i.modal&&(a.current=!0)},style:{...e.style,["--radix-context-menu-content-transform-origin"]:"var(--radix-popper-transform-origin)"}}))}),Fxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=xx(n);return C.exports.createElement(Axe,qn({},i,r,{ref:t}))});function vy(e){return t=>t.pointerType!=="mouse"?e(t):void 0}const Bxe=Rxe,$xe=Nxe,Hxe=zxe,Lf=Fxe,Wxe=Pt([e=>e.gallery,e=>e.options,Tr],(e,t,n)=>{const{categories:r,currentCategory:i,currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,galleryWidth:y}=e;return{currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,galleryGridTemplateColumns:`repeat(auto-fill, minmax(${d}px, auto))`,activeTabName:n,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,images:r[i].images,areMoreImagesAvailable:r[i].areMoreImagesAvailable,currentCategory:i,galleryWidth:y}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),Vxe=Pt([e=>e.options,e=>e.gallery,e=>e.system,Tr],(e,t,n,r)=>({mayDeleteImage:n.isConnected&&!n.isProcessing,galleryImageObjectFit:t.galleryImageObjectFit,galleryImageMinimumWidth:t.galleryImageMinimumWidth,activeTabName:r}),{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),Uxe=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,Gxe=C.exports.memo(e=>{const t=it(),{activeTabName:n,galleryImageObjectFit:r,galleryImageMinimumWidth:i,mayDeleteImage:o}=Be(Vxe),{image:a,isSelected:s}=e,{url:l,uuid:d,metadata:p}=a,[g,m]=C.exports.useState(!1),y=kd(),b=()=>m(!0),w=()=>m(!1),P=()=>{a.metadata&&t(Px(a.metadata.image.prompt)),y({title:"Prompt Set",status:"success",duration:2500,isClosable:!0})},E=()=>{a.metadata&&t(Rv(a.metadata.image.seed)),y({title:"Seed Set",status:"success",duration:2500,isClosable:!0})},k=()=>{t(tv(a)),n!=="img2img"&&t(Wa("img2img")),y({title:"Sent to Image To Image",status:"success",duration:2500,isClosable:!0})},L=()=>{t(L4(a)),n!=="inpainting"&&t(Wa("inpainting")),y({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0})},M=()=>{p&&t(O8e(p)),y({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})},N=async()=>{if(p?.image?.init_image_path&&(await fetch(p.image.init_image_path)).ok){t(Wa("img2img")),t(N8e(p)),y({title:"Initial Image Set",status:"success",duration:2500,isClosable:!0});return}y({title:"Initial Image Not Set",description:"Could not load initial image.",status:"error",duration:2500,isClosable:!0})};return oe(Bxe,{children:[S($xe,{children:oe(wd,{position:"relative",className:"hoverable-image",onMouseOver:b,onMouseOut:w,children:[S(F5,{className:"hoverable-image-image",objectFit:r,rounded:"md",src:l,loading:"lazy"}),S("div",{className:"hoverable-image-content",onClick:()=>t(KB(a)),children:s&&S(_a,{width:"50%",height:"50%",as:Dye,className:"hoverable-image-check"})}),g&&i>=64&&S("div",{className:"hoverable-image-delete-button",children:S(Qi,{label:"Delete image",hasArrow:!0,children:S(l8,{image:a,children:S(Ru,{"aria-label":"Delete image",icon:S(n3e,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14,isDisabled:!o})})})})]},d)}),oe(Hxe,{className:"hoverable-image-context-menu",sticky:"always",children:[S(Lf,{onClickCapture:P,disabled:a?.metadata?.image?.prompt===void 0,children:"Use Prompt"}),S(Lf,{onClickCapture:E,disabled:a?.metadata?.image?.seed===void 0,children:"Use Seed"}),S(Lf,{onClickCapture:M,disabled:!["txt2img","img2img"].includes(a?.metadata?.image?.type),children:"Use All Parameters"}),S(Qi,{label:"Load initial image used for this generation",children:S(Lf,{onClickCapture:N,disabled:a?.metadata?.image?.type!=="img2img",children:"Use Initial Image"})}),S(Lf,{onClickCapture:k,children:"Send to Image To Image"}),S(Lf,{onClickCapture:L,children:"Send to Inpainting"}),S(l8,{image:a,children:S(Lf,{"data-warning":!0,children:"Delete Image"})})]})]})},Uxe),f_=e=>{const{label:t,styleClass:n,formControlProps:r,formLabelProps:i,sliderTrackProps:o,sliderInnerTrackProps:a,sliderThumbProps:s,sliderThumbTooltipProps:l,...d}=e;return S(Sd,{className:`invokeai__slider-form-control ${n}`,...r,children:oe("div",{className:"invokeai__slider-inner-container",children:[S(yh,{className:"invokeai__slider-form-label",whiteSpace:"nowrap",...i,children:t}),oe(x7,{className:"invokeai__slider-root","aria-label":t,...d,children:[S(lF,{className:"invokeai__slider-track",...o,children:S(uF,{className:"invokeai__slider-filled-track",...a})}),S(Qi,{className:"invokeai__slider-thumb-tooltip",placement:"top",hasArrow:!0,...l,children:S(sF,{className:"invokeai__slider-thumb",...s})})]})]})})};function I$(e){return gt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 19c.946 0 1.81-.103 2.598-.281l-1.757-1.757c-.273.021-.55.038-.841.038-5.351 0-7.424-3.846-7.926-5a8.642 8.642 0 0 1 1.508-2.297L4.184 8.305c-1.538 1.667-2.121 3.346-2.132 3.379a.994.994 0 0 0 0 .633C2.073 12.383 4.367 19 12 19zm0-14c-1.837 0-3.346.396-4.604.981L3.707 2.293 2.293 3.707l18 18 1.414-1.414-3.319-3.319c2.614-1.951 3.547-4.615 3.561-4.657a.994.994 0 0 0 0-.633C21.927 11.617 19.633 5 12 5zm4.972 10.558-2.28-2.28c.19-.39.308-.819.308-1.278 0-1.641-1.359-3-3-3-.459 0-.888.118-1.277.309L8.915 7.501A9.26 9.26 0 0 1 12 7c5.351 0 7.424 3.846 7.926 5-.302.692-1.166 2.342-2.954 3.558z"}}]})(e)}function M$(e){return gt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 16c1.671 0 3-1.331 3-3s-1.329-3-3-3-3 1.331-3 3 1.329 3 3 3z"}},{tag:"path",attr:{d:"M20.817 11.186a8.94 8.94 0 0 0-1.355-3.219 9.053 9.053 0 0 0-2.43-2.43 8.95 8.95 0 0 0-3.219-1.355 9.028 9.028 0 0 0-1.838-.18V2L8 5l3.975 3V6.002c.484-.002.968.044 1.435.14a6.961 6.961 0 0 1 2.502 1.053 7.005 7.005 0 0 1 1.892 1.892A6.967 6.967 0 0 1 19 13a7.032 7.032 0 0 1-.55 2.725 7.11 7.11 0 0 1-.644 1.188 7.2 7.2 0 0 1-.858 1.039 7.028 7.028 0 0 1-3.536 1.907 7.13 7.13 0 0 1-2.822 0 6.961 6.961 0 0 1-2.503-1.054 7.002 7.002 0 0 1-1.89-1.89A6.996 6.996 0 0 1 5 13H3a9.02 9.02 0 0 0 1.539 5.034 9.096 9.096 0 0 0 2.428 2.428A8.95 8.95 0 0 0 12 22a9.09 9.09 0 0 0 1.814-.183 9.014 9.014 0 0 0 3.218-1.355 8.886 8.886 0 0 0 1.331-1.099 9.228 9.228 0 0 0 1.1-1.332A8.952 8.952 0 0 0 21 13a9.09 9.09 0 0 0-.183-1.814z"}}]})(e)}function R$(e){return gt({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 9a3.02 3.02 0 0 0-3 3c0 1.642 1.358 3 3 3 1.641 0 3-1.358 3-3 0-1.641-1.359-3-3-3z"}},{tag:"path",attr:{d:"M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316-.105-.316C21.927 11.617 19.633 5 12 5zm0 12c-5.351 0-7.424-3.846-7.926-5C4.578 10.842 6.652 7 12 7c5.351 0 7.424 3.846 7.926 5-.504 1.158-2.578 5-7.926 5z"}}]})(e)}const jxe=320;function qxe(){const e=it(),t=kd(),{images:n,currentCategory:r,currentImageUuid:i,shouldPinGallery:o,shouldShowGallery:a,galleryScrollPosition:s,galleryImageMinimumWidth:l,galleryGridTemplateColumns:d,activeTabName:p,galleryImageObjectFit:g,shouldHoldGalleryOpen:m,shouldAutoSwitchToNewImages:y,areMoreImagesAvailable:b,galleryWidth:w}=Be(Wxe),[P,E]=C.exports.useState(300),[k,L]=C.exports.useState(590),[M,N]=C.exports.useState(w>=jxe);C.exports.useEffect(()=>{!o||(p==="inpainting"?(e(dy(190)),E(190),L(190)):p==="img2img"?(e(dy(Math.min(Math.max(Number(w),0),490))),L(490)):(e(dy(Math.min(Math.max(Number(w),0),590))),L(590)),e(Eu(!0)))},[e,p,o,w]),C.exports.useEffect(()=>{o||L(window.innerWidth)},[o]);const F=C.exports.useRef(null),B=C.exports.useRef(null),z=C.exports.useRef(null),j=()=>{e(K3e(!o)),e(Eu(!0))},q=()=>{a?ge():Y()},Y=()=>{e(u8(!0)),o&&e(Eu(!0))},ge=()=>{e(u8(!1)),e(Z3e(B.current?B.current.scrollTop:0)),e(X3e(!1))},ce=()=>{e(o8(r))},ve=U=>{e(Tf(U)),e(Eu(!0))},we=()=>{z.current=window.setTimeout(()=>ge(),500)},be=()=>{z.current&&window.clearTimeout(z.current)};zt("g",()=>{q()},[a]),zt("left",()=>{e(YB())}),zt("right",()=>{e(ZB())}),zt("shift+g",()=>{j()},[o]);const J=32;return zt("shift+up",()=>{if(!(l>=256)&&l<256){const U=l+J;U<=256?(e(Tf(U)),t({title:`Gallery Thumbnail Size set to ${U}`,status:"success",duration:1e3,isClosable:!0})):(e(Tf(256)),t({title:"Gallery Thumbnail Size set to 256",status:"success",duration:1e3,isClosable:!0}))}},[l]),zt("shift+down",()=>{if(!(l<=32)&&l>32){const U=l-J;U>32?(e(Tf(U)),t({title:`Gallery Thumbnail Size set to ${U}`,status:"success",duration:1e3,isClosable:!0})):(e(Tf(32)),t({title:"Gallery Thumbnail Size set to 32",status:"success",duration:1e3,isClosable:!0}))}},[l]),zt("shift+r",()=>{e(Tf(64)),t({title:"Reset Gallery Image Size",status:"success",duration:2500,isClosable:!0})},[l]),C.exports.useEffect(()=>{!B.current||(B.current.scrollTop=s)},[s,a]),C.exports.useEffect(()=>{N(w>=280)},[w]),BB(F,ge,!o),S(FB,{nodeRef:F,in:a||m&&!o,unmountOnExit:!0,timeout:200,classNames:"image-gallery-wrapper",children:S("div",{className:"image-gallery-wrapper",style:{zIndex:o?1:100},"data-pinned":o,ref:F,onMouseLeave:o?void 0:we,onMouseEnter:o?void 0:be,onMouseOver:o?void 0:be,children:oe(e$,{minWidth:P,maxWidth:k,className:"image-gallery-popup",handleStyles:{left:{width:"15px"}},enable:{top:!1,right:!1,bottom:!1,left:!0,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},size:{width:w,height:o?"100%":"100vh"},onResizeStop:(U,ee,Q,W)=>{e(dy(xt.clamp(Number(w)+W.width,0,Number(k)))),Q.removeAttribute("data-resize-alert")},onResize:(U,ee,Q,W)=>{const ie=xt.clamp(Number(w)+W.width,0,Number(k));ie>=280&&!M?N(!0):ie<280&&M&&N(!1),ie>=k?Q.setAttribute("data-resize-alert","true"):Q.removeAttribute("data-resize-alert")},children:[oe("div",{className:"image-gallery-header",children:[S("div",{children:S(Zf,{size:"sm",isAttached:!0,variant:"solid",className:"image-gallery-category-btn-group",children:M?oe(Bn,{children:[S(Za,{"data-selected":r==="result",onClick:()=>e(cy("result")),children:"Invocations"}),S(Za,{"data-selected":r==="user",onClick:()=>e(cy("user")),children:"User"})]}):oe(Bn,{children:[S(Yt,{"aria-label":"Show Invocations",tooltip:"Show Invocations","data-selected":r==="result",icon:S(Hye,{}),onClick:()=>e(cy("result"))}),S(Yt,{"aria-label":"Show Uploads",tooltip:"Show Uploads","data-selected":r==="user",icon:S(a3e,{}),onClick:()=>e(cy("user"))})]})})}),oe("div",{children:[S(oh,{isLazy:!0,trigger:"hover",placement:"left",triggerComponent:S(Yt,{size:"sm","aria-label":"Gallery Settings",icon:S(PB,{}),className:"image-gallery-icon-btn",cursor:"pointer"}),children:oe("div",{className:"image-gallery-settings-popover",children:[oe("div",{children:[S(f_,{value:l,onChange:ve,min:32,max:256,width:100,label:"Image Size",formLabelProps:{style:{fontSize:"0.9rem"}},sliderThumbTooltipProps:{label:`${l}px`}}),S(Yt,{size:"sm","aria-label":"Reset",tooltip:"Reset Size",onClick:()=>e(Tf(64)),icon:S(M$,{}),"data-selected":o,styleClass:"image-gallery-icon-btn"})]}),S("div",{children:S(Qm,{label:"Maintain Aspect Ratio",isChecked:g==="contain",onChange:()=>e(Y3e(g==="contain"?"cover":"contain"))})}),S("div",{children:S(Qm,{label:"Auto-Switch to New Images",isChecked:y,onChange:U=>e(Q3e(U.target.checked))})})]})}),S(Yt,{size:"sm",className:"image-gallery-icon-btn","aria-label":"Pin Gallery",tooltip:"Pin Gallery (Shift+G)",onClick:j,icon:o?S(MB,{}):S(RB,{})})]})]}),S("div",{className:"image-gallery-container",ref:B,children:n.length||b?oe(Bn,{children:[S("div",{className:"image-gallery",style:{gridTemplateColumns:d},children:n.map(U=>{const{uuid:ee}=U;return S(Gxe,{image:U,isSelected:i===ee},ee)})}),S(Za,{onClick:ce,isDisabled:!b,className:"image-gallery-load-more-btn",children:b?"Load More":"All Images Loaded"})]}):oe("div",{className:"image-gallery-container-placeholder",children:[S(CB,{}),S("p",{children:"No Images In Gallery"})]})})]})})})}const Kxe=Pt([e=>e.options,Tr],(e,t)=>{const{showDualDisplay:n,shouldPinOptionsPanel:r}=e;return{showDualDisplay:n,shouldPinOptionsPanel:r,activeTabName:t}}),h_=e=>{const t=it(),{optionsPanel:n,children:r,styleClass:i}=e,{showDualDisplay:o,activeTabName:a}=Be(Kxe);return S("div",{className:i?`workarea-wrapper ${i}`:"workarea-wrapper",children:oe("div",{className:"workarea-main",children:[n,oe("div",{className:"workarea-children-wrapper",children:[r,a==="inpainting"&&S(Qi,{label:"Toggle Split View",children:S("div",{className:"workarea-split-button","data-selected":o,onClick:()=>t(D8e(!o)),children:S(l4e,{})})})]}),S(qxe,{})]})})};function Zxe(){return S(h_,{optionsPanel:S(H3e,{}),children:S(s4e,{})})}function Yxe(){const e=it(),t=Be(r=>r.inpainting.shouldShowBoundingBoxFill);return S(Qm,{label:"Darken Outside Box",isChecked:t,onChange:()=>{e(R3e(!t))},styleClass:"inpainting-bounding-box-darken"})}const Xxe=Pt(e=>e.inpainting,e=>{const{canvasDimensions:t,boundingBoxDimensions:n,shouldLockBoundingBox:r}=e;return{canvasDimensions:t,boundingBoxDimensions:n,shouldLockBoundingBox:r}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function LA(e){const{dimension:t}=e,n=it(),{shouldLockBoundingBox:r,canvasDimensions:i,boundingBoxDimensions:o}=Be(Xxe),a=i[t],s=o[t],l=p=>{t=="width"&&n(Eg({...o,width:Math.floor(p)})),t=="height"&&n(Eg({...o,height:Math.floor(p)}))},d=()=>{t=="width"&&n(Eg({...o,width:Math.floor(a)})),t=="height"&&n(Eg({...o,height:Math.floor(a)}))};return oe("div",{className:"inpainting-bounding-box-dimensions-slider-numberinput",children:[S(f_,{isDisabled:r,label:"Box H",min:64,max:pl(a,64),step:64,value:s,onChange:l,width:"5rem"}),S(Uo,{isDisabled:r,value:s,onChange:l,min:64,max:pl(a,64),step:64,padding:"0",width:"5rem"}),S(Yt,{size:"sm","aria-label":"Reset Height",tooltip:"Reset Height",onClick:d,icon:S(M$,{}),styleClass:"inpainting-bounding-box-reset-icon-btn",isDisabled:r||a===s})]})}function Qxe(){const e=Be(r=>r.inpainting.shouldLockBoundingBox),t=it();return S(Qm,{label:"Lock Bounding Box",isChecked:e,onChange:()=>{t(n_(!e))},styleClass:"inpainting-bounding-box-darken"})}function Jxe(){const e=Be(r=>r.inpainting.shouldShowBoundingBox),t=it();return S(Yt,{"aria-label":"Toggle Bounding Box Visibility",icon:e?S(R$,{size:22}):S(I$,{size:22}),onClick:()=>t(VB(!e)),background:"none",padding:0})}const ebe=()=>oe("div",{className:"inpainting-bounding-box-settings",children:[oe("div",{className:"inpainting-bounding-box-header",children:[S("p",{children:"Inpaint Box"}),S(Jxe,{})]}),oe("div",{className:"inpainting-bounding-box-settings-items",children:[S(LA,{dimension:"width"}),S(LA,{dimension:"height"}),oe(zn,{alignItems:"center",justifyContent:"space-between",children:[S(Yxe,{}),S(Qxe,{})]})]})]}),tbe=Pt(e=>e.inpainting,e=>{const{inpaintReplace:t,shouldUseInpaintReplace:n}=e;return{inpaintReplace:t,shouldUseInpaintReplace:n}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function nbe(){const{inpaintReplace:e,shouldUseInpaintReplace:t}=Be(tbe),n=it();return oe("div",{style:{display:"flex",alignItems:"center",padding:"0 1rem 0 0.2rem"},children:[S(Uo,{label:"Inpaint Replace",value:e,min:0,max:1,step:.05,width:"auto",formControlProps:{style:{paddingRight:"1rem"}},isInteger:!1,isDisabled:!t,onChange:r=>{n(D3e(r))}}),S(Nl,{isChecked:t,onChange:r=>n(N3e(r.target.checked))})]})}const rbe=Pt(e=>e.inpainting,e=>{const{pastLines:t,futureLines:n}=e;return{mayClearBrushHistory:!(n.length>0||t.length>0)}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function ibe(){const e=it(),t=kd(),{mayClearBrushHistory:n}=Be(rbe);return S(Hc,{onClick:()=>{e(O3e()),t({title:"Brush Stroke History Cleared",status:"success",duration:2500,isClosable:!0})},tooltip:"Clears brush stroke history",disabled:n,styleClass:"inpainting-options-btn",children:"Clear Brush History"})}function obe(){return oe(Bn,{children:[S(nbe,{}),S(ebe,{}),S(ibe,{})]})}function abe(){const e=Be(n=>n.options.showAdvancedOptions),t={seed:{header:S(U7,{}),feature:go.SEED,options:S(G7,{})},variations:{header:S(q7,{}),feature:go.VARIATIONS,options:S(K7,{})},face_restore:{header:S(H7,{}),feature:go.FACE_CORRECTION,options:S(fx,{})},upscale:{header:S(j7,{}),feature:go.UPSCALE,options:S(hx,{})}};return oe(r_,{children:[S(e_,{}),S(J7,{}),S(X7,{}),S(pB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),S(obe,{}),S(Z7,{}),e?S(Q7,{accordionInfo:t}):null]})}var sbe=Math.PI/180;function lbe(){return typeof window<"u"&&({}.toString.call(window)==="[object Window]"||{}.toString.call(window)==="[object global]")}const g1=typeof global<"u"?global:typeof window<"u"?window:typeof WorkerGlobalScope<"u"?self:{},lt={_global:g1,version:"8.3.13",isBrowser:lbe(),isUnminified:/param/.test(function(e){}.toString()),dblClickWindow:400,getAngle(e){return lt.angleDeg?e*sbe:e},enableTrace:!1,pointerEventsEnabled:!0,autoDrawEnabled:!0,hitOnDragEnabled:!1,capturePointerEventsEnabled:!1,_mouseListenClick:!1,_touchListenClick:!1,_pointerListenClick:!1,_mouseInDblClickWindow:!1,_touchInDblClickWindow:!1,_pointerInDblClickWindow:!1,_mouseDblClickPointerId:null,_touchDblClickPointerId:null,_pointerDblClickPointerId:null,pixelRatio:typeof window<"u"&&window.devicePixelRatio||1,dragDistance:3,angleDeg:!0,showWarnings:!0,dragButtons:[0,1],isDragging(){return lt.DD.isDragging},isDragReady(){return!!lt.DD.node},document:g1.document,_injectGlobal(e){g1.Konva=e}},vr=e=>{lt[e.prototype.getClassName()]=e};lt._injectGlobal(lt);class da{constructor(t=[1,0,0,1,0,0]){this.dirty=!1,this.m=t&&t.slice()||[1,0,0,1,0,0]}reset(){this.m[0]=1,this.m[1]=0,this.m[2]=0,this.m[3]=1,this.m[4]=0,this.m[5]=0}copy(){return new da(this.m)}copyInto(t){t.m[0]=this.m[0],t.m[1]=this.m[1],t.m[2]=this.m[2],t.m[3]=this.m[3],t.m[4]=this.m[4],t.m[5]=this.m[5]}point(t){var n=this.m;return{x:n[0]*t.x+n[2]*t.y+n[4],y:n[1]*t.x+n[3]*t.y+n[5]}}translate(t,n){return this.m[4]+=this.m[0]*t+this.m[2]*n,this.m[5]+=this.m[1]*t+this.m[3]*n,this}scale(t,n){return this.m[0]*=t,this.m[1]*=t,this.m[2]*=n,this.m[3]*=n,this}rotate(t){var n=Math.cos(t),r=Math.sin(t),i=this.m[0]*n+this.m[2]*r,o=this.m[1]*n+this.m[3]*r,a=this.m[0]*-r+this.m[2]*n,s=this.m[1]*-r+this.m[3]*n;return this.m[0]=i,this.m[1]=o,this.m[2]=a,this.m[3]=s,this}getTranslation(){return{x:this.m[4],y:this.m[5]}}skew(t,n){var r=this.m[0]+this.m[2]*n,i=this.m[1]+this.m[3]*n,o=this.m[2]+this.m[0]*t,a=this.m[3]+this.m[1]*t;return this.m[0]=r,this.m[1]=i,this.m[2]=o,this.m[3]=a,this}multiply(t){var n=this.m[0]*t.m[0]+this.m[2]*t.m[1],r=this.m[1]*t.m[0]+this.m[3]*t.m[1],i=this.m[0]*t.m[2]+this.m[2]*t.m[3],o=this.m[1]*t.m[2]+this.m[3]*t.m[3],a=this.m[0]*t.m[4]+this.m[2]*t.m[5]+this.m[4],s=this.m[1]*t.m[4]+this.m[3]*t.m[5]+this.m[5];return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}invert(){var t=1/(this.m[0]*this.m[3]-this.m[1]*this.m[2]),n=this.m[3]*t,r=-this.m[1]*t,i=-this.m[2]*t,o=this.m[0]*t,a=t*(this.m[2]*this.m[5]-this.m[3]*this.m[4]),s=t*(this.m[1]*this.m[4]-this.m[0]*this.m[5]);return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}getMatrix(){return this.m}decompose(){var t=this.m[0],n=this.m[1],r=this.m[2],i=this.m[3],o=this.m[4],a=this.m[5],s=t*i-n*r;let l={x:o,y:a,rotation:0,scaleX:0,scaleY:0,skewX:0,skewY:0};if(t!=0||n!=0){var d=Math.sqrt(t*t+n*n);l.rotation=n>0?Math.acos(t/d):-Math.acos(t/d),l.scaleX=d,l.scaleY=s/d,l.skewX=(t*r+n*i)/s,l.skewY=0}else if(r!=0||i!=0){var p=Math.sqrt(r*r+i*i);l.rotation=Math.PI/2-(i>0?Math.acos(-r/p):-Math.acos(r/p)),l.scaleX=s/p,l.scaleY=p,l.skewX=0,l.skewY=(t*r+n*i)/s}return l.rotation=ue._getRotation(l.rotation),l}}var ube="[object Array]",cbe="[object Number]",dbe="[object String]",fbe="[object Boolean]",hbe=Math.PI/180,pbe=180/Math.PI,RS="#",gbe="",mbe="0",vbe="Konva warning: ",AA="Konva error: ",ybe="rgb(",OS={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,132,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,255,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,203],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[119,128,144],slategrey:[119,128,144],snow:[255,255,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],transparent:[255,255,255,0],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,5]},xbe=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/,yy=[];const bbe=typeof requestAnimationFrame<"u"&&requestAnimationFrame||function(e){setTimeout(e,60)},ue={_isElement(e){return!!(e&&e.nodeType==1)},_isFunction(e){return!!(e&&e.constructor&&e.call&&e.apply)},_isPlainObject(e){return!!e&&e.constructor===Object},_isArray(e){return Object.prototype.toString.call(e)===ube},_isNumber(e){return Object.prototype.toString.call(e)===cbe&&!isNaN(e)&&isFinite(e)},_isString(e){return Object.prototype.toString.call(e)===dbe},_isBoolean(e){return Object.prototype.toString.call(e)===fbe},isObject(e){return e instanceof Object},isValidSelector(e){if(typeof e!="string")return!1;var t=e[0];return t==="#"||t==="."||t===t.toUpperCase()},_sign(e){return e===0||e>0?1:-1},requestAnimFrame(e){yy.push(e),yy.length===1&&bbe(function(){const t=yy;yy=[],t.forEach(function(n){n()})})},createCanvasElement(){var e=document.createElement("canvas");try{e.style=e.style||{}}catch{}return e},createImageElement(){return document.createElement("img")},_isInDocument(e){for(;e=e.parentNode;)if(e==document)return!0;return!1},_urlToImage(e,t){var n=ue.createImageElement();n.onload=function(){t(n)},n.src=e},_rgbToHex(e,t,n){return((1<<24)+(e<<16)+(t<<8)+n).toString(16).slice(1)},_hexToRgb(e){e=e.replace(RS,gbe);var t=parseInt(e,16);return{r:t>>16&255,g:t>>8&255,b:t&255}},getRandomColor(){for(var e=(Math.random()*16777215<<0).toString(16);e.length<6;)e=mbe+e;return RS+e},getRGB(e){var t;return e in OS?(t=OS[e],{r:t[0],g:t[1],b:t[2]}):e[0]===RS?this._hexToRgb(e.substring(1)):e.substr(0,4)===ybe?(t=xbe.exec(e.replace(/ /g,"")),{r:parseInt(t[1],10),g:parseInt(t[2],10),b:parseInt(t[3],10)}):{r:0,g:0,b:0}},colorToRGBA(e){return e=e||"black",ue._namedColorToRBA(e)||ue._hex3ColorToRGBA(e)||ue._hex6ColorToRGBA(e)||ue._rgbColorToRGBA(e)||ue._rgbaColorToRGBA(e)||ue._hslColorToRGBA(e)},_namedColorToRBA(e){var t=OS[e.toLowerCase()];return t?{r:t[0],g:t[1],b:t[2],a:1}:null},_rgbColorToRGBA(e){if(e.indexOf("rgb(")===0){e=e.match(/rgb\(([^)]+)\)/)[1];var t=e.split(/ *, */).map(Number);return{r:t[0],g:t[1],b:t[2],a:1}}},_rgbaColorToRGBA(e){if(e.indexOf("rgba(")===0){e=e.match(/rgba\(([^)]+)\)/)[1];var t=e.split(/ *, */).map((n,r)=>n.slice(-1)==="%"?r===3?parseInt(n)/100:parseInt(n)/100*255:Number(n));return{r:t[0],g:t[1],b:t[2],a:t[3]}}},_hex6ColorToRGBA(e){if(e[0]==="#"&&e.length===7)return{r:parseInt(e.slice(1,3),16),g:parseInt(e.slice(3,5),16),b:parseInt(e.slice(5,7),16),a:1}},_hex3ColorToRGBA(e){if(e[0]==="#"&&e.length===4)return{r:parseInt(e[1]+e[1],16),g:parseInt(e[2]+e[2],16),b:parseInt(e[3]+e[3],16),a:1}},_hslColorToRGBA(e){if(/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.test(e)){const[t,...n]=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(e),r=Number(n[0])/360,i=Number(n[1])/100,o=Number(n[2])/100;let a,s,l;if(i===0)return l=o*255,{r:Math.round(l),g:Math.round(l),b:Math.round(l),a:1};o<.5?a=o*(1+i):a=o+i-o*i;const d=2*o-a,p=[0,0,0];for(let g=0;g<3;g++)s=r+1/3*-(g-1),s<0&&s++,s>1&&s--,6*s<1?l=d+(a-d)*6*s:2*s<1?l=a:3*s<2?l=d+(a-d)*(2/3-s)*6:l=d,p[g]=l*255;return{r:Math.round(p[0]),g:Math.round(p[1]),b:Math.round(p[2]),a:1}}},haveIntersection(e,t){return!(t.x>e.x+e.width||t.x+t.widthe.y+e.height||t.y+t.height1?(a=n,s=r,l=(n-i)*(n-i)+(r-o)*(r-o)):(a=e+p*(n-e),s=t+p*(r-t),l=(a-i)*(a-i)+(s-o)*(s-o))}return[a,s,l]},_getProjectionToLine(e,t,n){var r=ue.cloneObject(e),i=Number.MAX_VALUE;return t.forEach(function(o,a){if(!(!n&&a===t.length-1)){var s=t[(a+1)%t.length],l=ue._getProjectionToSegment(o.x,o.y,s.x,s.y,e.x,e.y),d=l[0],p=l[1],g=l[2];gt.length){var a=t;t=e,e=a}for(r=0;r255?255:e<0?0:Math.round(e)}function He(){if(lt.isUnminified)return function(e,t){return ue._isNumber(e)||ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a number.'),e}}function N$(e){if(lt.isUnminified)return function(t,n){let r=ue._isNumber(t),i=ue._isArray(t)&&t.length==e;return!r&&!i&&ue.warn(Pd(t)+' is a not valid value for "'+n+'" attribute. The value should be a number or Array('+e+")"),t}}function p_(){if(lt.isUnminified)return function(e,t){var n=ue._isNumber(e),r=e==="auto";return n||r||ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a number or "auto".'),e}}function t0(){if(lt.isUnminified)return function(e,t){return ue._isString(e)||ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a string.'),e}}function D$(){if(lt.isUnminified)return function(e,t){const n=ue._isString(e),r=Object.prototype.toString.call(e)==="[object CanvasGradient]"||e&&e.addColorStop;return n||r||ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a string or a native gradient.'),e}}function Sbe(){if(lt.isUnminified)return function(e,t){const n=Int8Array?Object.getPrototypeOf(Int8Array):null;return n&&e instanceof n||(ue._isArray(e)?e.forEach(function(r){ue._isNumber(r)||ue.warn('"'+t+'" attribute has non numeric element '+r+". Make sure that all elements are numbers.")}):ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a array of numbers.')),e}}function Ns(){if(lt.isUnminified)return function(e,t){var n=e===!0||e===!1;return n||ue.warn(Pd(e)+' is a not valid value for "'+t+'" attribute. The value should be a boolean.'),e}}function wbe(e){if(lt.isUnminified)return function(t,n){return t==null||ue.isObject(t)||ue.warn(Pd(t)+' is a not valid value for "'+n+'" attribute. The value should be an object with properties '+e),t}}var lg="get",ug="set";const Z={addGetterSetter(e,t,n,r,i){Z.addGetter(e,t,n),Z.addSetter(e,t,r,i),Z.addOverloadedGetterSetter(e,t)},addGetter(e,t,n){var r=lg+ue._capitalize(t);e.prototype[r]=e.prototype[r]||function(){var i=this.attrs[t];return i===void 0?n:i}},addSetter(e,t,n,r){var i=ug+ue._capitalize(t);e.prototype[i]||Z.overWriteSetter(e,t,n,r)},overWriteSetter(e,t,n,r){var i=ug+ue._capitalize(t);e.prototype[i]=function(o){return n&&o!==void 0&&o!==null&&(o=n.call(this,o,t)),this._setAttr(t,o),r&&r.call(this),this}},addComponentsGetterSetter(e,t,n,r,i){var o=n.length,a=ue._capitalize,s=lg+a(t),l=ug+a(t),d,p;e.prototype[s]=function(){var m={};for(d=0;d{this._setAttr(t+a(w),void 0)}),this._fireChangeEvent(t,y,m),i&&i.call(this),this},Z.addOverloadedGetterSetter(e,t)},addOverloadedGetterSetter(e,t){var n=ue._capitalize(t),r=ug+n,i=lg+n;e.prototype[t]=function(){return arguments.length?(this[r](arguments[0]),this):this[i]()}},addDeprecatedGetterSetter(e,t,n,r){ue.error("Adding deprecated "+t);var i=lg+ue._capitalize(t),o=t+" property is deprecated and will be removed soon. Look at Konva change log for more information.";e.prototype[i]=function(){ue.error(o);var a=this.attrs[t];return a===void 0?n:a},Z.addSetter(e,t,r,function(){ue.error(o)}),Z.addOverloadedGetterSetter(e,t)},backCompat(e,t){ue.each(t,function(n,r){var i=e.prototype[r],o=lg+ue._capitalize(n),a=ug+ue._capitalize(n);function s(){i.apply(this,arguments),ue.error('"'+n+'" method is deprecated and will be removed soon. Use ""'+r+'" instead.')}e.prototype[n]=s,e.prototype[o]=s,e.prototype[a]=s})},afterSetFilter(){this._filterUpToDate=!1}};function Cbe(e){var t=[],n=e.length,r=ue,i,o;for(i=0;itypeof p=="number"?Math.floor(p):p)),o+=_be+d.join(IA)+kbe)):(o+=s.property,t||(o+=Abe+s.val)),o+=Tbe;return o}clearTrace(){this.traceArr=[]}_trace(t){var n=this.traceArr,r;n.push(t),r=n.length,r>=Mbe&&n.shift()}reset(){var t=this.getCanvas().getPixelRatio();this.setTransform(1*t,0,0,1*t,0,0)}getCanvas(){return this.canvas}clear(t){var n=this.getCanvas();t?this.clearRect(t.x||0,t.y||0,t.width||0,t.height||0):this.clearRect(0,0,n.getWidth()/n.pixelRatio,n.getHeight()/n.pixelRatio)}_applyLineCap(t){var n=t.getLineCap();n&&this.setAttr("lineCap",n)}_applyOpacity(t){var n=t.getAbsoluteOpacity();n!==1&&this.setAttr("globalAlpha",n)}_applyLineJoin(t){var n=t.attrs.lineJoin;n&&this.setAttr("lineJoin",n)}setAttr(t,n){this._context[t]=n}arc(t,n,r,i,o,a){this._context.arc(t,n,r,i,o,a)}arcTo(t,n,r,i,o){this._context.arcTo(t,n,r,i,o)}beginPath(){this._context.beginPath()}bezierCurveTo(t,n,r,i,o,a){this._context.bezierCurveTo(t,n,r,i,o,a)}clearRect(t,n,r,i){this._context.clearRect(t,n,r,i)}clip(){this._context.clip()}closePath(){this._context.closePath()}createImageData(t,n){var r=arguments;if(r.length===2)return this._context.createImageData(t,n);if(r.length===1)return this._context.createImageData(t)}createLinearGradient(t,n,r,i){return this._context.createLinearGradient(t,n,r,i)}createPattern(t,n){return this._context.createPattern(t,n)}createRadialGradient(t,n,r,i,o,a){return this._context.createRadialGradient(t,n,r,i,o,a)}drawImage(t,n,r,i,o,a,s,l,d){var p=arguments,g=this._context;p.length===3?g.drawImage(t,n,r):p.length===5?g.drawImage(t,n,r,i,o):p.length===9&&g.drawImage(t,n,r,i,o,a,s,l,d)}ellipse(t,n,r,i,o,a,s,l){this._context.ellipse(t,n,r,i,o,a,s,l)}isPointInPath(t,n){return this._context.isPointInPath(t,n)}fill(t){t?this._context.fill(t):this._context.fill()}fillRect(t,n,r,i){this._context.fillRect(t,n,r,i)}strokeRect(t,n,r,i){this._context.strokeRect(t,n,r,i)}fillText(t,n,r,i){i?this._context.fillText(t,n,r,i):this._context.fillText(t,n,r)}measureText(t){return this._context.measureText(t)}getImageData(t,n,r,i){return this._context.getImageData(t,n,r,i)}lineTo(t,n){this._context.lineTo(t,n)}moveTo(t,n){this._context.moveTo(t,n)}rect(t,n,r,i){this._context.rect(t,n,r,i)}putImageData(t,n,r){this._context.putImageData(t,n,r)}quadraticCurveTo(t,n,r,i){this._context.quadraticCurveTo(t,n,r,i)}restore(){this._context.restore()}rotate(t){this._context.rotate(t)}save(){this._context.save()}scale(t,n){this._context.scale(t,n)}setLineDash(t){this._context.setLineDash?this._context.setLineDash(t):"mozDash"in this._context?this._context.mozDash=t:"webkitLineDash"in this._context&&(this._context.webkitLineDash=t)}getLineDash(){return this._context.getLineDash()}setTransform(t,n,r,i,o,a){this._context.setTransform(t,n,r,i,o,a)}stroke(t){t?this._context.stroke(t):this._context.stroke()}strokeText(t,n,r,i){this._context.strokeText(t,n,r,i)}transform(t,n,r,i,o,a){this._context.transform(t,n,r,i,o,a)}translate(t,n){this._context.translate(t,n)}_enableTrace(){var t=this,n=MA.length,r=this.setAttr,i,o,a=function(s){var l=t[s],d;t[s]=function(){return o=Cbe(Array.prototype.slice.call(arguments,0)),d=l.apply(t,arguments),t._trace({method:s,args:o}),d}};for(i=0;i{t.dragStatus==="dragging"&&(e=!0)}),e},justDragged:!1,get node(){var e;return gn._dragElements.forEach(t=>{e=t.node}),e},_dragElements:new Map,_drag(e){const t=[];gn._dragElements.forEach((n,r)=>{const{node:i}=n,o=i.getStage();o.setPointersPositions(e),n.pointerId===void 0&&(n.pointerId=ue._getFirstPointerId(e));const a=o._changedPointerPositions.find(d=>d.id===n.pointerId);if(!!a){if(n.dragStatus!=="dragging"){var s=i.dragDistance(),l=Math.max(Math.abs(a.x-n.startPointerPos.x),Math.abs(a.y-n.startPointerPos.y));if(l{n.fire("dragmove",{type:"dragmove",target:n,evt:e},!0)})},_endDragBefore(e){const t=[];gn._dragElements.forEach(n=>{const{node:r}=n,i=r.getStage();if(e&&i.setPointersPositions(e),!i._changedPointerPositions.find(s=>s.id===n.pointerId))return;(n.dragStatus==="dragging"||n.dragStatus==="stopped")&&(gn.justDragged=!0,lt._mouseListenClick=!1,lt._touchListenClick=!1,lt._pointerListenClick=!1,n.dragStatus="stopped");const a=n.node.getLayer()||n.node instanceof lt.Stage&&n.node;a&&t.indexOf(a)===-1&&t.push(a)}),t.forEach(n=>{n.draw()})},_endDragAfter(e){gn._dragElements.forEach((t,n)=>{t.dragStatus==="stopped"&&t.node.fire("dragend",{type:"dragend",target:t.node,evt:e},!0),t.dragStatus!=="dragging"&&gn._dragElements.delete(n)})}};lt.isBrowser&&(window.addEventListener("mouseup",gn._endDragBefore,!0),window.addEventListener("touchend",gn._endDragBefore,!0),window.addEventListener("mousemove",gn._drag),window.addEventListener("touchmove",gn._drag),window.addEventListener("mouseup",gn._endDragAfter,!1),window.addEventListener("touchend",gn._endDragAfter,!1));var f3="absoluteOpacity",by="allEventListeners",yu="absoluteTransform",RA="absoluteScale",cg="canvas",Dbe="Change",zbe="children",Fbe="konva",b8="listening",OA="mouseenter",NA="mouseleave",DA="set",zA="Shape",h3=" ",FA="stage",zc="transform",Bbe="Stage",S8="visible",$be=["xChange.konva","yChange.konva","scaleXChange.konva","scaleYChange.konva","skewXChange.konva","skewYChange.konva","rotationChange.konva","offsetXChange.konva","offsetYChange.konva","transformsEnabledChange.konva"].join(h3);let Hbe=1;class We{constructor(t){this._id=Hbe++,this.eventListeners={},this.attrs={},this.index=0,this._allEventListeners=null,this.parent=null,this._cache=new Map,this._attachedDepsListeners=new Map,this._lastPos=null,this._batchingTransformChange=!1,this._needClearTransformCache=!1,this._filterUpToDate=!1,this._isUnderCache=!1,this._dragEventId=null,this._shouldFireChangeEvents=!1,this.setAttrs(t),this._shouldFireChangeEvents=!0}hasChildren(){return!1}_clearCache(t){(t===zc||t===yu)&&this._cache.get(t)?this._cache.get(t).dirty=!0:t?this._cache.delete(t):this._cache.clear()}_getCache(t,n){var r=this._cache.get(t),i=t===zc||t===yu,o=r===void 0||i&&r.dirty===!0;return o&&(r=n.call(this),this._cache.set(t,r)),r}_calculate(t,n,r){if(!this._attachedDepsListeners.get(t)){const i=n.map(o=>o+"Change.konva").join(h3);this.on(i,()=>{this._clearCache(t)}),this._attachedDepsListeners.set(t,!0)}return this._getCache(t,r)}_getCanvasCache(){return this._cache.get(cg)}_clearSelfAndDescendantCache(t){this._clearCache(t),t===yu&&this.fire("absoluteTransformChange")}clearCache(){return this._cache.delete(cg),this._clearSelfAndDescendantCache(),this._requestDraw(),this}cache(t){var n=t||{},r={};(n.x===void 0||n.y===void 0||n.width===void 0||n.height===void 0)&&(r=this.getClientRect({skipTransform:!0,relativeTo:this.getParent()}));var i=Math.ceil(n.width||r.width),o=Math.ceil(n.height||r.height),a=n.pixelRatio,s=n.x===void 0?Math.floor(r.x):n.x,l=n.y===void 0?Math.floor(r.y):n.y,d=n.offset||0,p=n.drawBorder||!1,g=n.hitCanvasPixelRatio||1;if(!i||!o){ue.error("Can not cache the node. Width or height of the node equals 0. Caching is skipped.");return}i+=d*2+1,o+=d*2+1,s-=d,l-=d;var m=new m1({pixelRatio:a,width:i,height:o}),y=new m1({pixelRatio:a,width:0,height:0}),b=new g_({pixelRatio:g,width:i,height:o}),w=m.getContext(),P=b.getContext();return b.isCache=!0,m.isCache=!0,this._cache.delete(cg),this._filterUpToDate=!1,n.imageSmoothingEnabled===!1&&(m.getContext()._context.imageSmoothingEnabled=!1,y.getContext()._context.imageSmoothingEnabled=!1),w.save(),P.save(),w.translate(-s,-l),P.translate(-s,-l),this._isUnderCache=!0,this._clearSelfAndDescendantCache(f3),this._clearSelfAndDescendantCache(RA),this.drawScene(m,this),this.drawHit(b,this),this._isUnderCache=!1,w.restore(),P.restore(),p&&(w.save(),w.beginPath(),w.rect(0,0,i,o),w.closePath(),w.setAttr("strokeStyle","red"),w.setAttr("lineWidth",5),w.stroke(),w.restore()),this._cache.set(cg,{scene:m,filter:y,hit:b,x:s,y:l}),this._requestDraw(),this}isCached(){return this._cache.has(cg)}getClientRect(t){throw new Error('abstract "getClientRect" method call')}_transformedRect(t,n){var r=[{x:t.x,y:t.y},{x:t.x+t.width,y:t.y},{x:t.x+t.width,y:t.y+t.height},{x:t.x,y:t.y+t.height}],i,o,a,s,l=this.getAbsoluteTransform(n);return r.forEach(function(d){var p=l.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),{x:i,y:o,width:a-i,height:s-o}}_drawCachedSceneCanvas(t){t.save(),t._applyOpacity(this),t._applyGlobalCompositeOperation(this);const n=this._getCanvasCache();t.translate(n.x,n.y);var r=this._getCachedSceneCanvas(),i=r.pixelRatio;t.drawImage(r._canvas,0,0,r.width/i,r.height/i),t.restore()}_drawCachedHitCanvas(t){var n=this._getCanvasCache(),r=n.hit;t.save(),t.translate(n.x,n.y),t.drawImage(r._canvas,0,0,r.width/r.pixelRatio,r.height/r.pixelRatio),t.restore()}_getCachedSceneCanvas(){var t=this.filters(),n=this._getCanvasCache(),r=n.scene,i=n.filter,o=i.getContext(),a,s,l,d;if(t){if(!this._filterUpToDate){var p=r.pixelRatio;i.setSize(r.width/r.pixelRatio,r.height/r.pixelRatio);try{for(a=t.length,o.clear(),o.drawImage(r._canvas,0,0,r.getWidth()/p,r.getHeight()/p),s=o.getImageData(0,0,i.getWidth(),i.getHeight()),l=0;l{var n,r;if(!t)return this;for(n in t)n!==zbe&&(r=DA+ue._capitalize(n),ue._isFunction(this[r])?this[r](t[n]):this._setAttr(n,t[n]))}),this}isListening(){return this._getCache(b8,this._isListening)}_isListening(t){if(!this.listening())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isListening(t):!0}isVisible(){return this._getCache(S8,this._isVisible)}_isVisible(t){if(!this.visible())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isVisible(t):!0}shouldDrawHit(t,n=!1){if(t)return this._isVisible(t)&&this._isListening(t);var r=this.getLayer(),i=!1;gn._dragElements.forEach(a=>{a.dragStatus==="dragging"&&(a.node.nodeType==="Stage"||a.node.getLayer()===r)&&(i=!0)});var o=!n&&!lt.hitOnDragEnabled&&i;return this.isListening()&&this.isVisible()&&!o}show(){return this.visible(!0),this}hide(){return this.visible(!1),this}getZIndex(){return this.index||0}getAbsoluteZIndex(){var t=this.getDepth(),n=this,r=0,i,o,a,s;function l(d){for(i=[],o=d.length,a=0;a0&&i[0].getDepth()<=t&&l(i)}return n.nodeType!==Bbe&&l(n.getStage().getChildren()),r}getDepth(){for(var t=0,n=this.parent;n;)t++,n=n.parent;return t}_batchTransformChanges(t){this._batchingTransformChange=!0,t(),this._batchingTransformChange=!1,this._needClearTransformCache&&(this._clearCache(zc),this._clearSelfAndDescendantCache(yu)),this._needClearTransformCache=!1}setPosition(t){return this._batchTransformChanges(()=>{this.x(t.x),this.y(t.y)}),this}getPosition(){return{x:this.x(),y:this.y()}}getRelativePointerPosition(){if(!this.getStage())return null;var t=this.getStage().getPointerPosition();if(!t)return null;var n=this.getAbsoluteTransform().copy();return n.invert(),n.point(t)}getAbsolutePosition(t){let n=!1,r=this.parent;for(;r;){if(r.isCached()){n=!0;break}r=r.parent}n&&!t&&(t=!0);var i=this.getAbsoluteTransform(t).getMatrix(),o=new da,a=this.offset();return o.m=i.slice(),o.translate(a.x,a.y),o.getTranslation()}setAbsolutePosition(t){var n=this._clearTransform();this.attrs.x=n.x,this.attrs.y=n.y,delete n.x,delete n.y,this._clearCache(zc);var r=this._getAbsoluteTransform().copy();return r.invert(),r.translate(t.x,t.y),t={x:this.attrs.x+r.getTranslation().x,y:this.attrs.y+r.getTranslation().y},this._setTransform(n),this.setPosition({x:t.x,y:t.y}),this._clearCache(zc),this._clearSelfAndDescendantCache(yu),this}_setTransform(t){var n;for(n in t)this.attrs[n]=t[n]}_clearTransform(){var t={x:this.x(),y:this.y(),rotation:this.rotation(),scaleX:this.scaleX(),scaleY:this.scaleY(),offsetX:this.offsetX(),offsetY:this.offsetY(),skewX:this.skewX(),skewY:this.skewY()};return this.attrs.x=0,this.attrs.y=0,this.attrs.rotation=0,this.attrs.scaleX=1,this.attrs.scaleY=1,this.attrs.offsetX=0,this.attrs.offsetY=0,this.attrs.skewX=0,this.attrs.skewY=0,t}move(t){var n=t.x,r=t.y,i=this.x(),o=this.y();return n!==void 0&&(i+=n),r!==void 0&&(o+=r),this.setPosition({x:i,y:o}),this}_eachAncestorReverse(t,n){var r=[],i=this.getParent(),o,a;if(!(n&&n._id===this._id)){for(r.unshift(this);i&&(!n||i._id!==n._id);)r.unshift(i),i=i.parent;for(o=r.length,a=0;a0?(this.parent.children.splice(t,1),this.parent.children.splice(t-1,0,this),this.parent._setChildrenIndices(),!0):!1}moveToBottom(){if(!this.parent)return ue.warn("Node has no parent. moveToBottom function is ignored."),!1;var t=this.index;return t>0?(this.parent.children.splice(t,1),this.parent.children.unshift(this),this.parent._setChildrenIndices(),!0):!1}setZIndex(t){if(!this.parent)return ue.warn("Node has no parent. zIndex parameter is ignored."),this;(t<0||t>=this.parent.children.length)&&ue.warn("Unexpected value "+t+" for zIndex property. zIndex is just index of a node in children of its parent. Expected value is from 0 to "+(this.parent.children.length-1)+".");var n=this.index;return this.parent.children.splice(n,1),this.parent.children.splice(t,0,this),this.parent._setChildrenIndices(),this}getAbsoluteOpacity(){return this._getCache(f3,this._getAbsoluteOpacity)}_getAbsoluteOpacity(){var t=this.opacity(),n=this.getParent();return n&&!n._isUnderCache&&(t*=n.getAbsoluteOpacity()),t}moveTo(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this}toObject(){var t={},n=this.getAttrs(),r,i,o,a,s;t.attrs={};for(r in n)i=n[r],s=ue.isObject(i)&&!ue._isPlainObject(i)&&!ue._isArray(i),!s&&(o=typeof this[r]=="function"&&this[r],delete n[r],a=o?o.call(this):null,n[r]=i,a!==i&&(t.attrs[r]=i));return t.className=this.getClassName(),ue._prepareToStringify(t)}toJSON(){return JSON.stringify(this.toObject())}getParent(){return this.parent}findAncestors(t,n,r){var i=[];n&&this._isMatch(t)&&i.push(this);for(var o=this.parent;o;){if(o===r)return i;o._isMatch(t)&&i.push(o),o=o.parent}return i}isAncestorOf(t){return!1}findAncestor(t,n,r){return this.findAncestors(t,n,r)[0]}_isMatch(t){if(!t)return!1;if(typeof t=="function")return t(this);var n=t.replace(/ /g,"").split(","),r=n.length,i,o;for(i=0;i{try{const i=t?.callback;i&&delete t.callback,ue._urlToImage(this.toDataURL(t),function(o){n(o),i?.(o)})}catch(i){r(i)}})}toBlob(t){return new Promise((n,r)=>{try{const i=t?.callback;i&&delete t.callback,this.toCanvas(t).toBlob(o=>{n(o),i?.(o)})}catch(i){r(i)}})}setSize(t){return this.width(t.width),this.height(t.height),this}getSize(){return{width:this.width(),height:this.height()}}getClassName(){return this.className||this.nodeType}getType(){return this.nodeType}getDragDistance(){return this.attrs.dragDistance!==void 0?this.attrs.dragDistance:this.parent?this.parent.getDragDistance():lt.dragDistance}_off(t,n,r){var i=this.eventListeners[t],o,a,s;for(o=0;o=0;if(!!r&&!this.isDragging()){var i=!1;gn._dragElements.forEach(o=>{this.isAncestorOf(o.node)&&(i=!0)}),i||this._createDragElement(t)}})}_dragChange(){if(this.attrs.draggable)this._listenDrag();else{this._dragCleanup();var t=this.getStage();if(!t)return;const n=gn._dragElements.get(this._id),r=n&&n.dragStatus==="dragging",i=n&&n.dragStatus==="ready";r?this.stopDrag():i&&gn._dragElements.delete(this._id)}}_dragCleanup(){this.off("mousedown.konva"),this.off("touchstart.konva")}isClientRectOnScreen(t={x:0,y:0}){const n=this.getStage();if(!n)return!1;const r={x:-t.x,y:-t.y,width:n.width()+2*t.x,height:n.height()+2*t.y};return ue.haveIntersection(r,this.getClientRect())}static create(t,n){return ue._isString(t)&&(t=JSON.parse(t)),this._createNode(t,n)}static _createNode(t,n){var r=We.prototype.getClassName.call(t),i=t.children,o,a,s;n&&(t.attrs.container=n),lt[r]||(ue.warn('Can not find a node with class name "'+r+'". Fallback to "Shape".'),r="Shape");const l=lt[r];if(o=new l(t.attrs),i)for(a=i.length,s=0;s0}removeChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.remove()}),this.children=[],this._requestDraw(),this}destroyChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.destroy()}),this.children=[],this._requestDraw(),this}add(...t){if(arguments.length>1){for(var n=0;n0?n[0]:void 0}_generalFind(t,n){var r=[];return this._descendants(i=>{const o=i._isMatch(t);return o&&r.push(i),!!(o&&n)}),r}_descendants(t){let n=!1;const r=this.getChildren();for(const i of r){if(n=t(i),n)return!0;if(!!i.hasChildren()&&(n=i._descendants(t),n))return!0}return!1}toObject(){var t=We.prototype.toObject.call(this);return t.children=[],this.getChildren().forEach(n=>{t.children.push(n.toObject())}),t}isAncestorOf(t){for(var n=t.getParent();n;){if(n._id===this._id)return!0;n=n.getParent()}return!1}clone(t){var n=We.prototype.clone.call(this,t);return this.getChildren().forEach(function(r){n.add(r.clone())}),n}getAllIntersections(t){var n=[];return this.find("Shape").forEach(function(r){r.isVisible()&&r.intersects(t)&&n.push(r)}),n}_clearSelfAndDescendantCache(t){var n;super._clearSelfAndDescendantCache(t),!this.isCached()&&((n=this.children)===null||n===void 0||n.forEach(function(r){r._clearSelfAndDescendantCache(t)}))}_setChildrenIndices(){var t;(t=this.children)===null||t===void 0||t.forEach(function(n,r){n.index=r}),this._requestDraw()}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas(),o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.scene,l=i&&i.isCache;if(!this.isVisible()&&!l)return this;if(s){o.save();var d=this.getAbsoluteTransform(n).getMatrix();o.transform(d[0],d[1],d[2],d[3],d[4],d[5]),this._drawCachedSceneCanvas(o),o.restore()}else this._drawChildren("drawScene",i,n);return this}drawHit(t,n){if(!this.shouldDrawHit(n))return this;var r=this.getLayer(),i=t||r&&r.hitCanvas,o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.hit;if(s){o.save();var l=this.getAbsoluteTransform(n).getMatrix();o.transform(l[0],l[1],l[2],l[3],l[4],l[5]),this._drawCachedHitCanvas(o),o.restore()}else this._drawChildren("drawHit",i,n);return this}_drawChildren(t,n,r){var i,o=n&&n.getContext(),a=this.clipWidth(),s=this.clipHeight(),l=this.clipFunc(),d=a&&s||l;const p=r===this;if(d){o.save();var g=this.getAbsoluteTransform(r),m=g.getMatrix();if(o.transform(m[0],m[1],m[2],m[3],m[4],m[5]),o.beginPath(),l)l.call(this,o,this);else{var y=this.clipX(),b=this.clipY();o.rect(y,b,a,s)}o.clip(),m=g.copy().invert().getMatrix(),o.transform(m[0],m[1],m[2],m[3],m[4],m[5])}var w=!p&&this.globalCompositeOperation()!=="source-over"&&t==="drawScene";w&&(o.save(),o._applyGlobalCompositeOperation(this)),(i=this.children)===null||i===void 0||i.forEach(function(P){P[t](n,r)}),w&&o.restore(),d&&o.restore()}getClientRect(t){var n;t=t||{};var r=t.skipTransform,i=t.relativeTo,o,a,s,l,d={x:1/0,y:1/0,width:0,height:0},p=this;(n=this.children)===null||n===void 0||n.forEach(function(w){if(!!w.visible()){var P=w.getClientRect({relativeTo:p,skipShadow:t.skipShadow,skipStroke:t.skipStroke});P.width===0&&P.height===0||(o===void 0?(o=P.x,a=P.y,s=P.x+P.width,l=P.y+P.height):(o=Math.min(o,P.x),a=Math.min(a,P.y),s=Math.max(s,P.x+P.width),l=Math.max(l,P.y+P.height)))}});for(var g=this.find("Shape"),m=!1,y=0;ye.indexOf("pointer")>=0?"pointer":e.indexOf("touch")>=0?"touch":"mouse",Pp=e=>{const t=Ag(e);if(t==="pointer")return lt.pointerEventsEnabled&&DS.pointer;if(t==="touch")return DS.touch;if(t==="mouse")return DS.mouse};function $A(e={}){return(e.clipFunc||e.clipWidth||e.clipHeight)&&ue.warn("Stage does not support clipping. Please use clip for Layers or Groups."),e}const Kbe="Pointer position is missing and not registered by the stage. Looks like it is outside of the stage container. You can set it manually from event: stage.setPointersPositions(event);",p3=[];class wx extends ma{constructor(t){super($A(t)),this._pointerPositions=[],this._changedPointerPositions=[],this._buildDOM(),this._bindContentEvents(),p3.push(this),this.on("widthChange.konva heightChange.konva",this._resizeDOM),this.on("visibleChange.konva",this._checkVisibility),this.on("clipWidthChange.konva clipHeightChange.konva clipFuncChange.konva",()=>{$A(this.attrs)}),this._checkVisibility()}_validateAdd(t){const n=t.getType()==="Layer",r=t.getType()==="FastLayer";n||r||ue.throw("You may only add layers to the stage.")}_checkVisibility(){if(!this.content)return;const t=this.visible()?"":"none";this.content.style.display=t}setContainer(t){if(typeof t===Vbe){if(t.charAt(0)==="."){var n=t.slice(1);t=document.getElementsByClassName(n)[0]}else{var r;t.charAt(0)!=="#"?r=t:r=t.slice(1),t=document.getElementById(r)}if(!t)throw"Can not find container in document with id "+r}return this._setAttr("container",t),this.content&&(this.content.parentElement&&this.content.parentElement.removeChild(this.content),t.appendChild(this.content)),this}shouldDrawHit(){return!0}clear(){var t=this.children,n=t.length,r;for(r=0;r-1&&p3.splice(n,1),this}getPointerPosition(){const t=this._pointerPositions[0]||this._changedPointerPositions[0];return t?{x:t.x,y:t.y}:(ue.warn(Kbe),null)}_getPointerById(t){return this._pointerPositions.find(n=>n.id===t)}getPointersPositions(){return this._pointerPositions}getStage(){return this}getContent(){return this.content}_toKonvaCanvas(t){t=t||{},t.x=t.x||0,t.y=t.y||0,t.width=t.width||this.width(),t.height=t.height||this.height();var n=new m1({width:t.width,height:t.height,pixelRatio:t.pixelRatio||1}),r=n.getContext()._context,i=this.children;return(t.x||t.y)&&r.translate(-1*t.x,-1*t.y),i.forEach(function(o){if(!!o.isVisible()){var a=o._toKonvaCanvas(t);r.drawImage(a._canvas,t.x,t.y,a.getWidth()/a.getPixelRatio(),a.getHeight()/a.getPixelRatio())}}),n}getIntersection(t){if(!t)return null;var n=this.children,r=n.length,i=r-1,o;for(o=i;o>=0;o--){const a=n[o].getIntersection(t);if(a)return a}return null}_resizeDOM(){var t=this.width(),n=this.height();this.content&&(this.content.style.width=t+BA,this.content.style.height=n+BA),this.bufferCanvas.setSize(t,n),this.bufferHitCanvas.setSize(t,n),this.children.forEach(r=>{r.setSize({width:t,height:n}),r.draw()})}add(t,...n){if(arguments.length>1){for(var r=0;rjbe&&ue.warn("The stage has "+i+" layers. Recommended maximum number of layers is 3-5. Adding more layers into the stage may drop the performance. Rethink your tree structure, you can use Konva.Group."),t.setSize({width:this.width(),height:this.height()}),t.draw(),lt.isBrowser&&this.content.appendChild(t.canvas._canvas),this}getParent(){return null}getLayer(){return null}hasPointerCapture(t){return F$(t,this)}setPointerCapture(t){B$(t,this)}releaseCapture(t){om(t)}getLayers(){return this.children}_bindContentEvents(){!lt.isBrowser||qbe.forEach(([t,n])=>{this.content.addEventListener(t,r=>{this[n](r)},{passive:!1})})}_pointerenter(t){this.setPointersPositions(t);const n=Pp(t.type);this._fire(n.pointerenter,{evt:t,target:this,currentTarget:this})}_pointerover(t){this.setPointersPositions(t);const n=Pp(t.type);this._fire(n.pointerover,{evt:t,target:this,currentTarget:this})}_getTargetShape(t){let n=this[t+"targetShape"];return n&&!n.getStage()&&(n=null),n}_pointerleave(t){const n=Pp(t.type),r=Ag(t.type);if(!!n){this.setPointersPositions(t);var i=this._getTargetShape(r),o=!gn.isDragging||lt.hitOnDragEnabled;i&&o?(i._fireAndBubble(n.pointerout,{evt:t}),i._fireAndBubble(n.pointerleave,{evt:t}),this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this[r+"targetShape"]=null):o&&(this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this._fire(n.pointerout,{evt:t,target:this,currentTarget:this})),this.pointerPos=void 0,this._pointerPositions=[]}}_pointerdown(t){const n=Pp(t.type),r=Ag(t.type);if(!!n){this.setPointersPositions(t);var i=!1;this._changedPointerPositions.forEach(o=>{var a=this.getIntersection(o);if(gn.justDragged=!1,lt["_"+r+"ListenClick"]=!0,!(a&&a.isListening()))return;lt.capturePointerEventsEnabled&&a.setPointerCapture(o.id),this[r+"ClickStartShape"]=a,a._fireAndBubble(n.pointerdown,{evt:t,pointerId:o.id}),i=!0;const l=t.type.indexOf("touch")>=0;a.preventDefault()&&t.cancelable&&l&&t.preventDefault()}),i||this._fire(n.pointerdown,{evt:t,target:this,currentTarget:this,pointerId:this._pointerPositions[0].id})}}_pointermove(t){const n=Pp(t.type),r=Ag(t.type);if(!n)return;gn.isDragging&&gn.node.preventDefault()&&t.cancelable&&t.preventDefault(),this.setPointersPositions(t);var i=!gn.isDragging||lt.hitOnDragEnabled;if(!i)return;var o={};let a=!1;var s=this._getTargetShape(r);this._changedPointerPositions.forEach(l=>{const d=NS(l.id)||this.getIntersection(l),p=l.id,g={evt:t,pointerId:p};var m=s!==d;if(m&&s&&(s._fireAndBubble(n.pointerout,Object.assign({},g),d),s._fireAndBubble(n.pointerleave,Object.assign({},g),d)),d){if(o[d._id])return;o[d._id]=!0}d&&d.isListening()?(a=!0,m&&(d._fireAndBubble(n.pointerover,Object.assign({},g),s),d._fireAndBubble(n.pointerenter,Object.assign({},g),s),this[r+"targetShape"]=d),d._fireAndBubble(n.pointermove,Object.assign({},g))):s&&(this._fire(n.pointerover,{evt:t,target:this,currentTarget:this,pointerId:p}),this[r+"targetShape"]=null)}),a||this._fire(n.pointermove,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id})}_pointerup(t){const n=Pp(t.type),r=Ag(t.type);if(!n)return;this.setPointersPositions(t);const i=this[r+"ClickStartShape"],o=this[r+"ClickEndShape"];var a={};let s=!1;this._changedPointerPositions.forEach(l=>{const d=NS(l.id)||this.getIntersection(l);if(d){if(d.releaseCapture(l.id),a[d._id])return;a[d._id]=!0}const p=l.id,g={evt:t,pointerId:p};let m=!1;lt["_"+r+"InDblClickWindow"]?(m=!0,clearTimeout(this[r+"DblTimeout"])):gn.justDragged||(lt["_"+r+"InDblClickWindow"]=!0,clearTimeout(this[r+"DblTimeout"])),this[r+"DblTimeout"]=setTimeout(function(){lt["_"+r+"InDblClickWindow"]=!1},lt.dblClickWindow),d&&d.isListening()?(s=!0,this[r+"ClickEndShape"]=d,d._fireAndBubble(n.pointerup,Object.assign({},g)),lt["_"+r+"ListenClick"]&&i&&i===d&&(d._fireAndBubble(n.pointerclick,Object.assign({},g)),m&&o&&o===d&&d._fireAndBubble(n.pointerdblclick,Object.assign({},g)))):(this[r+"ClickEndShape"]=null,lt["_"+r+"ListenClick"]&&this._fire(n.pointerclick,{evt:t,target:this,currentTarget:this,pointerId:p}),m&&this._fire(n.pointerdblclick,{evt:t,target:this,currentTarget:this,pointerId:p}))}),s||this._fire(n.pointerup,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id}),lt["_"+r+"ListenClick"]=!1,t.cancelable&&r!=="touch"&&t.preventDefault()}_contextmenu(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(w8,{evt:t}):this._fire(w8,{evt:t,target:this,currentTarget:this})}_wheel(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(C8,{evt:t}):this._fire(C8,{evt:t,target:this,currentTarget:this})}_pointercancel(t){this.setPointersPositions(t);const n=NS(t.pointerId)||this.getIntersection(this.getPointerPosition());n&&n._fireAndBubble(Kp,m_(t)),om(t.pointerId)}_lostpointercapture(t){om(t.pointerId)}setPointersPositions(t){var n=this._getContentPosition(),r=null,i=null;t=t||window.event,t.touches!==void 0?(this._pointerPositions=[],this._changedPointerPositions=[],Array.prototype.forEach.call(t.touches,o=>{this._pointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})}),Array.prototype.forEach.call(t.changedTouches||t.touches,o=>{this._changedPointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})})):(r=(t.clientX-n.left)/n.scaleX,i=(t.clientY-n.top)/n.scaleY,this.pointerPos={x:r,y:i},this._pointerPositions=[{x:r,y:i,id:ue._getFirstPointerId(t)}],this._changedPointerPositions=[{x:r,y:i,id:ue._getFirstPointerId(t)}])}_setPointerPosition(t){ue.warn('Method _setPointerPosition is deprecated. Use "stage.setPointersPositions(event)" instead.'),this.setPointersPositions(t)}_getContentPosition(){if(!this.content||!this.content.getBoundingClientRect)return{top:0,left:0,scaleX:1,scaleY:1};var t=this.content.getBoundingClientRect();return{top:t.top,left:t.left,scaleX:t.width/this.content.clientWidth||1,scaleY:t.height/this.content.clientHeight||1}}_buildDOM(){if(this.bufferCanvas=new m1({width:this.width(),height:this.height()}),this.bufferHitCanvas=new g_({pixelRatio:1,width:this.width(),height:this.height()}),!!lt.isBrowser){var t=this.container();if(!t)throw"Stage has no container. A container is required.";t.innerHTML="",this.content=document.createElement("div"),this.content.style.position="relative",this.content.style.userSelect="none",this.content.className="konvajs-content",this.content.setAttribute("role","presentation"),t.appendChild(this.content),this._resizeDOM()}}cache(){return ue.warn("Cache function is not allowed for stage. You may use cache only for layers, groups and shapes."),this}clearCache(){return this}batchDraw(){return this.getChildren().forEach(function(t){t.batchDraw()}),this}}wx.prototype.nodeType=Wbe;vr(wx);Z.addGetterSetter(wx,"container");var Y$="hasShadow",X$="shadowRGBA",Q$="patternImage",J$="linearGradient",eH="radialGradient";let ky;function zS(){return ky||(ky=ue.createCanvasElement().getContext("2d"),ky)}const am={};function Zbe(e){e.fill()}function Ybe(e){e.stroke()}function Xbe(e){e.fill()}function Qbe(e){e.stroke()}function Jbe(){this._clearCache(Y$)}function eSe(){this._clearCache(X$)}function tSe(){this._clearCache(Q$)}function nSe(){this._clearCache(J$)}function rSe(){this._clearCache(eH)}class Ne extends We{constructor(t){super(t);let n;for(;n=ue.getRandomColor(),!(n&&!(n in am)););this.colorKey=n,am[n]=this}getContext(){return ue.warn("shape.getContext() method is deprecated. Please do not use it."),this.getLayer().getContext()}getCanvas(){return ue.warn("shape.getCanvas() method is deprecated. Please do not use it."),this.getLayer().getCanvas()}getSceneFunc(){return this.attrs.sceneFunc||this._sceneFunc}getHitFunc(){return this.attrs.hitFunc||this._hitFunc}hasShadow(){return this._getCache(Y$,this._hasShadow)}_hasShadow(){return this.shadowEnabled()&&this.shadowOpacity()!==0&&!!(this.shadowColor()||this.shadowBlur()||this.shadowOffsetX()||this.shadowOffsetY())}_getFillPattern(){return this._getCache(Q$,this.__getFillPattern)}__getFillPattern(){if(this.fillPatternImage()){var t=zS();const n=t.createPattern(this.fillPatternImage(),this.fillPatternRepeat()||"repeat");if(n&&n.setTransform){const r=new da;r.translate(this.fillPatternX(),this.fillPatternY()),r.rotate(lt.getAngle(this.fillPatternRotation())),r.scale(this.fillPatternScaleX(),this.fillPatternScaleY()),r.translate(-1*this.fillPatternOffsetX(),-1*this.fillPatternOffsetY());const i=r.getMatrix(),o=typeof DOMMatrix>"u"?{a:i[0],b:i[1],c:i[2],d:i[3],e:i[4],f:i[5]}:new DOMMatrix(i);n.setTransform(o)}return n}}_getLinearGradient(){return this._getCache(J$,this.__getLinearGradient)}__getLinearGradient(){var t=this.fillLinearGradientColorStops();if(t){for(var n=zS(),r=this.fillLinearGradientStartPoint(),i=this.fillLinearGradientEndPoint(),o=n.createLinearGradient(r.x,r.y,i.x,i.y),a=0;athis.fillEnabled()&&!!(this.fill()||this.fillPatternImage()||this.fillLinearGradientColorStops()||this.fillRadialGradientColorStops()))}hasStroke(){return this._calculate("hasStroke",["strokeEnabled","strokeWidth","stroke","strokeLinearGradientColorStops"],()=>this.strokeEnabled()&&this.strokeWidth()&&!!(this.stroke()||this.strokeLinearGradientColorStops()))}hasHitStroke(){const t=this.hitStrokeWidth();return t==="auto"?this.hasStroke():this.strokeEnabled()&&!!t}intersects(t){var n=this.getStage(),r=n.bufferHitCanvas,i;return r.getContext().clear(),this.drawHit(r,null,!0),i=r.context.getImageData(Math.round(t.x),Math.round(t.y),1,1).data,i[3]>0}destroy(){return We.prototype.destroy.call(this),delete am[this.colorKey],delete this.colorKey,this}_useBufferCanvas(t){var n;if(!this.getStage()||!((n=this.attrs.perfectDrawEnabled)!==null&&n!==void 0?n:!0))return!1;const i=t||this.hasFill(),o=this.hasStroke(),a=this.getAbsoluteOpacity()!==1;if(i&&o&&a)return!0;const s=this.hasShadow(),l=this.shadowForStrokeEnabled();return!!(i&&o&&s&&l)}setStrokeHitEnabled(t){ue.warn("strokeHitEnabled property is deprecated. Please use hitStrokeWidth instead."),t?this.hitStrokeWidth("auto"):this.hitStrokeWidth(0)}getStrokeHitEnabled(){return this.hitStrokeWidth()!==0}getSelfRect(){var t=this.size();return{x:this._centroid?-t.width/2:0,y:this._centroid?-t.height/2:0,width:t.width,height:t.height}}getClientRect(t={}){const n=t.skipTransform,r=t.relativeTo,i=this.getSelfRect(),a=!t.skipStroke&&this.hasStroke()&&this.strokeWidth()||0,s=i.width+a,l=i.height+a,d=!t.skipShadow&&this.hasShadow(),p=d?this.shadowOffsetX():0,g=d?this.shadowOffsetY():0,m=s+Math.abs(p),y=l+Math.abs(g),b=d&&this.shadowBlur()||0,w=m+b*2,P=y+b*2,E={width:w,height:P,x:-(a/2+b)+Math.min(p,0)+i.x,y:-(a/2+b)+Math.min(g,0)+i.y};return n?E:this._transformedRect(E,r)}drawScene(t,n){var r=this.getLayer(),i=t||r.getCanvas(),o=i.getContext(),a=this._getCanvasCache(),s=this.getSceneFunc(),l=this.hasShadow(),d,p,g,m=i.isCache,y=n===this;if(!this.isVisible()&&!y)return this;if(a){o.save();var b=this.getAbsoluteTransform(n).getMatrix();return o.transform(b[0],b[1],b[2],b[3],b[4],b[5]),this._drawCachedSceneCanvas(o),o.restore(),this}if(!s)return this;if(o.save(),this._useBufferCanvas()&&!m){d=this.getStage(),p=d.bufferCanvas,g=p.getContext(),g.clear(),g.save(),g._applyLineJoin(this);var w=this.getAbsoluteTransform(n).getMatrix();g.transform(w[0],w[1],w[2],w[3],w[4],w[5]),s.call(this,g,this),g.restore();var P=p.pixelRatio;l&&o._applyShadow(this),o._applyOpacity(this),o._applyGlobalCompositeOperation(this),o.drawImage(p._canvas,0,0,p.width/P,p.height/P)}else{if(o._applyLineJoin(this),!y){var w=this.getAbsoluteTransform(n).getMatrix();o.transform(w[0],w[1],w[2],w[3],w[4],w[5]),o._applyOpacity(this),o._applyGlobalCompositeOperation(this)}l&&o._applyShadow(this),s.call(this,o,this)}return o.restore(),this}drawHit(t,n,r=!1){if(!this.shouldDrawHit(n,r))return this;var i=this.getLayer(),o=t||i.hitCanvas,a=o&&o.getContext(),s=this.hitFunc()||this.sceneFunc(),l=this._getCanvasCache(),d=l&&l.hit;if(this.colorKey||ue.warn("Looks like your canvas has a destroyed shape in it. Do not reuse shape after you destroyed it. If you want to reuse shape you should call remove() instead of destroy()"),d){a.save();var p=this.getAbsoluteTransform(n).getMatrix();return a.transform(p[0],p[1],p[2],p[3],p[4],p[5]),this._drawCachedHitCanvas(a),a.restore(),this}if(!s)return this;if(a.save(),a._applyLineJoin(this),!(this===n)){var m=this.getAbsoluteTransform(n).getMatrix();a.transform(m[0],m[1],m[2],m[3],m[4],m[5])}return s.call(this,a,this),a.restore(),this}drawHitFromCache(t=0){var n=this._getCanvasCache(),r=this._getCachedSceneCanvas(),i=n.hit,o=i.getContext(),a=i.getWidth(),s=i.getHeight(),l,d,p,g,m,y;o.clear(),o.drawImage(r._canvas,0,0,a,s);try{for(l=o.getImageData(0,0,a,s),d=l.data,p=d.length,g=ue._hexToRgb(this.colorKey),m=0;mt?(d[m]=g.r,d[m+1]=g.g,d[m+2]=g.b,d[m+3]=255):d[m+3]=0;o.putImageData(l,0,0)}catch(b){ue.error("Unable to draw hit graph from cached scene canvas. "+b.message)}return this}hasPointerCapture(t){return F$(t,this)}setPointerCapture(t){B$(t,this)}releaseCapture(t){om(t)}}Ne.prototype._fillFunc=Zbe;Ne.prototype._strokeFunc=Ybe;Ne.prototype._fillFuncHit=Xbe;Ne.prototype._strokeFuncHit=Qbe;Ne.prototype._centroid=!1;Ne.prototype.nodeType="Shape";vr(Ne);Ne.prototype.eventListeners={};Ne.prototype.on.call(Ne.prototype,"shadowColorChange.konva shadowBlurChange.konva shadowOffsetChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",Jbe);Ne.prototype.on.call(Ne.prototype,"shadowColorChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",eSe);Ne.prototype.on.call(Ne.prototype,"fillPriorityChange.konva fillPatternImageChange.konva fillPatternRepeatChange.konva fillPatternScaleXChange.konva fillPatternScaleYChange.konva fillPatternOffsetXChange.konva fillPatternOffsetYChange.konva fillPatternXChange.konva fillPatternYChange.konva fillPatternRotationChange.konva",tSe);Ne.prototype.on.call(Ne.prototype,"fillPriorityChange.konva fillLinearGradientColorStopsChange.konva fillLinearGradientStartPointXChange.konva fillLinearGradientStartPointYChange.konva fillLinearGradientEndPointXChange.konva fillLinearGradientEndPointYChange.konva",nSe);Ne.prototype.on.call(Ne.prototype,"fillPriorityChange.konva fillRadialGradientColorStopsChange.konva fillRadialGradientStartPointXChange.konva fillRadialGradientStartPointYChange.konva fillRadialGradientEndPointXChange.konva fillRadialGradientEndPointYChange.konva fillRadialGradientStartRadiusChange.konva fillRadialGradientEndRadiusChange.konva",rSe);Z.addGetterSetter(Ne,"stroke",void 0,D$());Z.addGetterSetter(Ne,"strokeWidth",2,He());Z.addGetterSetter(Ne,"fillAfterStrokeEnabled",!1);Z.addGetterSetter(Ne,"hitStrokeWidth","auto",p_());Z.addGetterSetter(Ne,"strokeHitEnabled",!0,Ns());Z.addGetterSetter(Ne,"perfectDrawEnabled",!0,Ns());Z.addGetterSetter(Ne,"shadowForStrokeEnabled",!0,Ns());Z.addGetterSetter(Ne,"lineJoin");Z.addGetterSetter(Ne,"lineCap");Z.addGetterSetter(Ne,"sceneFunc");Z.addGetterSetter(Ne,"hitFunc");Z.addGetterSetter(Ne,"dash");Z.addGetterSetter(Ne,"dashOffset",0,He());Z.addGetterSetter(Ne,"shadowColor",void 0,t0());Z.addGetterSetter(Ne,"shadowBlur",0,He());Z.addGetterSetter(Ne,"shadowOpacity",1,He());Z.addComponentsGetterSetter(Ne,"shadowOffset",["x","y"]);Z.addGetterSetter(Ne,"shadowOffsetX",0,He());Z.addGetterSetter(Ne,"shadowOffsetY",0,He());Z.addGetterSetter(Ne,"fillPatternImage");Z.addGetterSetter(Ne,"fill",void 0,D$());Z.addGetterSetter(Ne,"fillPatternX",0,He());Z.addGetterSetter(Ne,"fillPatternY",0,He());Z.addGetterSetter(Ne,"fillLinearGradientColorStops");Z.addGetterSetter(Ne,"strokeLinearGradientColorStops");Z.addGetterSetter(Ne,"fillRadialGradientStartRadius",0);Z.addGetterSetter(Ne,"fillRadialGradientEndRadius",0);Z.addGetterSetter(Ne,"fillRadialGradientColorStops");Z.addGetterSetter(Ne,"fillPatternRepeat","repeat");Z.addGetterSetter(Ne,"fillEnabled",!0);Z.addGetterSetter(Ne,"strokeEnabled",!0);Z.addGetterSetter(Ne,"shadowEnabled",!0);Z.addGetterSetter(Ne,"dashEnabled",!0);Z.addGetterSetter(Ne,"strokeScaleEnabled",!0);Z.addGetterSetter(Ne,"fillPriority","color");Z.addComponentsGetterSetter(Ne,"fillPatternOffset",["x","y"]);Z.addGetterSetter(Ne,"fillPatternOffsetX",0,He());Z.addGetterSetter(Ne,"fillPatternOffsetY",0,He());Z.addComponentsGetterSetter(Ne,"fillPatternScale",["x","y"]);Z.addGetterSetter(Ne,"fillPatternScaleX",1,He());Z.addGetterSetter(Ne,"fillPatternScaleY",1,He());Z.addComponentsGetterSetter(Ne,"fillLinearGradientStartPoint",["x","y"]);Z.addComponentsGetterSetter(Ne,"strokeLinearGradientStartPoint",["x","y"]);Z.addGetterSetter(Ne,"fillLinearGradientStartPointX",0);Z.addGetterSetter(Ne,"strokeLinearGradientStartPointX",0);Z.addGetterSetter(Ne,"fillLinearGradientStartPointY",0);Z.addGetterSetter(Ne,"strokeLinearGradientStartPointY",0);Z.addComponentsGetterSetter(Ne,"fillLinearGradientEndPoint",["x","y"]);Z.addComponentsGetterSetter(Ne,"strokeLinearGradientEndPoint",["x","y"]);Z.addGetterSetter(Ne,"fillLinearGradientEndPointX",0);Z.addGetterSetter(Ne,"strokeLinearGradientEndPointX",0);Z.addGetterSetter(Ne,"fillLinearGradientEndPointY",0);Z.addGetterSetter(Ne,"strokeLinearGradientEndPointY",0);Z.addComponentsGetterSetter(Ne,"fillRadialGradientStartPoint",["x","y"]);Z.addGetterSetter(Ne,"fillRadialGradientStartPointX",0);Z.addGetterSetter(Ne,"fillRadialGradientStartPointY",0);Z.addComponentsGetterSetter(Ne,"fillRadialGradientEndPoint",["x","y"]);Z.addGetterSetter(Ne,"fillRadialGradientEndPointX",0);Z.addGetterSetter(Ne,"fillRadialGradientEndPointY",0);Z.addGetterSetter(Ne,"fillPatternRotation",0);Z.backCompat(Ne,{dashArray:"dash",getDashArray:"getDash",setDashArray:"getDash",drawFunc:"sceneFunc",getDrawFunc:"getSceneFunc",setDrawFunc:"setSceneFunc",drawHitFunc:"hitFunc",getDrawHitFunc:"getHitFunc",setDrawHitFunc:"setHitFunc"});var iSe="#",oSe="beforeDraw",aSe="draw",tH=[{x:0,y:0},{x:-1,y:-1},{x:1,y:-1},{x:1,y:1},{x:-1,y:1}],sSe=tH.length;class _h extends ma{constructor(t){super(t),this.canvas=new m1,this.hitCanvas=new g_({pixelRatio:1}),this._waitingForDraw=!1,this.on("visibleChange.konva",this._checkVisibility),this._checkVisibility(),this.on("imageSmoothingEnabledChange.konva",this._setSmoothEnabled),this._setSmoothEnabled()}createPNGStream(){return this.canvas._canvas.createPNGStream()}getCanvas(){return this.canvas}getNativeCanvasElement(){return this.canvas._canvas}getHitCanvas(){return this.hitCanvas}getContext(){return this.getCanvas().getContext()}clear(t){return this.getContext().clear(t),this.getHitCanvas().getContext().clear(t),this}setZIndex(t){super.setZIndex(t);var n=this.getStage();return n&&n.content&&(n.content.removeChild(this.getNativeCanvasElement()),t{this.draw(),this._waitingForDraw=!1})),this}getIntersection(t){if(!this.isListening()||!this.isVisible())return null;for(var n=1,r=!1;;){for(let i=0;i0)return{antialiased:!0};return{}}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas();return this._fire(oSe,{node:this}),this.clearBeforeDraw()&&i.getContext().clear(),ma.prototype.drawScene.call(this,i,n),this._fire(aSe,{node:this}),this}drawHit(t,n){var r=this.getLayer(),i=t||r&&r.hitCanvas;return r&&r.clearBeforeDraw()&&r.getHitCanvas().getContext().clear(),ma.prototype.drawHit.call(this,i,n),this}enableHitGraph(){return this.hitGraphEnabled(!0),this}disableHitGraph(){return this.hitGraphEnabled(!1),this}setHitGraphEnabled(t){ue.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening(t)}getHitGraphEnabled(t){return ue.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening()}toggleHitCanvas(){if(!(!this.parent||!this.parent.content)){var t=this.parent,n=!!this.hitCanvas._canvas.parentNode;n?t.content.removeChild(this.hitCanvas._canvas):t.content.appendChild(this.hitCanvas._canvas)}}}_h.prototype.nodeType="Layer";vr(_h);Z.addGetterSetter(_h,"imageSmoothingEnabled",!0);Z.addGetterSetter(_h,"clearBeforeDraw",!0);Z.addGetterSetter(_h,"hitGraphEnabled",!0,Ns());class v_ extends _h{constructor(t){super(t),this.listening(!1),ue.warn('Konva.Fast layer is deprecated. Please use "new Konva.Layer({ listening: false })" instead.')}}v_.prototype.nodeType="FastLayer";vr(v_);class D1 extends ma{_validateAdd(t){var n=t.getType();n!=="Group"&&n!=="Shape"&&ue.throw("You may only add groups and shapes to groups.")}}D1.prototype.nodeType="Group";vr(D1);var FS=function(){return g1.performance&&g1.performance.now?function(){return g1.performance.now()}:function(){return new Date().getTime()}}();class ja{constructor(t,n){this.id=ja.animIdCounter++,this.frame={time:0,timeDiff:0,lastTime:FS(),frameRate:0},this.func=t,this.setLayers(n)}setLayers(t){var n=[];return t?t.length>0?n=t:n=[t]:n=[],this.layers=n,this}getLayers(){return this.layers}addLayer(t){var n=this.layers,r=n.length,i;for(i=0;ithis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())}getTime(){return this._time}setPosition(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t}getPosition(t){return t===void 0&&(t=this._time),this.func(t,this.begin,this._change,this.duration)}play(){this.state=HA,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")}reverse(){this.state=WA,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")}seek(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")}reset(){this.pause(),this._time=0,this.update(),this.fire("onReset")}finish(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")}update(){this.setPosition(this.getPosition(this._time)),this.fire("onUpdate")}onEnterFrame(){var t=this.getTimer()-this._startTime;this.state===HA?this.setTime(t):this.state===WA&&this.setTime(this.duration-t)}pause(){this.state=uSe,this.fire("onPause")}getTimer(){return new Date().getTime()}}class Br{constructor(t){var n=this,r=t.node,i=r._id,o,a=t.easing||sm.Linear,s=!!t.yoyo,l;typeof t.duration>"u"?o=.3:t.duration===0?o=.001:o=t.duration,this.node=r,this._id=cSe++;var d=r.getLayer()||(r instanceof lt.Stage?r.getLayers():null);d||ue.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new ja(function(){n.tween.onEnterFrame()},d),this.tween=new dSe(l,function(p){n._tweenFunc(p)},a,0,1,o*1e3,s),this._addListeners(),Br.attrs[i]||(Br.attrs[i]={}),Br.attrs[i][this._id]||(Br.attrs[i][this._id]={}),Br.tweens[i]||(Br.tweens[i]={});for(l in t)lSe[l]===void 0&&this._addAttr(l,t[l]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset,this.onUpdate=t.onUpdate}_addAttr(t,n){var r=this.node,i=r._id,o,a,s,l,d,p,g,m;if(s=Br.tweens[i][t],s&&delete Br.attrs[i][s][t],o=r.getAttr(t),ue._isArray(n))if(a=[],d=Math.max(n.length,o.length),t==="points"&&n.length!==o.length&&(n.length>o.length?(g=o,o=ue._prepareArrayForTween(o,n,r.closed())):(p=n,n=ue._prepareArrayForTween(n,o,r.closed()))),t.indexOf("fill")===0)for(l=0;l{this.anim.start()},this.tween.onReverse=()=>{this.anim.start()},this.tween.onPause=()=>{this.anim.stop()},this.tween.onFinish=()=>{var t=this.node,n=Br.attrs[t._id][this._id];n.points&&n.points.trueEnd&&t.setAttr("points",n.points.trueEnd),this.onFinish&&this.onFinish.call(this)},this.tween.onReset=()=>{var t=this.node,n=Br.attrs[t._id][this._id];n.points&&n.points.trueStart&&t.points(n.points.trueStart),this.onReset&&this.onReset()},this.tween.onUpdate=()=>{this.onUpdate&&this.onUpdate.call(this)}}play(){return this.tween.play(),this}reverse(){return this.tween.reverse(),this}reset(){return this.tween.reset(),this}seek(t){return this.tween.seek(t*1e3),this}pause(){return this.tween.pause(),this}finish(){return this.tween.finish(),this}destroy(){var t=this.node._id,n=this._id,r=Br.tweens[t],i;this.pause();for(i in r)delete Br.tweens[t][i];delete Br.attrs[t][n]}}Br.attrs={};Br.tweens={};We.prototype.to=function(e){var t=e.onFinish;e.node=this,e.onFinish=function(){this.destroy(),t&&t()};var n=new Br(e);n.play()};const sm={BackEaseIn(e,t,n,r){var i=1.70158;return n*(e/=r)*e*((i+1)*e-i)+t},BackEaseOut(e,t,n,r){var i=1.70158;return n*((e=e/r-1)*e*((i+1)*e+i)+1)+t},BackEaseInOut(e,t,n,r){var i=1.70158;return(e/=r/2)<1?n/2*(e*e*(((i*=1.525)+1)*e-i))+t:n/2*((e-=2)*e*(((i*=1.525)+1)*e+i)+2)+t},ElasticEaseIn(e,t,n,r,i,o){var a=0;return e===0?t:(e/=r)===1?t+n:(o||(o=r*.3),!i||i0?t:n),p=a*n,g=s*(s>0?t:n),m=l*(l>0?n:t);return{x:d,y:r?-1*m:g,width:p-d,height:m-g}}}Uu.prototype._centroid=!0;Uu.prototype.className="Arc";Uu.prototype._attrsAffectingSize=["innerRadius","outerRadius"];vr(Uu);Z.addGetterSetter(Uu,"innerRadius",0,He());Z.addGetterSetter(Uu,"outerRadius",0,He());Z.addGetterSetter(Uu,"angle",0,He());Z.addGetterSetter(Uu,"clockwise",!1,Ns());function _8(e,t,n,r,i,o,a){var s=Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2)),l=Math.sqrt(Math.pow(i-n,2)+Math.pow(o-r,2)),d=a*s/(s+l),p=a*l/(s+l),g=n-d*(i-e),m=r-d*(o-t),y=n+p*(i-e),b=r+p*(o-t);return[g,m,y,b]}function UA(e,t){var n=e.length,r=[],i,o;for(i=2;i4){for(s=this.getTensionPoints(),l=s.length,d=o?0:4,o||t.quadraticCurveTo(s[0],s[1],s[2],s[3]);dp?d:p,P=d>p?1:d/p,E=d>p?p/d:1;t.translate(s,l),t.rotate(y),t.scale(P,E),t.arc(0,0,w,g,g+m,1-b),t.scale(1/P,1/E),t.rotate(-y),t.translate(-s,-l);break;case"z":r=!0,t.closePath();break}}!r&&!this.hasFill()?t.strokeShape(this):t.fillStrokeShape(this)}getSelfRect(){var t=[];this.dataArray.forEach(function(d){if(d.command==="A"){var p=d.points[4],g=d.points[5],m=d.points[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;b-=y){const w=Rn.getPointOnEllipticalArc(d.points[0],d.points[1],d.points[2],d.points[3],b,0);t.push(w.x,w.y)}else for(let b=p+y;bthis.dataArray[r].pathLength;)t-=this.dataArray[r].pathLength,++r;if(r===i)return n=this.dataArray[r-1].points.slice(-2),{x:n[0],y:n[1]};if(t<.01)return n=this.dataArray[r].points.slice(0,2),{x:n[0],y:n[1]};var o=this.dataArray[r],a=o.points;switch(o.command){case"L":return Rn.getPointOnLine(t,o.start.x,o.start.y,a[0],a[1]);case"C":return Rn.getPointOnCubicBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3],a[4],a[5]);case"Q":return Rn.getPointOnQuadraticBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3]);case"A":var s=a[0],l=a[1],d=a[2],p=a[3],g=a[4],m=a[5],y=a[6];return g+=m*t/o.pathLength,Rn.getPointOnEllipticalArc(s,l,d,p,g,y)}return null}static getLineLength(t,n,r,i){return Math.sqrt((r-t)*(r-t)+(i-n)*(i-n))}static getPointOnLine(t,n,r,i,o,a,s){a===void 0&&(a=n),s===void 0&&(s=r);var l=(o-r)/(i-n+1e-8),d=Math.sqrt(t*t/(1+l*l));i0&&!isNaN(b[0]);){var k=null,L=[],M=l,N=d,F,B,z,j,q,Y,ge,ce,ve,we;switch(y){case"l":l+=b.shift(),d+=b.shift(),k="L",L.push(l,d);break;case"L":l=b.shift(),d=b.shift(),L.push(l,d);break;case"m":var be=b.shift(),J=b.shift();if(l+=be,d+=J,k="M",a.length>2&&a[a.length-1].command==="z"){for(var U=a.length-2;U>=0;U--)if(a[U].command==="M"){l=a[U].points[0]+be,d=a[U].points[1]+J;break}}L.push(l,d),y="l";break;case"M":l=b.shift(),d=b.shift(),k="M",L.push(l,d),y="L";break;case"h":l+=b.shift(),k="L",L.push(l,d);break;case"H":l=b.shift(),k="L",L.push(l,d);break;case"v":d+=b.shift(),k="L",L.push(l,d);break;case"V":d=b.shift(),k="L",L.push(l,d);break;case"C":L.push(b.shift(),b.shift(),b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"c":L.push(l+b.shift(),d+b.shift(),l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"S":B=l,z=d,F=a[a.length-1],F.command==="C"&&(B=l+(l-F.points[2]),z=d+(d-F.points[3])),L.push(B,z,b.shift(),b.shift()),l=b.shift(),d=b.shift(),k="C",L.push(l,d);break;case"s":B=l,z=d,F=a[a.length-1],F.command==="C"&&(B=l+(l-F.points[2]),z=d+(d-F.points[3])),L.push(B,z,l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"Q":L.push(b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"q":L.push(l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="Q",L.push(l,d);break;case"T":B=l,z=d,F=a[a.length-1],F.command==="Q"&&(B=l+(l-F.points[0]),z=d+(d-F.points[1])),l=b.shift(),d=b.shift(),k="Q",L.push(B,z,l,d);break;case"t":B=l,z=d,F=a[a.length-1],F.command==="Q"&&(B=l+(l-F.points[0]),z=d+(d-F.points[1])),l+=b.shift(),d+=b.shift(),k="Q",L.push(B,z,l,d);break;case"A":j=b.shift(),q=b.shift(),Y=b.shift(),ge=b.shift(),ce=b.shift(),ve=l,we=d,l=b.shift(),d=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(ve,we,l,d,ge,ce,j,q,Y);break;case"a":j=b.shift(),q=b.shift(),Y=b.shift(),ge=b.shift(),ce=b.shift(),ve=l,we=d,l+=b.shift(),d+=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(ve,we,l,d,ge,ce,j,q,Y);break}a.push({command:k||y,points:L,start:{x:M,y:N},pathLength:this.calcLength(M,N,k||y,L)})}(y==="z"||y==="Z")&&a.push({command:"z",points:[],start:void 0,pathLength:0})}return a}static calcLength(t,n,r,i){var o,a,s,l,d=Rn;switch(r){case"L":return d.getLineLength(t,n,i[0],i[1]);case"C":for(o=0,a=d.getPointOnCubicBezier(0,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),l=.01;l<=1;l+=.01)s=d.getPointOnCubicBezier(l,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"Q":for(o=0,a=d.getPointOnQuadraticBezier(0,t,n,i[0],i[1],i[2],i[3]),l=.01;l<=1;l+=.01)s=d.getPointOnQuadraticBezier(l,t,n,i[0],i[1],i[2],i[3]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"A":o=0;var p=i[4],g=i[5],m=i[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;l-=y)s=d.getPointOnEllipticalArc(i[0],i[1],i[2],i[3],l,0),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;else for(l=p+y;l1&&(s*=Math.sqrt(y),l*=Math.sqrt(y));var b=Math.sqrt((s*s*(l*l)-s*s*(m*m)-l*l*(g*g))/(s*s*(m*m)+l*l*(g*g)));o===a&&(b*=-1),isNaN(b)&&(b=0);var w=b*s*m/l,P=b*-l*g/s,E=(t+r)/2+Math.cos(p)*w-Math.sin(p)*P,k=(n+i)/2+Math.sin(p)*w+Math.cos(p)*P,L=function(q){return Math.sqrt(q[0]*q[0]+q[1]*q[1])},M=function(q,Y){return(q[0]*Y[0]+q[1]*Y[1])/(L(q)*L(Y))},N=function(q,Y){return(q[0]*Y[1]=1&&(j=0),a===0&&j>0&&(j=j-2*Math.PI),a===1&&j<0&&(j=j+2*Math.PI),[E,k,s,l,F,j,p,a]}}Rn.prototype.className="Path";Rn.prototype._attrsAffectingSize=["data"];vr(Rn);Z.addGetterSetter(Rn,"data");class kh extends Gu{_sceneFunc(t){super._sceneFunc(t);var n=Math.PI*2,r=this.points(),i=r,o=this.tension()!==0&&r.length>4;o&&(i=this.getTensionPoints());var a=this.pointerLength(),s=r.length,l,d;if(o){const m=[i[i.length-4],i[i.length-3],i[i.length-2],i[i.length-1],r[s-2],r[s-1]],y=Rn.calcLength(i[i.length-4],i[i.length-3],"C",m),b=Rn.getPointOnQuadraticBezier(Math.min(1,1-a/y),m[0],m[1],m[2],m[3],m[4],m[5]);l=r[s-2]-b.x,d=r[s-1]-b.y}else l=r[s-2]-r[s-4],d=r[s-1]-r[s-3];var p=(Math.atan2(d,l)+n)%n,g=this.pointerWidth();this.pointerAtEnding()&&(t.save(),t.beginPath(),t.translate(r[s-2],r[s-1]),t.rotate(p),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t)),this.pointerAtBeginning()&&(t.save(),t.beginPath(),t.translate(r[0],r[1]),o?(l=(i[0]+i[2])/2-r[0],d=(i[1]+i[3])/2-r[1]):(l=r[2]-r[0],d=r[3]-r[1]),t.rotate((Math.atan2(-d,-l)+n)%n),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t))}__fillStroke(t){var n=this.dashEnabled();n&&(this.attrs.dashEnabled=!1,t.setLineDash([])),t.fillStrokeShape(this),n&&(this.attrs.dashEnabled=!0)}getSelfRect(){const t=super.getSelfRect(),n=this.pointerWidth()/2;return{x:t.x-n,y:t.y-n,width:t.width+n*2,height:t.height+n*2}}}kh.prototype.className="Arrow";vr(kh);Z.addGetterSetter(kh,"pointerLength",10,He());Z.addGetterSetter(kh,"pointerWidth",10,He());Z.addGetterSetter(kh,"pointerAtBeginning",!1);Z.addGetterSetter(kh,"pointerAtEnding",!0);class n0 extends Ne{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.attrs.radius||0,0,Math.PI*2,!1),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius()!==t/2&&this.radius(t/2)}setHeight(t){this.radius()!==t/2&&this.radius(t/2)}}n0.prototype._centroid=!0;n0.prototype.className="Circle";n0.prototype._attrsAffectingSize=["radius"];vr(n0);Z.addGetterSetter(n0,"radius",0,He());class Td extends Ne{_sceneFunc(t){var n=this.radiusX(),r=this.radiusY();t.beginPath(),t.save(),n!==r&&t.scale(1,r/n),t.arc(0,0,n,0,Math.PI*2,!1),t.restore(),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radiusX()*2}getHeight(){return this.radiusY()*2}setWidth(t){this.radiusX(t/2)}setHeight(t){this.radiusY(t/2)}}Td.prototype.className="Ellipse";Td.prototype._centroid=!0;Td.prototype._attrsAffectingSize=["radiusX","radiusY"];vr(Td);Z.addComponentsGetterSetter(Td,"radius",["x","y"]);Z.addGetterSetter(Td,"radiusX",0,He());Z.addGetterSetter(Td,"radiusY",0,He());class Ds extends Ne{constructor(t){super(t),this.on("imageChange.konva",()=>{this._setImageLoad()}),this._setImageLoad()}_setImageLoad(){const t=this.image();t&&t.complete||t&&t.readyState===4||t&&t.addEventListener&&t.addEventListener("load",()=>{this._requestDraw()})}_useBufferCanvas(){return super._useBufferCanvas(!0)}_sceneFunc(t){const n=this.getWidth(),r=this.getHeight(),i=this.attrs.image;let o;if(i){const a=this.attrs.cropWidth,s=this.attrs.cropHeight;a&&s?o=[i,this.cropX(),this.cropY(),a,s,0,0,n,r]:o=[i,0,0,n,r]}(this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)),i&&t.drawImage.apply(t,o)}_hitFunc(t){var n=this.width(),r=this.height();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}getWidth(){var t,n;return(t=this.attrs.width)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.width}getHeight(){var t,n;return(t=this.attrs.height)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.height}static fromURL(t,n,r=null){var i=ue.createImageElement();i.onload=function(){var o=new Ds({image:i});n(o)},i.onerror=r,i.crossOrigin="Anonymous",i.src=t}}Ds.prototype.className="Image";vr(Ds);Z.addGetterSetter(Ds,"image");Z.addComponentsGetterSetter(Ds,"crop",["x","y","width","height"]);Z.addGetterSetter(Ds,"cropX",0,He());Z.addGetterSetter(Ds,"cropY",0,He());Z.addGetterSetter(Ds,"cropWidth",0,He());Z.addGetterSetter(Ds,"cropHeight",0,He());var nH=["fontFamily","fontSize","fontStyle","padding","lineHeight","text","width","height","pointerDirection","pointerWidth","pointerHeight"],fSe="Change.konva",hSe="none",k8="up",E8="right",P8="down",T8="left",pSe=nH.length;class y_ extends D1{constructor(t){super(t),this.on("add.konva",function(n){this._addListeners(n.child),this._sync()})}getText(){return this.find("Text")[0]}getTag(){return this.find("Tag")[0]}_addListeners(t){var n=this,r,i=function(){n._sync()};for(r=0;r{n=Math.min(n,a.x),r=Math.max(r,a.x),i=Math.min(i,a.y),o=Math.max(o,a.y)}),{x:n,y:i,width:r-n,height:o-i}}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}Ph.prototype.className="RegularPolygon";Ph.prototype._centroid=!0;Ph.prototype._attrsAffectingSize=["radius"];vr(Ph);Z.addGetterSetter(Ph,"radius",0,He());Z.addGetterSetter(Ph,"sides",0,He());var GA=Math.PI*2;class Th extends Ne{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.innerRadius(),0,GA,!1),t.moveTo(this.outerRadius(),0),t.arc(0,0,this.outerRadius(),GA,0,!0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.outerRadius()*2}getHeight(){return this.outerRadius()*2}setWidth(t){this.outerRadius(t/2)}setHeight(t){this.outerRadius(t/2)}}Th.prototype.className="Ring";Th.prototype._centroid=!0;Th.prototype._attrsAffectingSize=["innerRadius","outerRadius"];vr(Th);Z.addGetterSetter(Th,"innerRadius",0,He());Z.addGetterSetter(Th,"outerRadius",0,He());class Hl extends Ne{constructor(t){super(t),this._updated=!0,this.anim=new ja(()=>{var n=this._updated;return this._updated=!1,n}),this.on("animationChange.konva",function(){this.frameIndex(0)}),this.on("frameIndexChange.konva",function(){this._updated=!0}),this.on("frameRateChange.konva",function(){!this.anim.isRunning()||(clearInterval(this.interval),this._setInterval())})}_sceneFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+0],l=o[i+1],d=o[i+2],p=o[i+3],g=this.image();if((this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,d,p),t.closePath(),t.fillStrokeShape(this)),g)if(a){var m=a[n],y=r*2;t.drawImage(g,s,l,d,p,m[y+0],m[y+1],d,p)}else t.drawImage(g,s,l,d,p,0,0,d,p)}_hitFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+2],l=o[i+3];if(t.beginPath(),a){var d=a[n],p=r*2;t.rect(d[p+0],d[p+1],s,l)}else t.rect(0,0,s,l);t.closePath(),t.fillShape(this)}_useBufferCanvas(){return super._useBufferCanvas(!0)}_setInterval(){var t=this;this.interval=setInterval(function(){t._updateIndex()},1e3/this.frameRate())}start(){if(!this.isRunning()){var t=this.getLayer();this.anim.setLayers(t),this._setInterval(),this.anim.start()}}stop(){this.anim.stop(),clearInterval(this.interval)}isRunning(){return this.anim.isRunning()}_updateIndex(){var t=this.frameIndex(),n=this.animation(),r=this.animations(),i=r[n],o=i.length/4;t{t=t.trim();const n=t.indexOf(" ")>=0,r=t.indexOf('"')>=0||t.indexOf("'")>=0;return n&&!r&&(t=`"${t}"`),t}).join(", ")}var Py;function $S(){return Py||(Py=ue.createCanvasElement().getContext(vSe),Py)}function TSe(e){e.fillText(this._partialText,this._partialTextX,this._partialTextY)}function LSe(e){e.strokeText(this._partialText,this._partialTextX,this._partialTextY)}function ASe(e){return e=e||{},!e.fillLinearGradientColorStops&&!e.fillRadialGradientColorStops&&!e.fillPatternImage&&(e.fill=e.fill||"black"),e}class mr extends Ne{constructor(t){super(ASe(t)),this._partialTextX=0,this._partialTextY=0;for(var n=0;n1&&(E+=a)}}}_hitFunc(t){var n=this.getWidth(),r=this.getHeight();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}setText(t){var n=ue._isString(t)?t:t==null?"":t+"";return this._setAttr(ySe,n),this}getWidth(){var t=this.attrs.width===Tp||this.attrs.width===void 0;return t?this.getTextWidth()+this.padding()*2:this.attrs.width}getHeight(){var t=this.attrs.height===Tp||this.attrs.height===void 0;return t?this.fontSize()*this.textArr.length*this.lineHeight()+this.padding()*2:this.attrs.height}getTextWidth(){return this.textWidth}getTextHeight(){return ue.warn("text.getTextHeight() method is deprecated. Use text.height() - for full height and text.fontSize() - for one line height."),this.textHeight}measureSize(t){var n=$S(),r=this.fontSize(),i;return n.save(),n.font=this._getContextFont(),i=n.measureText(t),n.restore(),{width:i.width,height:r}}_getContextFont(){return this.fontStyle()+Ey+this.fontVariant()+Ey+(this.fontSize()+wSe)+PSe(this.fontFamily())}_addTextLine(t){this.align()===dg&&(t=t.trim());var n=this._getTextWidth(t);return this.textArr.push({text:t,width:n,lastInParagraph:!1})}_getTextWidth(t){var n=this.letterSpacing(),r=t.length;return $S().measureText(t).width+(r?n*(r-1):0)}_setTextData(){var t=this.text().split(` +`),n=+this.fontSize(),r=0,i=this.lineHeight()*n,o=this.attrs.width,a=this.attrs.height,s=o!==Tp&&o!==void 0,l=a!==Tp&&a!==void 0,d=this.padding(),p=o-d*2,g=a-d*2,m=0,y=this.wrap(),b=y!==KA,w=y!==kSe&&b,P=this.ellipsis();this.textArr=[],$S().font=this._getContextFont();for(var E=P?this._getTextWidth(BS):0,k=0,L=t.length;kp)for(;M.length>0;){for(var F=0,B=M.length,z="",j=0;F>>1,Y=M.slice(0,q+1),ge=this._getTextWidth(Y)+E;ge<=p?(F=q+1,z=Y,j=ge):B=q}if(z){if(w){var ce,ve=M[z.length],we=ve===Ey||ve===jA;we&&j<=p?ce=z.length:ce=Math.max(z.lastIndexOf(Ey),z.lastIndexOf(jA))+1,ce>0&&(F=ce,z=z.slice(0,F),j=this._getTextWidth(z))}z=z.trimRight(),this._addTextLine(z),r=Math.max(r,j),m+=i;var be=this._shouldHandleEllipsis(m);if(be){this._tryToAddEllipsisToLastLine();break}if(M=M.slice(F),M=M.trimLeft(),M.length>0&&(N=this._getTextWidth(M),N<=p)){this._addTextLine(M),m+=i,r=Math.max(r,N);break}}else break}else this._addTextLine(M),m+=i,r=Math.max(r,N),this._shouldHandleEllipsis(m)&&kg)break;this.textArr[this.textArr.length-1]&&(this.textArr[this.textArr.length-1].lastInParagraph=!0)}this.textHeight=n,this.textWidth=r}_shouldHandleEllipsis(t){var n=+this.fontSize(),r=this.lineHeight()*n,i=this.attrs.height,o=i!==Tp&&i!==void 0,a=this.padding(),s=i-a*2,l=this.wrap(),d=l!==KA;return!d||o&&t+r>s}_tryToAddEllipsisToLastLine(){var t=this.attrs.width,n=t!==Tp&&t!==void 0,r=this.padding(),i=t-r*2,o=this.ellipsis(),a=this.textArr[this.textArr.length-1];if(!(!a||!o)){if(n){var s=this._getTextWidth(a.text+BS)=1){var r=n[0].p0;t.moveTo(r.x,r.y)}for(var i=0;i0&&(s+=t.dataArray[l].pathLength);var d=0;i==="center"&&(d=Math.max(0,s/2-a/2)),i==="right"&&(d=Math.max(0,s-a));for(var p=rH(this.text()),g=this.text().split(" ").length-1,m,y,b,w=-1,P=0,E=function(){P=0;for(var ge=t.dataArray,ce=w+1;ce0)return w=ce,ge[ce];ge[ce].command==="M"&&(m={x:ge[ce].points[0],y:ge[ce].points[1]})}return{}},k=function(ge){var ce=t._getTextSize(ge).width+r;ge===" "&&i==="justify"&&(ce+=(s-a)/g);var ve=0,we=0;for(y=void 0;Math.abs(ce-ve)/ce>.01&&we<20;){we++;for(var be=ve;b===void 0;)b=E(),b&&be+b.pathLengthce?y=Rn.getPointOnLine(ce,m.x,m.y,b.points[0],b.points[1],m.x,m.y):b=void 0;break;case"A":var U=b.points[4],ee=b.points[5],Q=b.points[4]+ee;P===0?P=U+1e-8:ce>ve?P+=Math.PI/180*ee/Math.abs(ee):P-=Math.PI/360*ee/Math.abs(ee),(ee<0&&P=0&&P>Q)&&(P=Q,J=!0),y=Rn.getPointOnEllipticalArc(b.points[0],b.points[1],b.points[2],b.points[3],P,b.points[6]);break;case"C":P===0?ce>b.pathLength?P=1e-8:P=ce/b.pathLength:ce>ve?P+=(ce-ve)/b.pathLength/2:P=Math.max(P-(ve-ce)/b.pathLength/2,0),P>1&&(P=1,J=!0),y=Rn.getPointOnCubicBezier(P,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3],b.points[4],b.points[5]);break;case"Q":P===0?P=ce/b.pathLength:ce>ve?P+=(ce-ve)/b.pathLength:P-=(ve-ce)/b.pathLength,P>1&&(P=1,J=!0),y=Rn.getPointOnQuadraticBezier(P,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3]);break}y!==void 0&&(ve=Rn.getLineLength(m.x,m.y,y.x,y.y)),J&&(J=!1,b=void 0)}},L="C",M=t._getTextSize(L).width+r,N=d/M-1,F=0;Fe+`.${cH}`).join(" "),ZA="nodesRect",RSe=["widthChange","heightChange","scaleXChange","scaleYChange","skewXChange","skewYChange","rotationChange","offsetXChange","offsetYChange","transformsEnabledChange","strokeWidthChange"],OSe={"top-left":-45,"top-center":0,"top-right":45,"middle-right":-90,"middle-left":90,"bottom-left":-135,"bottom-center":180,"bottom-right":135};const NSe="ontouchstart"in lt._global;function DSe(e,t){if(e==="rotater")return"crosshair";t+=ue.degToRad(OSe[e]||0);var n=(ue.radToDeg(t)%360+360)%360;return ue._inRange(n,315+22.5,360)||ue._inRange(n,0,22.5)?"ns-resize":ue._inRange(n,45-22.5,45+22.5)?"nesw-resize":ue._inRange(n,90-22.5,90+22.5)?"ew-resize":ue._inRange(n,135-22.5,135+22.5)?"nwse-resize":ue._inRange(n,180-22.5,180+22.5)?"ns-resize":ue._inRange(n,225-22.5,225+22.5)?"nesw-resize":ue._inRange(n,270-22.5,270+22.5)?"ew-resize":ue._inRange(n,315-22.5,315+22.5)?"nwse-resize":(ue.error("Transformer has unknown angle for cursor detection: "+n),"pointer")}var D4=["top-left","top-center","top-right","middle-right","middle-left","bottom-left","bottom-center","bottom-right"],YA=1e8;function zSe(e){return{x:e.x+e.width/2*Math.cos(e.rotation)+e.height/2*Math.sin(-e.rotation),y:e.y+e.height/2*Math.cos(e.rotation)+e.width/2*Math.sin(e.rotation)}}function dH(e,t,n){const r=n.x+(e.x-n.x)*Math.cos(t)-(e.y-n.y)*Math.sin(t),i=n.y+(e.x-n.x)*Math.sin(t)+(e.y-n.y)*Math.cos(t);return Object.assign(Object.assign({},e),{rotation:e.rotation+t,x:r,y:i})}function FSe(e,t){const n=zSe(e);return dH(e,t,n)}function BSe(e,t,n){let r=t;for(let i=0;i{const i=()=>{this.nodes().length===1&&this.useSingleNodeRotation()&&this.rotation(this.nodes()[0].getAbsoluteRotation()),this._resetTransformCache(),!this._transforming&&!this.isDragging()&&this.update()},o=r._attrsAffectingSize.map(a=>a+"Change."+this._getEventNamespace()).join(" ");r.on(o,i),r.on(RSe.map(a=>a+`.${this._getEventNamespace()}`).join(" "),i),r.on(`absoluteTransformChange.${this._getEventNamespace()}`,i),this._proxyDrag(r)}),this._resetTransformCache();var n=!!this.findOne(".top-left");return n&&this.update(),this}_proxyDrag(t){let n;t.on(`dragstart.${this._getEventNamespace()}`,r=>{n=t.getAbsolutePosition(),!this.isDragging()&&t!==this.findOne(".back")&&this.startDrag(r,!1)}),t.on(`dragmove.${this._getEventNamespace()}`,r=>{if(!n)return;const i=t.getAbsolutePosition(),o=i.x-n.x,a=i.y-n.y;this.nodes().forEach(s=>{if(s===t||s.isDragging())return;const l=s.getAbsolutePosition();s.setAbsolutePosition({x:l.x+o,y:l.y+a}),s.startDrag(r)}),n=null})}getNodes(){return this._nodes||[]}getActiveAnchor(){return this._movingAnchorName}detach(){this._nodes&&this._nodes.forEach(t=>{t.off("."+this._getEventNamespace())}),this._nodes=[],this._resetTransformCache()}_resetTransformCache(){this._clearCache(ZA),this._clearCache("transform"),this._clearSelfAndDescendantCache("absoluteTransform")}_getNodeRect(){return this._getCache(ZA,this.__getNodeRect)}__getNodeShape(t,n=this.rotation(),r){var i=t.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()}),o=t.getAbsoluteScale(r),a=t.getAbsolutePosition(r),s=i.x*o.x-t.offsetX()*o.x,l=i.y*o.y-t.offsetY()*o.y;const d=(lt.getAngle(t.getAbsoluteRotation())+Math.PI*2)%(Math.PI*2),p={x:a.x+s*Math.cos(d)+l*Math.sin(-d),y:a.y+l*Math.cos(d)+s*Math.sin(d),width:i.width*o.x,height:i.height*o.y,rotation:d};return dH(p,-lt.getAngle(n),{x:0,y:0})}__getNodeRect(){var t=this.getNode();if(!t)return{x:-YA,y:-YA,width:0,height:0,rotation:0};const n=[];this.nodes().map(d=>{const p=d.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()});var g=[{x:p.x,y:p.y},{x:p.x+p.width,y:p.y},{x:p.x+p.width,y:p.y+p.height},{x:p.x,y:p.y+p.height}],m=d.getAbsoluteTransform();g.forEach(function(y){var b=m.point(y);n.push(b)})});const r=new da;r.rotate(-lt.getAngle(this.rotation()));var i,o,a,s;n.forEach(function(d){var p=r.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),r.invert();const l=r.point({x:i,y:o});return{x:l.x,y:l.y,width:a-i,height:s-o,rotation:lt.getAngle(this.rotation())}}getX(){return this._getNodeRect().x}getY(){return this._getNodeRect().y}getWidth(){return this._getNodeRect().width}getHeight(){return this._getNodeRect().height}_createElements(){this._createBack(),D4.forEach(function(t){this._createAnchor(t)}.bind(this)),this._createAnchor("rotater")}_createAnchor(t){var n=new Mv({stroke:"rgb(0, 161, 255)",fill:"white",strokeWidth:1,name:t+" _anchor",dragDistance:0,draggable:!0,hitStrokeWidth:NSe?10:"auto"}),r=this;n.on("mousedown touchstart",function(i){r._handleMouseDown(i)}),n.on("dragstart",i=>{n.stopDrag(),i.cancelBubble=!0}),n.on("dragend",i=>{i.cancelBubble=!0}),n.on("mouseenter",()=>{var i=lt.getAngle(this.rotation()),o=DSe(t,i);n.getStage().content&&(n.getStage().content.style.cursor=o),this._cursorChange=!0}),n.on("mouseout",()=>{n.getStage().content&&(n.getStage().content.style.cursor=""),this._cursorChange=!1}),this.add(n)}_createBack(){var t=new Ne({name:"back",width:0,height:0,draggable:!0,sceneFunc(n){var r=this.getParent(),i=r.padding();n.beginPath(),n.rect(-i,-i,this.width()+i*2,this.height()+i*2),n.moveTo(this.width()/2,-i),r.rotateEnabled()&&n.lineTo(this.width()/2,-r.rotateAnchorOffset()*ue._sign(this.height())-i),n.fillStrokeShape(this)},hitFunc:(n,r)=>{if(!!this.shouldOverdrawWholeArea()){var i=this.padding();n.beginPath(),n.rect(-i,-i,r.width()+i*2,r.height()+i*2),n.fillStrokeShape(r)}}});this.add(t),this._proxyDrag(t),t.on("dragstart",n=>{n.cancelBubble=!0}),t.on("dragmove",n=>{n.cancelBubble=!0}),t.on("dragend",n=>{n.cancelBubble=!0}),this.on("dragmove",n=>{this.update()})}_handleMouseDown(t){this._movingAnchorName=t.target.name().split(" ")[0];var n=this._getNodeRect(),r=n.width,i=n.height,o=Math.sqrt(Math.pow(r,2)+Math.pow(i,2));this.sin=Math.abs(i/o),this.cos=Math.abs(r/o),typeof window<"u"&&(window.addEventListener("mousemove",this._handleMouseMove),window.addEventListener("touchmove",this._handleMouseMove),window.addEventListener("mouseup",this._handleMouseUp,!0),window.addEventListener("touchend",this._handleMouseUp,!0)),this._transforming=!0;var a=t.target.getAbsolutePosition(),s=t.target.getStage().getPointerPosition();this._anchorDragOffset={x:s.x-a.x,y:s.y-a.y},this._fire("transformstart",{evt:t.evt,target:this.getNode()}),this._nodes.forEach(l=>{l._fire("transformstart",{evt:t.evt,target:l})})}_handleMouseMove(t){var n,r,i,o=this.findOne("."+this._movingAnchorName),a=o.getStage();a.setPointersPositions(t);const s=a.getPointerPosition();let l={x:s.x-this._anchorDragOffset.x,y:s.y-this._anchorDragOffset.y};const d=o.getAbsolutePosition();this.anchorDragBoundFunc()&&(l=this.anchorDragBoundFunc()(d,l,t)),o.setAbsolutePosition(l);const p=o.getAbsolutePosition();if(!(d.x===p.x&&d.y===p.y)){if(this._movingAnchorName==="rotater"){var g=this._getNodeRect();n=o.x()-g.width/2,r=-o.y()+g.height/2;let ge=Math.atan2(-r,n)+Math.PI/2;g.height<0&&(ge-=Math.PI);var m=lt.getAngle(this.rotation());const ce=m+ge,ve=lt.getAngle(this.rotationSnapTolerance()),be=BSe(this.rotationSnaps(),ce,ve)-g.rotation,J=FSe(g,be);this._fitNodesInto(J,t);return}var y=this.keepRatio()||t.shiftKey,k=this.centeredScaling()||t.altKey;if(this._movingAnchorName==="top-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-right").x(),y:this.findOne(".bottom-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(b.y-o.y(),2));var w=this.findOne(".top-left").x()>b.x?-1:1,P=this.findOne(".top-left").y()>b.y?-1:1;n=i*this.cos*w,r=i*this.sin*P,this.findOne(".top-left").x(b.x-n),this.findOne(".top-left").y(b.y-r)}}else if(this._movingAnchorName==="top-center")this.findOne(".top-left").y(o.y());else if(this._movingAnchorName==="top-right"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-left").x(),y:this.findOne(".bottom-left").y()};i=Math.sqrt(Math.pow(o.x()-b.x,2)+Math.pow(b.y-o.y(),2));var w=this.findOne(".top-right").x()b.y?-1:1;n=i*this.cos*w,r=i*this.sin*P,this.findOne(".top-right").x(b.x+n),this.findOne(".top-right").y(b.y-r)}var E=o.position();this.findOne(".top-left").y(E.y),this.findOne(".bottom-right").x(E.x)}else if(this._movingAnchorName==="middle-left")this.findOne(".top-left").x(o.x());else if(this._movingAnchorName==="middle-right")this.findOne(".bottom-right").x(o.x());else if(this._movingAnchorName==="bottom-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".top-right").x(),y:this.findOne(".top-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(o.y()-b.y,2));var w=b.x{r._fire("transformend",{evt:t,target:r})}),this._movingAnchorName=null}}_fitNodesInto(t,n){var r=this._getNodeRect();const i=1;if(ue._inRange(t.width,-this.padding()*2-i,i)){this.update();return}if(ue._inRange(t.height,-this.padding()*2-i,i)){this.update();return}const o=this.flipEnabled();var a=new da;if(a.rotate(lt.getAngle(this.rotation())),this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("left")>=0){const g=a.point({x:-this.padding()*2,y:0});if(t.x+=g.x,t.y+=g.y,t.width+=this.padding()*2,this._movingAnchorName=this._movingAnchorName.replace("left","right"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,!o){this.update();return}}else if(this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("right")>=0){const g=a.point({x:this.padding()*2,y:0});if(this._movingAnchorName=this._movingAnchorName.replace("right","left"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.width+=this.padding()*2,!o){this.update();return}}if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("top")>=0){const g=a.point({x:0,y:-this.padding()*2});if(t.x+=g.x,t.y+=g.y,this._movingAnchorName=this._movingAnchorName.replace("top","bottom"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}else if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("bottom")>=0){const g=a.point({x:0,y:this.padding()*2});if(this._movingAnchorName=this._movingAnchorName.replace("bottom","top"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}if(this.boundBoxFunc()){const g=this.boundBoxFunc()(r,t);g?t=g:ue.warn("boundBoxFunc returned falsy. You should return new bound rect from it!")}const s=1e7,l=new da;l.translate(r.x,r.y),l.rotate(r.rotation),l.scale(r.width/s,r.height/s);const d=new da;d.translate(t.x,t.y),d.rotate(t.rotation),d.scale(t.width/s,t.height/s);const p=d.multiply(l.invert());this._nodes.forEach(g=>{var m;const y=g.getParent().getAbsoluteTransform(),b=g.getTransform().copy();b.translate(g.offsetX(),g.offsetY());const w=new da;w.multiply(y.copy().invert()).multiply(p).multiply(y).multiply(b);const P=w.decompose();g.setAttrs(P),this._fire("transform",{evt:n,target:g}),g._fire("transform",{evt:n,target:g}),(m=g.getLayer())===null||m===void 0||m.batchDraw()}),this.rotation(ue._getRotation(t.rotation)),this._resetTransformCache(),this.update(),this.getLayer().batchDraw()}forceUpdate(){this._resetTransformCache(),this.update()}_batchChangeChild(t,n){this.findOne(t).setAttrs(n)}update(){var t,n=this._getNodeRect();this.rotation(ue._getRotation(n.rotation));var r=n.width,i=n.height,o=this.enabledAnchors(),a=this.resizeEnabled(),s=this.padding(),l=this.anchorSize();this.find("._anchor").forEach(d=>{d.setAttrs({width:l,height:l,offsetX:l/2,offsetY:l/2,stroke:this.anchorStroke(),strokeWidth:this.anchorStrokeWidth(),fill:this.anchorFill(),cornerRadius:this.anchorCornerRadius()})}),this._batchChangeChild(".top-left",{x:0,y:0,offsetX:l/2+s,offsetY:l/2+s,visible:a&&o.indexOf("top-left")>=0}),this._batchChangeChild(".top-center",{x:r/2,y:0,offsetY:l/2+s,visible:a&&o.indexOf("top-center")>=0}),this._batchChangeChild(".top-right",{x:r,y:0,offsetX:l/2-s,offsetY:l/2+s,visible:a&&o.indexOf("top-right")>=0}),this._batchChangeChild(".middle-left",{x:0,y:i/2,offsetX:l/2+s,visible:a&&o.indexOf("middle-left")>=0}),this._batchChangeChild(".middle-right",{x:r,y:i/2,offsetX:l/2-s,visible:a&&o.indexOf("middle-right")>=0}),this._batchChangeChild(".bottom-left",{x:0,y:i,offsetX:l/2+s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-left")>=0}),this._batchChangeChild(".bottom-center",{x:r/2,y:i,offsetY:l/2-s,visible:a&&o.indexOf("bottom-center")>=0}),this._batchChangeChild(".bottom-right",{x:r,y:i,offsetX:l/2-s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-right")>=0}),this._batchChangeChild(".rotater",{x:r/2,y:-this.rotateAnchorOffset()*ue._sign(i)-s,visible:this.rotateEnabled()}),this._batchChangeChild(".back",{width:r,height:i,visible:this.borderEnabled(),stroke:this.borderStroke(),strokeWidth:this.borderStrokeWidth(),dash:this.borderDash(),x:0,y:0}),(t=this.getLayer())===null||t===void 0||t.batchDraw()}isTransforming(){return this._transforming}stopTransform(){if(this._transforming){this._removeEvents();var t=this.findOne("."+this._movingAnchorName);t&&t.stopDrag()}}destroy(){return this.getStage()&&this._cursorChange&&this.getStage().content&&(this.getStage().content.style.cursor=""),D1.prototype.destroy.call(this),this.detach(),this._removeEvents(),this}toObject(){return We.prototype.toObject.call(this)}getClientRect(){return this.nodes().length>0?super.getClientRect():{x:0,y:0,width:0,height:0}}}function $Se(e){return e instanceof Array||ue.warn("enabledAnchors value should be an array"),e instanceof Array&&e.forEach(function(t){D4.indexOf(t)===-1&&ue.warn("Unknown anchor name: "+t+". Available names are: "+D4.join(", "))}),e||[]}En.prototype.className="Transformer";vr(En);Z.addGetterSetter(En,"enabledAnchors",D4,$Se);Z.addGetterSetter(En,"flipEnabled",!0,Ns());Z.addGetterSetter(En,"resizeEnabled",!0);Z.addGetterSetter(En,"anchorSize",10,He());Z.addGetterSetter(En,"rotateEnabled",!0);Z.addGetterSetter(En,"rotationSnaps",[]);Z.addGetterSetter(En,"rotateAnchorOffset",50,He());Z.addGetterSetter(En,"rotationSnapTolerance",5,He());Z.addGetterSetter(En,"borderEnabled",!0);Z.addGetterSetter(En,"anchorStroke","rgb(0, 161, 255)");Z.addGetterSetter(En,"anchorStrokeWidth",1,He());Z.addGetterSetter(En,"anchorFill","white");Z.addGetterSetter(En,"anchorCornerRadius",0,He());Z.addGetterSetter(En,"borderStroke","rgb(0, 161, 255)");Z.addGetterSetter(En,"borderStrokeWidth",1,He());Z.addGetterSetter(En,"borderDash");Z.addGetterSetter(En,"keepRatio",!0);Z.addGetterSetter(En,"centeredScaling",!1);Z.addGetterSetter(En,"ignoreStroke",!1);Z.addGetterSetter(En,"padding",0,He());Z.addGetterSetter(En,"node");Z.addGetterSetter(En,"nodes");Z.addGetterSetter(En,"boundBoxFunc");Z.addGetterSetter(En,"anchorDragBoundFunc");Z.addGetterSetter(En,"shouldOverdrawWholeArea",!1);Z.addGetterSetter(En,"useSingleNodeRotation",!0);Z.backCompat(En,{lineEnabled:"borderEnabled",rotateHandlerOffset:"rotateAnchorOffset",enabledHandlers:"enabledAnchors"});class ju extends Ne{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.radius(),0,lt.getAngle(this.angle()),this.clockwise()),t.lineTo(0,0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}ju.prototype.className="Wedge";ju.prototype._centroid=!0;ju.prototype._attrsAffectingSize=["radius"];vr(ju);Z.addGetterSetter(ju,"radius",0,He());Z.addGetterSetter(ju,"angle",0,He());Z.addGetterSetter(ju,"clockwise",!1);Z.backCompat(ju,{angleDeg:"angle",getAngleDeg:"getAngle",setAngleDeg:"setAngle"});function XA(){this.r=0,this.g=0,this.b=0,this.a=0,this.next=null}var HSe=[512,512,456,512,328,456,335,512,405,328,271,456,388,335,292,512,454,405,364,328,298,271,496,456,420,388,360,335,312,292,273,512,482,454,428,405,383,364,345,328,312,298,284,271,259,496,475,456,437,420,404,388,374,360,347,335,323,312,302,292,282,273,265,512,497,482,468,454,441,428,417,405,394,383,373,364,354,345,337,328,320,312,305,298,291,284,278,271,265,259,507,496,485,475,465,456,446,437,428,420,412,404,396,388,381,374,367,360,354,347,341,335,329,323,318,312,307,302,297,292,287,282,278,273,269,265,261,512,505,497,489,482,475,468,461,454,447,441,435,428,422,417,411,405,399,394,389,383,378,373,368,364,359,354,350,345,341,337,332,328,324,320,316,312,309,305,301,298,294,291,287,284,281,278,274,271,268,265,262,259,257,507,501,496,491,485,480,475,470,465,460,456,451,446,442,437,433,428,424,420,416,412,408,404,400,396,392,388,385,381,377,374,370,367,363,360,357,354,350,347,344,341,338,335,332,329,326,323,320,318,315,312,310,307,304,302,299,297,294,292,289,287,285,282,280,278,275,273,271,269,267,265,263,261,259],WSe=[9,11,12,13,13,14,14,15,15,15,15,16,16,16,16,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24];function VSe(e,t){var n=e.data,r=e.width,i=e.height,o,a,s,l,d,p,g,m,y,b,w,P,E,k,L,M,N,F,B,z,j,q,Y,ge,ce=t+t+1,ve=r-1,we=i-1,be=t+1,J=be*(be+1)/2,U=new XA,ee=null,Q=U,W=null,ie=null,de=HSe[t],Se=WSe[t];for(s=1;s>Se,Y!==0?(Y=255/Y,n[p]=(m*de>>Se)*Y,n[p+1]=(y*de>>Se)*Y,n[p+2]=(b*de>>Se)*Y):n[p]=n[p+1]=n[p+2]=0,m-=P,y-=E,b-=k,w-=L,P-=W.r,E-=W.g,k-=W.b,L-=W.a,l=g+((l=o+t+1)>Se,Y>0?(Y=255/Y,n[l]=(m*de>>Se)*Y,n[l+1]=(y*de>>Se)*Y,n[l+2]=(b*de>>Se)*Y):n[l]=n[l+1]=n[l+2]=0,m-=P,y-=E,b-=k,w-=L,P-=W.r,E-=W.g,k-=W.b,L-=W.a,l=o+((l=a+be)0&&VSe(t,n)};Z.addGetterSetter(We,"blurRadius",0,He(),Z.afterSetFilter);const GSe=function(e){var t=this.brightness()*255,n=e.data,r=n.length,i;for(i=0;i255?255:i,o=o<0?0:o>255?255:o,a=a<0?0:a>255?255:a,n[s]=i,n[s+1]=o,n[s+2]=a};Z.addGetterSetter(We,"contrast",0,He(),Z.afterSetFilter);const qSe=function(e){var t=this.embossStrength()*10,n=this.embossWhiteLevel()*255,r=this.embossDirection(),i=this.embossBlend(),o=0,a=0,s=e.data,l=e.width,d=e.height,p=l*4,g=d;switch(r){case"top-left":o=-1,a=-1;break;case"top":o=-1,a=0;break;case"top-right":o=-1,a=1;break;case"right":o=0,a=1;break;case"bottom-right":o=1,a=1;break;case"bottom":o=1,a=0;break;case"bottom-left":o=1,a=-1;break;case"left":o=0,a=-1;break;default:ue.error("Unknown emboss direction: "+r)}do{var m=(g-1)*p,y=o;g+y<1&&(y=0),g+y>d&&(y=0);var b=(g-1+y)*l*4,w=l;do{var P=m+(w-1)*4,E=a;w+E<1&&(E=0),w+E>l&&(E=0);var k=b+(w-1+E)*4,L=s[P]-s[k],M=s[P+1]-s[k+1],N=s[P+2]-s[k+2],F=L,B=F>0?F:-F,z=M>0?M:-M,j=N>0?N:-N;if(z>B&&(F=M),j>B&&(F=N),F*=t,i){var q=s[P]+F,Y=s[P+1]+F,ge=s[P+2]+F;s[P]=q>255?255:q<0?0:q,s[P+1]=Y>255?255:Y<0?0:Y,s[P+2]=ge>255?255:ge<0?0:ge}else{var ce=n-F;ce<0?ce=0:ce>255&&(ce=255),s[P]=s[P+1]=s[P+2]=ce}}while(--w)}while(--g)};Z.addGetterSetter(We,"embossStrength",.5,He(),Z.afterSetFilter);Z.addGetterSetter(We,"embossWhiteLevel",.5,He(),Z.afterSetFilter);Z.addGetterSetter(We,"embossDirection","top-left",null,Z.afterSetFilter);Z.addGetterSetter(We,"embossBlend",!1,null,Z.afterSetFilter);function HS(e,t,n,r,i){var o=n-t,a=i-r,s;return o===0?r+a/2:a===0?r:(s=(e-t)/o,s=a*s+r,s)}const KSe=function(e){var t=e.data,n=t.length,r=t[0],i=r,o,a=t[1],s=a,l,d=t[2],p=d,g,m,y=this.enhance();if(y!==0){for(m=0;mi&&(i=o),l=t[m+1],ls&&(s=l),g=t[m+2],gp&&(p=g);i===r&&(i=255,r=0),s===a&&(s=255,a=0),p===d&&(p=255,d=0);var b,w,P,E,k,L,M,N,F;for(y>0?(w=i+y*(255-i),P=r-y*(r-0),k=s+y*(255-s),L=a-y*(a-0),N=p+y*(255-p),F=d-y*(d-0)):(b=(i+r)*.5,w=i+y*(i-b),P=r+y*(r-b),E=(s+a)*.5,k=s+y*(s-E),L=a+y*(a-E),M=(p+d)*.5,N=p+y*(p-M),F=d+y*(d-M)),m=0;mE?P:E;var k=a,L=o,M,N,F=360/L*Math.PI/180,B,z;for(N=0;NL?k:L;var M=a,N=o,F,B,z=n.polarRotation||0,j,q;for(p=0;pt&&(M=L,N=0,F=-1),i=0;i=0&&y=0&&b=0&&y=0&&b=255*4?255:0}return a}function swe(e,t,n){for(var r=[.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111],i=Math.round(Math.sqrt(r.length)),o=Math.floor(i/2),a=[],s=0;s=0&&y=0&&b=n))for(o=w;o=r||(a=(n*o+i)*4,s+=M[a+0],l+=M[a+1],d+=M[a+2],p+=M[a+3],L+=1);for(s=s/L,l=l/L,d=d/L,p=p/L,i=y;i=n))for(o=w;o=r||(a=(n*o+i)*4,M[a+0]=s,M[a+1]=l,M[a+2]=d,M[a+3]=p)}};Z.addGetterSetter(We,"pixelSize",8,He(),Z.afterSetFilter);const dwe=function(e){var t=Math.round(this.levels()*254)+1,n=e.data,r=n.length,i=255/t,o;for(o=0;o255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"blue",0,O$,Z.afterSetFilter);const hwe=function(e){var t=e.data,n=t.length,r=this.red(),i=this.green(),o=this.blue(),a=this.alpha(),s,l;for(s=0;s255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"blue",0,O$,Z.afterSetFilter);Z.addGetterSetter(We,"alpha",1,function(e){return this._filterUpToDate=!1,e>1?1:e<0?0:e});const pwe=function(e){var t=e.data,n=t.length,r,i,o,a;for(r=0;r127&&(d=255-d),p>127&&(p=255-p),g>127&&(g=255-g),t[l]=d,t[l+1]=p,t[l+2]=g}while(--s)}while(--o)},mwe=function(e){var t=this.threshold()*255,n=e.data,r=n.length,i;for(i=0;ire||T[V]!==R[re]){var fe=` +`+T[V].replace(" at new "," at ");return c.displayName&&fe.includes("")&&(fe=fe.replace("",c.displayName)),fe}while(1<=V&&0<=re);break}}}finally{eo=!1,Error.prepareStackTrace=v}return(c=c?c.displayName||c.name:"")?os(c):""}var Yu=Object.prototype.hasOwnProperty,$s=[],Ea=-1;function Wi(c){return{current:c}}function vn(c){0>Ea||(c.current=$s[Ea],$s[Ea]=null,Ea--)}function fn(c,f){Ea++,$s[Ea]=c.current,c.current=f}var to={},ar=Wi(to),Lr=Wi(!1),no=to;function Pa(c,f){var v=c.type.contextTypes;if(!v)return to;var _=c.stateNode;if(_&&_.__reactInternalMemoizedUnmaskedChildContext===f)return _.__reactInternalMemoizedMaskedChildContext;var T={},R;for(R in v)T[R]=f[R];return _&&(c=c.stateNode,c.__reactInternalMemoizedUnmaskedChildContext=f,c.__reactInternalMemoizedMaskedChildContext=T),T}function Ar(c){return c=c.childContextTypes,c!=null}function qo(){vn(Lr),vn(ar)}function Ul(c,f,v){if(ar.current!==to)throw Error(a(168));fn(ar,f),fn(Lr,v)}function wo(c,f,v){var _=c.stateNode;if(f=f.childContextTypes,typeof _.getChildContext!="function")return v;_=_.getChildContext();for(var T in _)if(!(T in f))throw Error(a(108,z(c)||"Unknown",T));return o({},v,_)}function ro(c){return c=(c=c.stateNode)&&c.__reactInternalMemoizedMergedChildContext||to,no=ar.current,fn(ar,c),fn(Lr,Lr.current),!0}function Gl(c,f,v){var _=c.stateNode;if(!_)throw Error(a(169));v?(c=wo(c,f,no),_.__reactInternalMemoizedMergedChildContext=c,vn(Lr),vn(ar),fn(ar,c)):vn(Lr),fn(Lr,v)}var Qr=Math.clz32?Math.clz32:ql,jl=Math.log,Xu=Math.LN2;function ql(c){return c>>>=0,c===0?32:31-(jl(c)/Xu|0)|0}var Ta=64,bi=4194304;function La(c){switch(c&-c){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return c&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return c&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return c}}function as(c,f){var v=c.pendingLanes;if(v===0)return 0;var _=0,T=c.suspendedLanes,R=c.pingedLanes,V=v&268435455;if(V!==0){var re=V&~T;re!==0?_=La(re):(R&=V,R!==0&&(_=La(R)))}else V=v&~T,V!==0?_=La(V):R!==0&&(_=La(R));if(_===0)return 0;if(f!==0&&f!==_&&(f&T)===0&&(T=_&-_,R=f&-f,T>=R||T===16&&(R&4194240)!==0))return f;if((_&4)!==0&&(_|=v&16),f=c.entangledLanes,f!==0)for(c=c.entanglements,f&=_;0v;v++)f.push(c);return f}function Si(c,f,v){c.pendingLanes|=f,f!==536870912&&(c.suspendedLanes=0,c.pingedLanes=0),c=c.eventTimes,f=31-Qr(f),c[f]=v}function ss(c,f){var v=c.pendingLanes&~f;c.pendingLanes=f,c.suspendedLanes=0,c.pingedLanes=0,c.expiredLanes&=f,c.mutableReadLanes&=f,c.entangledLanes&=f,f=c.entanglements;var _=c.eventTimes;for(c=c.expirationTimes;0>=V,T-=V,li=1<<32-Qr(f)+T|v<Ht?(Gr=Et,Et=null):Gr=Et.sibling;var Qt=Je(he,Et,ye[Ht],Ze);if(Qt===null){Et===null&&(Et=Gr);break}c&&Et&&Qt.alternate===null&&f(he,Et),ae=R(Qt,ae,Ht),At===null?Ae=Qt:At.sibling=Qt,At=Qt,Et=Gr}if(Ht===ye.length)return v(he,Et),On&&Vs(he,Ht),Ae;if(Et===null){for(;HtHt?(Gr=Et,Et=null):Gr=Et.sibling;var vs=Je(he,Et,Qt.value,Ze);if(vs===null){Et===null&&(Et=Gr);break}c&&Et&&vs.alternate===null&&f(he,Et),ae=R(vs,ae,Ht),At===null?Ae=vs:At.sibling=vs,At=vs,Et=Gr}if(Qt.done)return v(he,Et),On&&Vs(he,Ht),Ae;if(Et===null){for(;!Qt.done;Ht++,Qt=ye.next())Qt=Lt(he,Qt.value,Ze),Qt!==null&&(ae=R(Qt,ae,Ht),At===null?Ae=Qt:At.sibling=Qt,At=Qt);return On&&Vs(he,Ht),Ae}for(Et=_(he,Et);!Qt.done;Ht++,Qt=ye.next())Qt=Dn(Et,he,Ht,Qt.value,Ze),Qt!==null&&(c&&Qt.alternate!==null&&Et.delete(Qt.key===null?Ht:Qt.key),ae=R(Qt,ae,Ht),At===null?Ae=Qt:At.sibling=Qt,At=Qt);return c&&Et.forEach(function(pi){return f(he,pi)}),On&&Vs(he,Ht),Ae}function ia(he,ae,ye,Ze){if(typeof ye=="object"&&ye!==null&&ye.type===p&&ye.key===null&&(ye=ye.props.children),typeof ye=="object"&&ye!==null){switch(ye.$$typeof){case l:e:{for(var Ae=ye.key,At=ae;At!==null;){if(At.key===Ae){if(Ae=ye.type,Ae===p){if(At.tag===7){v(he,At.sibling),ae=T(At,ye.props.children),ae.return=he,he=ae;break e}}else if(At.elementType===Ae||typeof Ae=="object"&&Ae!==null&&Ae.$$typeof===L&&u0(Ae)===At.type){v(he,At.sibling),ae=T(At,ye.props),ae.ref=Oa(he,At,ye),ae.return=he,he=ae;break e}v(he,At);break}else f(he,At);At=At.sibling}ye.type===p?(ae=rl(ye.props.children,he.mode,Ze,ye.key),ae.return=he,he=ae):(Ze=bf(ye.type,ye.key,ye.props,null,he.mode,Ze),Ze.ref=Oa(he,ae,ye),Ze.return=he,he=Ze)}return V(he);case d:e:{for(At=ye.key;ae!==null;){if(ae.key===At)if(ae.tag===4&&ae.stateNode.containerInfo===ye.containerInfo&&ae.stateNode.implementation===ye.implementation){v(he,ae.sibling),ae=T(ae,ye.children||[]),ae.return=he,he=ae;break e}else{v(he,ae);break}else f(he,ae);ae=ae.sibling}ae=il(ye,he.mode,Ze),ae.return=he,he=ae}return V(he);case L:return At=ye._init,ia(he,ae,At(ye._payload),Ze)}if(we(ye))return Pn(he,ae,ye,Ze);if(F(ye))return Jn(he,ae,ye,Ze);Ui(he,ye)}return typeof ye=="string"&&ye!==""||typeof ye=="number"?(ye=""+ye,ae!==null&&ae.tag===6?(v(he,ae.sibling),ae=T(ae,ye),ae.return=he,he=ae):(v(he,ae),ae=dp(ye,he.mode,Ze),ae.return=he,he=ae),V(he)):v(he,ae)}return ia}var ic=Vv(!0),Uv=Vv(!1),nf={},ko=Wi(nf),Na=Wi(nf),te=Wi(nf);function xe(c){if(c===nf)throw Error(a(174));return c}function pe(c,f){fn(te,f),fn(Na,c),fn(ko,nf),c=J(f),vn(ko),fn(ko,c)}function Qe(){vn(ko),vn(Na),vn(te)}function kt(c){var f=xe(te.current),v=xe(ko.current);f=U(v,c.type,f),v!==f&&(fn(Na,c),fn(ko,f))}function nn(c){Na.current===c&&(vn(ko),vn(Na))}var Rt=Wi(0);function pn(c){for(var f=c;f!==null;){if(f.tag===13){var v=f.memoizedState;if(v!==null&&(v=v.dehydrated,v===null||Fs(v)||Vl(v)))return f}else if(f.tag===19&&f.memoizedProps.revealOrder!==void 0){if((f.flags&128)!==0)return f}else if(f.child!==null){f.child.return=f,f=f.child;continue}if(f===c)break;for(;f.sibling===null;){if(f.return===null||f.return===c)return null;f=f.return}f.sibling.return=f.return,f=f.sibling}return null}var rf=[];function c0(){for(var c=0;cv?v:4,c(!0);var _=oc.transition;oc.transition={};try{c(!1),f()}finally{Mt=v,oc.transition=_}}function fc(){return _i().memoizedState}function y0(c,f,v){var _=Dr(c);if(v={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null},pc(c))gc(f,v);else if(v=rc(c,f,v,_),v!==null){var T=hi();To(v,c,_,T),cf(v,f,_)}}function hc(c,f,v){var _=Dr(c),T={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null};if(pc(c))gc(f,T);else{var R=c.alternate;if(c.lanes===0&&(R===null||R.lanes===0)&&(R=f.lastRenderedReducer,R!==null))try{var V=f.lastRenderedState,re=R(V,v);if(T.hasEagerState=!0,T.eagerState=re,I(re,V)){var fe=f.interleaved;fe===null?(T.next=T,ef(f)):(T.next=fe.next,fe.next=T),f.interleaved=T;return}}catch{}finally{}v=rc(c,f,T,_),v!==null&&(T=hi(),To(v,c,_,T),cf(v,f,_))}}function pc(c){var f=c.alternate;return c===wn||f!==null&&f===wn}function gc(c,f){of=sn=!0;var v=c.pending;v===null?f.next=f:(f.next=v.next,v.next=f),c.pending=f}function cf(c,f,v){if((v&4194240)!==0){var _=f.lanes;_&=c.pendingLanes,v|=_,f.lanes=v,Ko(c,v)}}var ds={readContext:io,useCallback:ui,useContext:ui,useEffect:ui,useImperativeHandle:ui,useInsertionEffect:ui,useLayoutEffect:ui,useMemo:ui,useReducer:ui,useRef:ui,useState:ui,useDebugValue:ui,useDeferredValue:ui,useTransition:ui,useMutableSource:ui,useSyncExternalStore:ui,useId:ui,unstable_isNewReconciler:!1},Lx={readContext:io,useCallback:function(c,f){return Jr().memoizedState=[c,f===void 0?null:f],c},useContext:io,useEffect:qv,useImperativeHandle:function(c,f,v){return v=v!=null?v.concat([c]):null,iu(4194308,4,xr.bind(null,f,c),v)},useLayoutEffect:function(c,f){return iu(4194308,4,c,f)},useInsertionEffect:function(c,f){return iu(4,2,c,f)},useMemo:function(c,f){var v=Jr();return f=f===void 0?null:f,c=c(),v.memoizedState=[c,f],c},useReducer:function(c,f,v){var _=Jr();return f=v!==void 0?v(f):f,_.memoizedState=_.baseState=f,c={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:c,lastRenderedState:f},_.queue=c,c=c.dispatch=y0.bind(null,wn,c),[_.memoizedState,c]},useRef:function(c){var f=Jr();return c={current:c},f.memoizedState=c},useState:jv,useDebugValue:g0,useDeferredValue:function(c){return Jr().memoizedState=c},useTransition:function(){var c=jv(!1),f=c[0];return c=v0.bind(null,c[1]),Jr().memoizedState=c,[f,c]},useMutableSource:function(){},useSyncExternalStore:function(c,f,v){var _=wn,T=Jr();if(On){if(v===void 0)throw Error(a(407));v=v()}else{if(v=f(),Ur===null)throw Error(a(349));(ru&30)!==0||p0(_,f,v)}T.memoizedState=v;var R={value:v,getSnapshot:f};return T.queue=R,qv(js.bind(null,_,R,c),[c]),_.flags|=2048,lf(9,cc.bind(null,_,R,v,f),void 0,null),v},useId:function(){var c=Jr(),f=Ur.identifierPrefix;if(On){var v=Ma,_=li;v=(_&~(1<<32-Qr(_)-1)).toString(32)+v,f=":"+f+"R"+v,v=ac++,0tp&&(f.flags|=128,_=!0,yc(T,!1),f.lanes=4194304)}else{if(!_)if(c=pn(R),c!==null){if(f.flags|=128,_=!0,c=c.updateQueue,c!==null&&(f.updateQueue=c,f.flags|=4),yc(T,!0),T.tail===null&&T.tailMode==="hidden"&&!R.alternate&&!On)return ci(f),null}else 2*hn()-T.renderingStartTime>tp&&v!==1073741824&&(f.flags|=128,_=!0,yc(T,!1),f.lanes=4194304);T.isBackwards?(R.sibling=f.child,f.child=R):(c=T.last,c!==null?c.sibling=R:f.child=R,T.last=R)}return T.tail!==null?(f=T.tail,T.rendering=f,T.tail=f.sibling,T.renderingStartTime=hn(),f.sibling=null,c=Rt.current,fn(Rt,_?c&1|2:c&1),f):(ci(f),null);case 22:case 23:return Pc(),v=f.memoizedState!==null,c!==null&&c.memoizedState!==null!==v&&(f.flags|=8192),v&&(f.mode&1)!==0?(ao&1073741824)!==0&&(ci(f),pt&&f.subtreeFlags&6&&(f.flags|=8192)):ci(f),null;case 24:return null;case 25:return null}throw Error(a(156,f.tag))}function E0(c,f){switch(o0(f),f.tag){case 1:return Ar(f.type)&&qo(),c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 3:return Qe(),vn(Lr),vn(ar),c0(),c=f.flags,(c&65536)!==0&&(c&128)===0?(f.flags=c&-65537|128,f):null;case 5:return nn(f),null;case 13:if(vn(Rt),c=f.memoizedState,c!==null&&c.dehydrated!==null){if(f.alternate===null)throw Error(a(340));ec()}return c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 19:return vn(Rt),null;case 4:return Qe(),null;case 10:return Qd(f.type._context),null;case 22:case 23:return Pc(),null;case 24:return null;default:return null}}var Ks=!1,Rr=!1,Nx=typeof WeakSet=="function"?WeakSet:Set,nt=null;function xc(c,f){var v=c.ref;if(v!==null)if(typeof v=="function")try{v(null)}catch(_){Vn(c,f,_)}else v.current=null}function ea(c,f,v){try{v()}catch(_){Vn(c,f,_)}}var Wh=!1;function au(c,f){for(ee(c.containerInfo),nt=f;nt!==null;)if(c=nt,f=c.child,(c.subtreeFlags&1028)!==0&&f!==null)f.return=c,nt=f;else for(;nt!==null;){c=nt;try{var v=c.alternate;if((c.flags&1024)!==0)switch(c.tag){case 0:case 11:case 15:break;case 1:if(v!==null){var _=v.memoizedProps,T=v.memoizedState,R=c.stateNode,V=R.getSnapshotBeforeUpdate(c.elementType===c.type?_:Zo(c.type,_),T);R.__reactInternalSnapshotBeforeUpdate=V}break;case 3:pt&&$i(c.stateNode.containerInfo);break;case 5:case 6:case 4:case 17:break;default:throw Error(a(163))}}catch(re){Vn(c,c.return,re)}if(f=c.sibling,f!==null){f.return=c.return,nt=f;break}nt=c.return}return v=Wh,Wh=!1,v}function di(c,f,v){var _=f.updateQueue;if(_=_!==null?_.lastEffect:null,_!==null){var T=_=_.next;do{if((T.tag&c)===c){var R=T.destroy;T.destroy=void 0,R!==void 0&&ea(f,v,R)}T=T.next}while(T!==_)}}function Vh(c,f){if(f=f.updateQueue,f=f!==null?f.lastEffect:null,f!==null){var v=f=f.next;do{if((v.tag&c)===c){var _=v.create;v.destroy=_()}v=v.next}while(v!==f)}}function Uh(c){var f=c.ref;if(f!==null){var v=c.stateNode;switch(c.tag){case 5:c=be(v);break;default:c=v}typeof f=="function"?f(c):f.current=c}}function P0(c){var f=c.alternate;f!==null&&(c.alternate=null,P0(f)),c.child=null,c.deletions=null,c.sibling=null,c.tag===5&&(f=c.stateNode,f!==null&&st(f)),c.stateNode=null,c.return=null,c.dependencies=null,c.memoizedProps=null,c.memoizedState=null,c.pendingProps=null,c.stateNode=null,c.updateQueue=null}function bc(c){return c.tag===5||c.tag===3||c.tag===4}function hs(c){e:for(;;){for(;c.sibling===null;){if(c.return===null||bc(c.return))return null;c=c.return}for(c.sibling.return=c.return,c=c.sibling;c.tag!==5&&c.tag!==6&&c.tag!==18;){if(c.flags&2||c.child===null||c.tag===4)continue e;c.child.return=c,c=c.child}if(!(c.flags&2))return c.stateNode}}function Gh(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?$e(v,c,f):Tt(v,c);else if(_!==4&&(c=c.child,c!==null))for(Gh(c,f,v),c=c.sibling;c!==null;)Gh(c,f,v),c=c.sibling}function T0(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?It(v,c,f):Ee(v,c);else if(_!==4&&(c=c.child,c!==null))for(T0(c,f,v),c=c.sibling;c!==null;)T0(c,f,v),c=c.sibling}var Sr=null,ta=!1;function na(c,f,v){for(v=v.child;v!==null;)Or(c,f,v),v=v.sibling}function Or(c,f,v){if(Nt&&typeof Nt.onCommitFiberUnmount=="function")try{Nt.onCommitFiberUnmount(an,v)}catch{}switch(v.tag){case 5:Rr||xc(v,f);case 6:if(pt){var _=Sr,T=ta;Sr=null,na(c,f,v),Sr=_,ta=T,Sr!==null&&(ta?qe(Sr,v.stateNode):ct(Sr,v.stateNode))}else na(c,f,v);break;case 18:pt&&Sr!==null&&(ta?Ud(Sr,v.stateNode):Vd(Sr,v.stateNode));break;case 4:pt?(_=Sr,T=ta,Sr=v.stateNode.containerInfo,ta=!0,na(c,f,v),Sr=_,ta=T):(Vt&&(_=v.stateNode.containerInfo,T=Vr(_),zs(_,T)),na(c,f,v));break;case 0:case 11:case 14:case 15:if(!Rr&&(_=v.updateQueue,_!==null&&(_=_.lastEffect,_!==null))){T=_=_.next;do{var R=T,V=R.destroy;R=R.tag,V!==void 0&&((R&2)!==0||(R&4)!==0)&&ea(v,f,V),T=T.next}while(T!==_)}na(c,f,v);break;case 1:if(!Rr&&(xc(v,f),_=v.stateNode,typeof _.componentWillUnmount=="function"))try{_.props=v.memoizedProps,_.state=v.memoizedState,_.componentWillUnmount()}catch(re){Vn(v,f,re)}na(c,f,v);break;case 21:na(c,f,v);break;case 22:v.mode&1?(Rr=(_=Rr)||v.memoizedState!==null,na(c,f,v),Rr=_):na(c,f,v);break;default:na(c,f,v)}}function jh(c){var f=c.updateQueue;if(f!==null){c.updateQueue=null;var v=c.stateNode;v===null&&(v=c.stateNode=new Nx),f.forEach(function(_){var T=d2.bind(null,c,_);v.has(_)||(v.add(_),_.then(T,T))})}}function Eo(c,f){var v=f.deletions;if(v!==null)for(var _=0;_";case Yh:return":has("+(I0(c)||"")+")";case Xh:return'[role="'+c.value+'"]';case Qh:return'"'+c.value+'"';case Sc:return'[data-testname="'+c.value+'"]';default:throw Error(a(365))}}function wc(c,f){var v=[];c=[c,0];for(var _=0;_T&&(T=V),_&=~R}if(_=T,_=hn()-_,_=(120>_?120:480>_?480:1080>_?1080:1920>_?1920:3e3>_?3e3:4320>_?4320:1960*Dx(_/1960))-_,10<_){c.timeoutHandle=Ue(nl.bind(null,c,Ei,gs),_);break}nl(c,Ei,gs);break;case 5:nl(c,Ei,gs);break;default:throw Error(a(329))}}}return ti(c,hn()),c.callbackNode===v?ip.bind(null,c):null}function op(c,f){var v=kc;return c.current.memoizedState.isDehydrated&&(el(c,f).flags|=256),c=Tc(c,f),c!==2&&(f=Ei,Ei=v,f!==null&&ap(f)),c}function ap(c){Ei===null?Ei=c:Ei.push.apply(Ei,c)}function so(c){for(var f=c;;){if(f.flags&16384){var v=f.updateQueue;if(v!==null&&(v=v.stores,v!==null))for(var _=0;_c?16:c,_t===null)var _=!1;else{if(c=_t,_t=null,np=0,($t&6)!==0)throw Error(a(331));var T=$t;for($t|=4,nt=c.current;nt!==null;){var R=nt,V=R.child;if((nt.flags&16)!==0){var re=R.deletions;if(re!==null){for(var fe=0;fehn()-O0?el(c,0):R0|=v),ti(c,f)}function B0(c,f){f===0&&((c.mode&1)===0?f=1:(f=bi,bi<<=1,(bi&130023424)===0&&(bi=4194304)));var v=hi();c=Yo(c,f),c!==null&&(Si(c,f,v),ti(c,v))}function Fx(c){var f=c.memoizedState,v=0;f!==null&&(v=f.retryLane),B0(c,v)}function d2(c,f){var v=0;switch(c.tag){case 13:var _=c.stateNode,T=c.memoizedState;T!==null&&(v=T.retryLane);break;case 19:_=c.stateNode;break;default:throw Error(a(314))}_!==null&&_.delete(f),B0(c,v)}var $0;$0=function(c,f,v){if(c!==null)if(c.memoizedProps!==f.pendingProps||Lr.current)Gi=!0;else{if((c.lanes&v)===0&&(f.flags&128)===0)return Gi=!1,Rx(c,f,v);Gi=(c.flags&131072)!==0}else Gi=!1,On&&(f.flags&1048576)!==0&&i0(f,Xt,f.index);switch(f.lanes=0,f.tag){case 2:var _=f.type;Da(c,f),c=f.pendingProps;var T=Pa(f,ar.current);nc(f,v),T=f0(null,f,_,c,T,v);var R=sc();return f.flags|=1,typeof T=="object"&&T!==null&&typeof T.render=="function"&&T.$$typeof===void 0?(f.tag=1,f.memoizedState=null,f.updateQueue=null,Ar(_)?(R=!0,ro(f)):R=!1,f.memoizedState=T.state!==null&&T.state!==void 0?T.state:null,s0(f),T.updater=Xo,f.stateNode=T,T._reactInternals=f,l0(f,_,c,v),f=Qo(null,f,_,!0,R,v)):(f.tag=0,On&&R&&wi(f),ki(null,f,T,v),f=f.child),f;case 16:_=f.elementType;e:{switch(Da(c,f),c=f.pendingProps,T=_._init,_=T(_._payload),f.type=_,T=f.tag=up(_),c=Zo(_,c),T){case 0:f=S0(null,f,_,c,v);break e;case 1:f=n2(null,f,_,c,v);break e;case 11:f=Qv(null,f,_,c,v);break e;case 14:f=qs(null,f,_,Zo(_.type,c),v);break e}throw Error(a(306,_,""))}return f;case 0:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Zo(_,T),S0(c,f,_,T,v);case 1:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Zo(_,T),n2(c,f,_,T,v);case 3:e:{if(r2(f),c===null)throw Error(a(387));_=f.pendingProps,R=f.memoizedState,T=R.element,Bv(c,f),Rh(f,_,null,v);var V=f.memoizedState;if(_=V.element,Ft&&R.isDehydrated)if(R={element:_,isDehydrated:!1,cache:V.cache,pendingSuspenseBoundaries:V.pendingSuspenseBoundaries,transitions:V.transitions},f.updateQueue.baseState=R,f.memoizedState=R,f.flags&256){T=mc(Error(a(423)),f),f=i2(c,f,_,v,T);break e}else if(_!==T){T=mc(Error(a(424)),f),f=i2(c,f,_,v,T);break e}else for(Ft&&(Co=Dd(f.stateNode.containerInfo),Wn=f,On=!0,Vi=null,_o=!1),v=Uv(f,null,_,v),f.child=v;v;)v.flags=v.flags&-3|4096,v=v.sibling;else{if(ec(),_===T){f=fs(c,f,v);break e}ki(c,f,_,v)}f=f.child}return f;case 5:return kt(f),c===null&&Kd(f),_=f.type,T=f.pendingProps,R=c!==null?c.memoizedProps:null,V=T.children,De(_,T)?V=null:R!==null&&De(_,R)&&(f.flags|=32),t2(c,f),ki(c,f,V,v),f.child;case 6:return c===null&&Kd(f),null;case 13:return o2(c,f,v);case 4:return pe(f,f.stateNode.containerInfo),_=f.pendingProps,c===null?f.child=ic(f,null,_,v):ki(c,f,_,v),f.child;case 11:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Zo(_,T),Qv(c,f,_,T,v);case 7:return ki(c,f,f.pendingProps,v),f.child;case 8:return ki(c,f,f.pendingProps.children,v),f.child;case 12:return ki(c,f,f.pendingProps.children,v),f.child;case 10:e:{if(_=f.type._context,T=f.pendingProps,R=f.memoizedProps,V=T.value,Fv(f,_,V),R!==null)if(I(R.value,V)){if(R.children===T.children&&!Lr.current){f=fs(c,f,v);break e}}else for(R=f.child,R!==null&&(R.return=f);R!==null;){var re=R.dependencies;if(re!==null){V=R.child;for(var fe=re.firstContext;fe!==null;){if(fe.context===_){if(R.tag===1){fe=cs(-1,v&-v),fe.tag=2;var Fe=R.updateQueue;if(Fe!==null){Fe=Fe.shared;var rt=Fe.pending;rt===null?fe.next=fe:(fe.next=rt.next,rt.next=fe),Fe.pending=fe}}R.lanes|=v,fe=R.alternate,fe!==null&&(fe.lanes|=v),Jd(R.return,v,f),re.lanes|=v;break}fe=fe.next}}else if(R.tag===10)V=R.type===f.type?null:R.child;else if(R.tag===18){if(V=R.return,V===null)throw Error(a(341));V.lanes|=v,re=V.alternate,re!==null&&(re.lanes|=v),Jd(V,v,f),V=R.sibling}else V=R.child;if(V!==null)V.return=R;else for(V=R;V!==null;){if(V===f){V=null;break}if(R=V.sibling,R!==null){R.return=V.return,V=R;break}V=V.return}R=V}ki(c,f,T.children,v),f=f.child}return f;case 9:return T=f.type,_=f.pendingProps.children,nc(f,v),T=io(T),_=_(T),f.flags|=1,ki(c,f,_,v),f.child;case 14:return _=f.type,T=Zo(_,f.pendingProps),T=Zo(_.type,T),qs(c,f,_,T,v);case 15:return Jv(c,f,f.type,f.pendingProps,v);case 17:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:Zo(_,T),Da(c,f),f.tag=1,Ar(_)?(c=!0,ro(f)):c=!1,nc(f,v),Hv(f,_,T),l0(f,_,T,v),Qo(null,f,_,!0,c,v);case 19:return s2(c,f,v);case 22:return e2(c,f,v)}throw Error(a(156,f.tag))};function Ti(c,f){return ls(c,f)}function za(c,f,v,_){this.tag=c,this.key=v,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=f,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=_,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Lo(c,f,v,_){return new za(c,f,v,_)}function H0(c){return c=c.prototype,!(!c||!c.isReactComponent)}function up(c){if(typeof c=="function")return H0(c)?1:0;if(c!=null){if(c=c.$$typeof,c===w)return 11;if(c===k)return 14}return 2}function lo(c,f){var v=c.alternate;return v===null?(v=Lo(c.tag,f,c.key,c.mode),v.elementType=c.elementType,v.type=c.type,v.stateNode=c.stateNode,v.alternate=c,c.alternate=v):(v.pendingProps=f,v.type=c.type,v.flags=0,v.subtreeFlags=0,v.deletions=null),v.flags=c.flags&14680064,v.childLanes=c.childLanes,v.lanes=c.lanes,v.child=c.child,v.memoizedProps=c.memoizedProps,v.memoizedState=c.memoizedState,v.updateQueue=c.updateQueue,f=c.dependencies,v.dependencies=f===null?null:{lanes:f.lanes,firstContext:f.firstContext},v.sibling=c.sibling,v.index=c.index,v.ref=c.ref,v}function bf(c,f,v,_,T,R){var V=2;if(_=c,typeof c=="function")H0(c)&&(V=1);else if(typeof c=="string")V=5;else e:switch(c){case p:return rl(v.children,T,R,f);case g:V=8,T|=8;break;case m:return c=Lo(12,v,f,T|2),c.elementType=m,c.lanes=R,c;case P:return c=Lo(13,v,f,T),c.elementType=P,c.lanes=R,c;case E:return c=Lo(19,v,f,T),c.elementType=E,c.lanes=R,c;case M:return cp(v,T,R,f);default:if(typeof c=="object"&&c!==null)switch(c.$$typeof){case y:V=10;break e;case b:V=9;break e;case w:V=11;break e;case k:V=14;break e;case L:V=16,_=null;break e}throw Error(a(130,c==null?c:typeof c,""))}return f=Lo(V,v,f,T),f.elementType=c,f.type=_,f.lanes=R,f}function rl(c,f,v,_){return c=Lo(7,c,_,f),c.lanes=v,c}function cp(c,f,v,_){return c=Lo(22,c,_,f),c.elementType=M,c.lanes=v,c.stateNode={isHidden:!1},c}function dp(c,f,v){return c=Lo(6,c,null,f),c.lanes=v,c}function il(c,f,v){return f=Lo(4,c.children!==null?c.children:[],c.key,f),f.lanes=v,f.stateNode={containerInfo:c.containerInfo,pendingChildren:null,implementation:c.implementation},f}function Sf(c,f,v,_,T){this.tag=f,this.containerInfo=c,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=Ve,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Ws(0),this.expirationTimes=Ws(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ws(0),this.identifierPrefix=_,this.onRecoverableError=T,Ft&&(this.mutableSourceEagerHydrationData=null)}function f2(c,f,v,_,T,R,V,re,fe){return c=new Sf(c,f,v,re,fe),f===1?(f=1,R===!0&&(f|=8)):f=0,R=Lo(3,null,null,f),c.current=R,R.stateNode=c,R.memoizedState={element:_,isDehydrated:v,cache:null,transitions:null,pendingSuspenseBoundaries:null},s0(R),c}function W0(c){if(!c)return to;c=c._reactInternals;e:{if(j(c)!==c||c.tag!==1)throw Error(a(170));var f=c;do{switch(f.tag){case 3:f=f.stateNode.context;break e;case 1:if(Ar(f.type)){f=f.stateNode.__reactInternalMemoizedMergedChildContext;break e}}f=f.return}while(f!==null);throw Error(a(171))}if(c.tag===1){var v=c.type;if(Ar(v))return wo(c,v,f)}return f}function V0(c){var f=c._reactInternals;if(f===void 0)throw typeof c.render=="function"?Error(a(188)):(c=Object.keys(c).join(","),Error(a(268,c)));return c=ge(f),c===null?null:c.stateNode}function wf(c,f){if(c=c.memoizedState,c!==null&&c.dehydrated!==null){var v=c.retryLane;c.retryLane=v!==0&&v=Fe&&R>=Lt&&T<=rt&&V<=Je){c.splice(f,1);break}else if(_!==Fe||v.width!==fe.width||JeV){if(!(R!==Lt||v.height!==fe.height||rt<_||Fe>T)){Fe>_&&(fe.width+=Fe-_,fe.x=_),rtR&&(fe.height+=Lt-R,fe.y=R),Jev&&(v=V)),V ")+` + +No matching component was found for: + `)+c.join(" > ")}return null},n.getPublicRootInstance=function(c){if(c=c.current,!c.child)return null;switch(c.child.tag){case 5:return be(c.child.stateNode);default:return c.child.stateNode}},n.injectIntoDevTools=function(c){if(c={bundleType:c.bundleType,version:c.version,rendererPackageName:c.rendererPackageName,rendererConfig:c.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:s.ReactCurrentDispatcher,findHostInstanceByFiber:fp,findFiberByHostInstance:c.findFiberByHostInstance||U0,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0"},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")c=!1;else{var f=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(f.isDisabled||!f.supportsFiber)c=!0;else{try{an=f.inject(c),Nt=f}catch{}c=!!f.checkDCE}}return c},n.isAlreadyRendering=function(){return!1},n.observeVisibleRects=function(c,f,v,_){if(!yt)throw Error(a(363));c=M0(c,f);var T=Gt(c,v,_).disconnect;return{disconnect:function(){T()}}},n.registerMutableSourceForHydration=function(c,f){var v=f._getVersion;v=v(f._source),c.mutableSourceEagerHydrationData==null?c.mutableSourceEagerHydrationData=[f,v]:c.mutableSourceEagerHydrationData.push(f,v)},n.runWithPriority=function(c,f){var v=Mt;try{return Mt=c,f()}finally{Mt=v}},n.shouldError=function(){return null},n.shouldSuspend=function(){return!1},n.updateContainer=function(c,f,v,_){var T=f.current,R=hi(),V=Dr(T);return v=W0(v),f.context===null?f.context=v:f.pendingContext=v,f=cs(R,V),f.payload={element:c},_=_===void 0?null:_,_!==null&&(f.callback=_),c=Gs(T,f,V),c!==null&&(To(c,T,V,R),Mh(c,T,V)),V},n};(function(e){e.exports=vwe})(fH);const ywe=Y8(fH.exports);var x_={exports:{}},Lh={};/** + * @license React + * react-reconciler-constants.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */Lh.ConcurrentRoot=1;Lh.ContinuousEventPriority=4;Lh.DefaultEventPriority=16;Lh.DiscreteEventPriority=1;Lh.IdleEventPriority=536870912;Lh.LegacyRoot=0;(function(e){e.exports=Lh})(x_);const QA={children:!0,ref:!0,key:!0,style:!0,forwardedRef:!0,unstable_applyCache:!0,unstable_applyDrawHitFromCache:!0};let JA=!1,eI=!1;const b_=".react-konva-event",xwe=`ReactKonva: You have a Konva node with draggable = true and position defined but no onDragMove or onDragEnd events are handled. +Position of a node will be changed during drag&drop, so you should update state of the react app as well. +Consider to add onDragMove or onDragEnd events. +For more info see: https://github.com/konvajs/react-konva/issues/256 +`,bwe=`ReactKonva: You are using "zIndex" attribute for a Konva node. +react-konva may get confused with ordering. Just define correct order of elements in your render function of a component. +For more info see: https://github.com/konvajs/react-konva/issues/194 +`,Swe={};function Cx(e,t,n=Swe){if(!JA&&"zIndex"in t&&(console.warn(bwe),JA=!0),!eI&&t.draggable){var r=t.x!==void 0||t.y!==void 0,i=t.onDragEnd||t.onDragMove;r&&!i&&(console.warn(xwe),eI=!0)}for(var o in n)if(!QA[o]){var a=o.slice(0,2)==="on",s=n[o]!==t[o];if(a&&s){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),e.off(l,n[o])}var d=!t.hasOwnProperty(o);d&&e.setAttr(o,void 0)}var p=t._useStrictMode,g={},m=!1;const y={};for(var o in t)if(!QA[o]){var a=o.slice(0,2)==="on",b=n[o]!==t[o];if(a&&b){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),t[o]&&(y[l]=t[o])}!a&&(t[o]!==n[o]||p&&t[o]!==e.getAttr(o))&&(m=!0,g[o]=t[o])}m&&(e.setAttrs(g),Ad(e));for(var l in y)e.on(l+b_,y[l])}function Ad(e){if(!lt.autoDrawEnabled){var t=e.getLayer()||e.getStage();t&&t.batchDraw()}}const hH={},wwe={};hh.Node.prototype._applyProps=Cx;function Cwe(e,t){if(typeof t=="string"){console.error(`Do not use plain text as child of Konva.Node. You are using text: ${t}`);return}e.add(t),Ad(e)}function _we(e,t,n){let r=hh[e];r||(console.error(`Konva has no node with the type ${e}. Group will be used instead. If you use minimal version of react-konva, just import required nodes into Konva: "import "konva/lib/shapes/${e}" If you want to render DOM elements as part of canvas tree take a look into this demo: https://konvajs.github.io/docs/react/DOM_Portal.html`),r=hh.Group);const i={},o={};for(var a in t){var s=a.slice(0,2)==="on";s?o[a]=t[a]:i[a]=t[a]}const l=new r(i);return Cx(l,o),l}function kwe(e,t,n){console.error(`Text components are not supported for now in ReactKonva. Your text is: "${e}"`)}function Ewe(e,t,n){return!1}function Pwe(e){return e}function Twe(){return null}function Lwe(){return null}function Awe(e,t,n,r){return wwe}function Iwe(){}function Mwe(e){}function Rwe(e,t){return!1}function Owe(){return hH}function Nwe(){return hH}const Dwe=setTimeout,zwe=clearTimeout,Fwe=-1;function Bwe(e,t){return!1}const $we=!1,Hwe=!0,Wwe=!0;function Vwe(e,t){t.parent===e?t.moveToTop():e.add(t),Ad(e)}function Uwe(e,t){t.parent===e?t.moveToTop():e.add(t),Ad(e)}function pH(e,t,n){t._remove(),e.add(t),t.setZIndex(n.getZIndex()),Ad(e)}function Gwe(e,t,n){pH(e,t,n)}function jwe(e,t){t.destroy(),t.off(b_),Ad(e)}function qwe(e,t){t.destroy(),t.off(b_),Ad(e)}function Kwe(e,t,n){console.error(`Text components are not yet supported in ReactKonva. You text is: "${n}"`)}function Zwe(e,t,n){}function Ywe(e,t,n,r,i){Cx(e,i,r)}function Xwe(e){e.hide(),Ad(e)}function Qwe(e){}function Jwe(e,t){(t.visible==null||t.visible)&&e.show()}function e6e(e,t){}function t6e(e){}function n6e(){}const r6e=()=>x_.exports.DefaultEventPriority,i6e=Object.freeze(Object.defineProperty({__proto__:null,appendInitialChild:Cwe,createInstance:_we,createTextInstance:kwe,finalizeInitialChildren:Ewe,getPublicInstance:Pwe,prepareForCommit:Twe,preparePortalMount:Lwe,prepareUpdate:Awe,resetAfterCommit:Iwe,resetTextContent:Mwe,shouldDeprioritizeSubtree:Rwe,getRootHostContext:Owe,getChildHostContext:Nwe,scheduleTimeout:Dwe,cancelTimeout:zwe,noTimeout:Fwe,shouldSetTextContent:Bwe,isPrimaryRenderer:$we,warnsIfNotActing:Hwe,supportsMutation:Wwe,appendChild:Vwe,appendChildToContainer:Uwe,insertBefore:pH,insertInContainerBefore:Gwe,removeChild:jwe,removeChildFromContainer:qwe,commitTextUpdate:Kwe,commitMount:Zwe,commitUpdate:Ywe,hideInstance:Xwe,hideTextInstance:Qwe,unhideInstance:Jwe,unhideTextInstance:e6e,clearContainer:t6e,detachDeletedInstance:n6e,getCurrentEventPriority:r6e,now:Zp.exports.unstable_now,idlePriority:Zp.exports.unstable_IdlePriority,run:Zp.exports.unstable_runWithPriority},Symbol.toStringTag,{value:"Module"}));var o6e=Object.defineProperty,a6e=Object.defineProperties,s6e=Object.getOwnPropertyDescriptors,tI=Object.getOwnPropertySymbols,l6e=Object.prototype.hasOwnProperty,u6e=Object.prototype.propertyIsEnumerable,nI=(e,t,n)=>t in e?o6e(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,rI=(e,t)=>{for(var n in t||(t={}))l6e.call(t,n)&&nI(e,n,t[n]);if(tI)for(var n of tI(t))u6e.call(t,n)&&nI(e,n,t[n]);return e},c6e=(e,t)=>a6e(e,s6e(t));function S_(e,t,n){if(!e)return;if(n(e)===!0)return e;let r=t?e.return:e.child;for(;r;){const i=S_(r,t,n);if(i)return i;r=t?null:r.sibling}}function gH(e){try{return Object.defineProperties(e,{_currentRenderer:{get(){return null},set(){}},_currentRenderer2:{get(){return null},set(){}}})}catch{return e}}const w_=gH(C.exports.createContext(null));class mH extends C.exports.Component{render(){return S(w_.Provider,{value:this._reactInternals,children:this.props.children})}}const{ReactCurrentOwner:d6e,ReactCurrentDispatcher:f6e}=C.exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function h6e(){const e=C.exports.useContext(w_);if(!e)throw new Error("its-fine: useFiber must be called within a !");const t=C.exports.useId();return C.exports.useMemo(()=>{var r;return(r=d6e.current)!=null?r:S_(e,!1,i=>{let o=i.memoizedState;for(;o;){if(o.memoizedState===t)return!0;o=o.next}})},[e,t])}const hg=[],iI=new WeakMap;function p6e(){var e;const t=h6e();hg.splice(0,hg.length),S_(t,!0,n=>{var r;const i=(r=n.type)==null?void 0:r._context;i&&i!==w_&&hg.push(gH(i))});for(const n of hg){const r=(e=f6e.current)==null?void 0:e.readContext(n);iI.set(n,r)}return C.exports.useMemo(()=>hg.reduce((n,r)=>i=>C.exports.createElement(n,null,C.exports.createElement(r.Provider,c6e(rI({},i),{value:iI.get(r)}))),n=>S(mH,{...rI({},n)})),[])}function g6e(e){const t=le.useRef();return le.useLayoutEffect(()=>{t.current=e}),t.current}const m6e=e=>{const t=le.useRef(),n=le.useRef(),r=le.useRef(),i=g6e(e),o=p6e(),a=s=>{const{forwardedRef:l}=e;!l||(typeof l=="function"?l(s):l.current=s)};return le.useLayoutEffect(()=>(n.current=new hh.Stage({width:e.width,height:e.height,container:t.current}),a(n.current),r.current=Ig.createContainer(n.current,x_.exports.LegacyRoot,!1,null),Ig.updateContainer(S(o,{children:e.children}),r.current),()=>{!hh.isBrowser||(a(null),Ig.updateContainer(null,r.current,null),n.current.destroy())}),[]),le.useLayoutEffect(()=>{a(n.current),Cx(n.current,e,i),Ig.updateContainer(S(o,{children:e.children}),r.current,null)}),S("div",{ref:t,accessKey:e.accessKey,className:e.className,role:e.role,style:e.style,tabIndex:e.tabIndex,title:e.title})},WS="Layer",v6e="Group",L8="Rect",A8="Circle",y6e="Line",VS="Image",x6e="Transformer",Ig=ywe(i6e);Ig.injectIntoDevTools({findHostInstanceByFiber:()=>null,bundleType:0,version:le.version,rendererPackageName:"react-konva"});const b6e=le.forwardRef((e,t)=>S(mH,{children:S(m6e,{...e,forwardedRef:t})})),S6e=e=>{const{r:t,g:n,b:r,a:i}=e;return`rgba(${t}, ${n}, ${r}, ${i})`},vH=e=>{const{r:t,g:n,b:r}=e;return`rgba(${t}, ${n}, ${r})`},w6e=Pt(e=>e.inpainting,e=>{const{lines:t,maskColor:n}=e;return{lines:t,maskColorString:vH(n)}});Pt([e=>e.inpainting,e=>e.options,Tr],(e,t,n)=>{const{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,lines:d,pastLines:p,futureLines:g,shouldShowBoundingBoxFill:m}=e,{showDualDisplay:y}=t;return{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,canUndo:p.length>0,canRedo:g.length>0,isMaskEmpty:d.length===0,activeTabName:n,showDualDisplay:y,shouldShowBoundingBoxFill:m}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});const C6e=Pt(e=>e.inpainting,e=>{const{tool:t,brushSize:n,maskColor:r,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y,isTransformingBoundingBox:b,isMouseOverBoundingBox:w,isMovingBoundingBox:P}=e;let E="";return b?E=void 0:P||w?E="move":o?E="none":E="default",{tool:t,brushSize:n,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,maskColor:r,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y,isTransformingBoundingBox:b,isModifyingBoundingBox:b||P,stageCursor:E,isMouseOverBoundingBox:w}},{memoizeOptions:{resultEqualityCheck:(e,t)=>{const{imageToInpaint:n,...r}=e,{imageToInpaint:i,...o}=t;return xt.isEqual(r,o)&&n==i}}}),_6e=()=>{const{lines:e,maskColorString:t}=Be(w6e);return S(Bn,{children:e.map((n,r)=>S(y6e,{points:n.points,stroke:t,strokeWidth:n.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,listening:!1,globalCompositeOperation:n.tool==="brush"?"source-over":"destination-out"},r))})},k6e=Pt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},brushSize:i,maskColor:o,tool:a,shouldShowBrush:s,isMovingBoundingBox:l,isTransformingBoundingBox:d}=e;return{cursorPosition:t,width:n,height:r,brushSize:i,maskColorString:vH(o),tool:a,shouldShowBrush:s,shouldDrawBrushPreview:!(l||d||!t)&&s}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),E6e=()=>{const{cursorPosition:e,width:t,height:n,brushSize:r,maskColorString:i,tool:o,shouldDrawBrushPreview:a}=Be(k6e);return a?S(A8,{x:e?e.x:t/2,y:e?e.y:n/2,radius:r/2,fill:i,listening:!1,globalCompositeOperation:o==="eraser"?"destination-out":"source-over"}):null},P6e=Pt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},brushSize:i,tool:o,shouldShowBrush:a,isMovingBoundingBox:s,isTransformingBoundingBox:l,stageScale:d}=e;return{cursorPosition:t,width:n,height:r,brushSize:i,tool:o,strokeWidth:1/d,radius:1/d,shouldDrawBrushPreview:!(s||l||!t)&&a}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),T6e=()=>{const{cursorPosition:e,width:t,height:n,brushSize:r,shouldDrawBrushPreview:i,strokeWidth:o,radius:a}=Be(P6e);return i?oe(Bn,{children:[S(A8,{x:e?e.x:t/2,y:e?e.y:n/2,radius:r/2,stroke:"rgba(0,0,0,1)",strokeWidth:o,strokeEnabled:!0,listening:!1}),S(A8,{x:e?e.x:t/2,y:e?e.y:n/2,radius:a,fill:"rgba(0,0,0,1)",listening:!1})]}):null},L6e=()=>{const{tool:e,lines:t,cursorPosition:n,brushSize:r,canvasDimensions:{width:i,height:o},maskColor:a,shouldInvertMask:s,shouldShowMask:l,shouldShowBrushPreview:d,shouldShowCheckboardTransparency:p,imageToInpaint:g,shouldShowBrush:m,shouldShowBoundingBoxFill:y,shouldLockBoundingBox:b,stageScale:w,pastLines:P,futureLines:E,needsCache:k,isDrawing:L,isTransformingBoundingBox:M,isMovingBoundingBox:N,shouldShowBoundingBox:F}=Be(B=>B.inpainting);return C.exports.useLayoutEffect(()=>{!yl.current||yl.current.cache({x:0,y:0,width:i,height:o})},[t,n,i,o,e,r,a,s,l,d,p,g,m,y,F,b,w,P,E,k,L,M,N]),C.exports.useEffect(()=>{const B=window.setTimeout(()=>{!yl.current||yl.current.cache({x:0,y:0,width:i,height:o})},0);return()=>{window.clearTimeout(B)}}),null},Ly=e=>{const t=e.getPointerPosition(),n=e.getAbsoluteTransform().copy();if(!t||!n)return;const r=n.invert().point(t);return{x:Math.floor(r.x),y:Math.floor(r.y)}},A6e=4,yH=Pt(e=>e.inpainting,e=>{const{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFill:r,canvasDimensions:i,stageScale:o,imageToInpaint:a,shouldLockBoundingBox:s,isDrawing:l,isTransformingBoundingBox:d,isMovingBoundingBox:p,isMouseOverBoundingBox:g,isSpacebarHeld:m}=e;return{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFillString:S6e(r),canvasDimensions:i,stageScale:o,imageToInpaint:a,dash:A6e/o,strokeWidth:1/o,shouldLockBoundingBox:s,isDrawing:l,isTransformingBoundingBox:d,isMouseOverBoundingBox:g,isMovingBoundingBox:p,isSpacebarHeld:m}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),I6e=()=>{const{boundingBoxCoordinate:e,boundingBoxDimensions:t,boundingBoxPreviewFillString:n,canvasDimensions:r}=Be(yH);return oe(v6e,{children:[S(L8,{x:0,y:0,height:r.height,width:r.width,fill:n}),S(L8,{x:e.x,y:e.y,width:t.width,height:t.height,fill:"rgb(255,255,255)",listening:!1,globalCompositeOperation:"destination-out"})]})},M6e=()=>{const e=it(),{boundingBoxCoordinate:t,boundingBoxDimensions:n,stageScale:r,imageToInpaint:i,shouldLockBoundingBox:o,isDrawing:a,isTransformingBoundingBox:s,isMovingBoundingBox:l,isMouseOverBoundingBox:d,isSpacebarHeld:p}=Be(yH),g=C.exports.useRef(null),m=C.exports.useRef(null);C.exports.useEffect(()=>{!g.current||!m.current||(g.current.nodes([m.current]),g.current.getLayer()?.batchDraw())},[o]);const y=64*r,b=C.exports.useCallback(z=>{e(rA({x:Math.floor(z.target.x()),y:Math.floor(z.target.y())}))},[e]),w=C.exports.useCallback(z=>{if(!i)return t;const{x:j,y:q}=z,Y=i.width-n.width,ge=i.height-n.height,ce=Math.floor(xt.clamp(j,0,Y*r)),ve=Math.floor(xt.clamp(q,0,ge*r));return{x:ce,y:ve}},[t,n,i,r]),P=C.exports.useCallback(()=>{if(!m.current)return;const z=m.current,j=z.scaleX(),q=z.scaleY(),Y=Math.round(z.width()*j),ge=Math.round(z.height()*q),ce=Math.round(z.x()),ve=Math.round(z.y());e(Eg({width:Y,height:ge})),e(rA({x:ce,y:ve})),z.scaleX(1),z.scaleY(1)},[e]),E=C.exports.useCallback((z,j,q)=>{const Y=z.x%y,ge=z.y%y,ce=JL(j.x,y)+Y,ve=JL(j.y,y)+ge,we=Math.abs(j.x-ce),be=Math.abs(j.y-ve),J=we!i||j.width+j.x>i.width*r||j.height+j.y>i.height*r||j.x<0||j.y<0?z:j,[i,r]),L=z=>{z.cancelBubble=!0,z.evt.stopImmediatePropagation(),console.log("Started transform"),e(PS(!0))},M=z=>{e(PS(!1)),e(kp(!1))},N=z=>{z.cancelBubble=!0,z.evt.stopImmediatePropagation(),e(iA(!0))},F=z=>{e(PS(!1)),e(iA(!1)),e(kp(!1))},B=(z,j)=>{z.rect(0,0,i?.width,i?.height),z.fillShape(j)};return oe(Bn,{children:[S(L8,{x:t.x,y:t.y,width:n.width,height:n.height,ref:m,stroke:d?"rgba(255,255,255,0.3)":"white",strokeWidth:Math.floor((d?8:1)/r),fillEnabled:p,hitFunc:p?B:void 0,hitStrokeWidth:Math.floor(13/r),listening:!a&&!o,onMouseOver:()=>{e(kp(!0))},onMouseOut:()=>{!s&&!l&&e(kp(!1))},onMouseDown:N,onMouseUp:F,draggable:!0,onDragMove:b,dragBoundFunc:w,onTransform:P,onDragEnd:F,onTransformEnd:M}),S(x6e,{ref:g,anchorCornerRadius:3,anchorFill:"rgba(212,216,234,1)",anchorSize:15,anchorStroke:"rgb(42,42,42)",borderDash:[4,4],borderStroke:"black",rotateEnabled:!1,borderEnabled:!0,flipEnabled:!1,ignoreStroke:!0,keepRatio:!1,listening:!a&&!o,onMouseDown:L,onMouseUp:M,enabledAnchors:o?[]:void 0,boundBoxFunc:k,anchorDragBoundFunc:E,onDragEnd:F,onTransformEnd:M,onMouseOver:()=>{e(kp(!0))},onMouseOut:()=>{!s&&!l&&e(kp(!1))}})]})},R6e=Pt([e=>e.options,e=>e.inpainting,Tr],(e,t,n)=>{const{shouldShowMask:r,cursorPosition:i,shouldLockBoundingBox:o,shouldShowBoundingBox:a}=t;return{activeTabName:n,shouldShowMask:r,isCursorOnCanvas:Boolean(i),shouldLockBoundingBox:o,shouldShowBoundingBox:a}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),O6e=()=>{const e=it(),{shouldShowMask:t,activeTabName:n,isCursorOnCanvas:r,shouldLockBoundingBox:i,shouldShowBoundingBox:o}=Be(R6e),a=C.exports.useRef(!1),s=C.exports.useRef(null);return zt("shift+q",l=>{l.preventDefault(),e(z3e())},{enabled:n==="inpainting"&&t},[n,t]),C.exports.useEffect(()=>{const l=d=>{if(!(!["x","q"].includes(d.key)||n!=="inpainting"||!t)){if(!r){s.current||(s.current=d),a.current=!1;return}if(d.stopPropagation(),d.preventDefault(),!d.repeat){if(s.current||(a.current=!0,s.current=d),!a.current&&d.type==="keyup"){a.current=!0,s.current=d;return}switch(d.key){case"x":{e(M3e());break}case"q":{if(!t||!o)break;e(F3e(d.type==="keydown")),e(n_(d.type!=="keydown"));break}}s.current=d,a.current=!0}}};return document.addEventListener("keydown",l),document.addEventListener("keyup",l),()=>{document.removeEventListener("keydown",l),document.removeEventListener("keyup",l)}},[e,n,t,r,i,o]),null};let cl,yl,z4;const N6e=()=>{const e=it(),{tool:t,brushSize:n,shouldInvertMask:r,shouldShowMask:i,shouldShowCheckboardTransparency:o,maskColor:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,isModifyingBoundingBox:m,stageCursor:y}=Be(C6e),b=kd();cl=C.exports.useRef(null),yl=C.exports.useRef(null),z4=C.exports.useRef(null);const w=C.exports.useRef({x:0,y:0}),P=C.exports.useRef(!1),[E,k]=C.exports.useState(null);C.exports.useEffect(()=>{if(s){const z=new Image;z.onload=()=>{z4.current=z,k(z)},z.onerror=()=>{b({title:"Unable to Load Image",description:`Image ${s.url} failed to load`,status:"error",isClosable:!0}),e(WB())},z.src=s.url}else k(null)},[s,e,l,b]);const L=C.exports.useCallback(()=>{if(!cl.current)return;const z=Ly(cl.current);!z||!yl.current||m||(e(ly(!0)),e(eA({tool:t,strokeWidth:n/2,points:[z.x,z.y]})))},[e,n,t,m]),M=C.exports.useCallback(()=>{if(!cl.current)return;const z=Ly(cl.current);!z||(e(nA(z)),yl.current&&(w.current=z,!(!g||m)&&(P.current=!0,e(tA([z.x,z.y])))))},[e,g,m]),N=C.exports.useCallback(()=>{if(!P.current&&g&&cl.current){const z=Ly(cl.current);if(!z||!yl.current||m)return;e(tA([z.x,z.y]))}else P.current=!1;e(ly(!1))},[e,g,m]),F=C.exports.useCallback(()=>{e(nA(null)),e(ly(!1))},[e]),B=C.exports.useCallback(z=>{if(z.evt.buttons===1){if(!cl.current)return;const j=Ly(cl.current);if(!j||!yl.current||m)return;e(ly(!0)),e(eA({tool:t,strokeWidth:n/2,points:[j.x,j.y]}))}},[e,n,t,m]);return S("div",{className:"inpainting-canvas-container",children:oe("div",{className:"inpainting-canvas-wrapper",children:[E&&oe(b6e,{width:Math.floor(E.width*l),height:Math.floor(E.height*l),scale:{x:l,y:l},onMouseDown:L,onMouseMove:M,onMouseEnter:B,onMouseUp:N,onMouseOut:F,onMouseLeave:F,style:{...y?{cursor:y}:{}},className:"inpainting-canvas-stage checkerboard",ref:cl,children:[!r&&!o&&S(WS,{name:"image-layer",listening:!1,children:S(VS,{listening:!1,image:E})}),i&&oe(Bn,{children:[oe(WS,{name:"mask-layer",listening:!1,opacity:o||r?1:a.a,ref:yl,children:[S(_6e,{}),S(E6e,{}),r&&S(VS,{image:E,listening:!1,globalCompositeOperation:"source-in"}),!r&&o&&S(VS,{image:E,listening:!1,globalCompositeOperation:"source-out"})]}),oe(WS,{children:[p&&d&&S(I6e,{}),d&&S(M6e,{}),S(T6e,{})]})]})]}),S(L6e,{}),S(O6e,{})]})})},D6e=()=>{const e=it(),{needsCache:t,imageToInpaint:n}=Be(i=>i.inpainting),r=C.exports.useRef(null);return C.exports.useLayoutEffect(()=>{window.setTimeout(()=>{if(!r.current||!n)return;const i=r.current.clientWidth,o=r.current.clientHeight,a=Math.min(1,Math.min(i/n.width,o/n.height));e(I3e(a))},0)},[e,n,t]),S("div",{ref:r,className:"inpainting-canvas-area",children:S(xv,{thickness:"2px",speed:"1s",size:"xl"})})};function _x(){return(_x=Object.assign||function(e){for(var t=1;t=0||(i[n]=e[n]);return i}function I8(e){var t=C.exports.useRef(e),n=C.exports.useRef(function(r){t.current&&t.current(r)});return t.current=e,n.current}var z1=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e0:P.buttons>0)&&i.current?o(oI(i.current,P,s.current)):w(!1)},b=function(){return w(!1)};function w(P){var E=l.current,k=M8(i.current),L=P?k.addEventListener:k.removeEventListener;L(E?"touchmove":"mousemove",y),L(E?"touchend":"mouseup",b)}return[function(P){var E=P.nativeEvent,k=i.current;if(k&&(aI(E),!function(M,N){return N&&!lm(M)}(E,l.current)&&k)){if(lm(E)){l.current=!0;var L=E.changedTouches||[];L.length&&(s.current=L[0].identifier)}k.focus(),o(oI(k,E,s.current)),w(!0)}},function(P){var E=P.which||P.keyCode;E<37||E>40||(P.preventDefault(),a({left:E===39?.05:E===37?-.05:0,top:E===40?.05:E===38?-.05:0}))},w]},[a,o]),p=d[0],g=d[1],m=d[2];return C.exports.useEffect(function(){return m},[m]),S("div",{..._x({},r,{onTouchStart:p,onMouseDown:p,className:"react-colorful__interactive",ref:i,onKeyDown:g,tabIndex:0,role:"slider"})})}),kx=function(e){return e.filter(Boolean).join(" ")},__=function(e){var t=e.color,n=e.left,r=e.top,i=r===void 0?.5:r,o=kx(["react-colorful__pointer",e.className]);return S("div",{className:o,style:{top:100*i+"%",left:100*n+"%"},children:S("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}})})},mo=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},bH=function(e){var t=e.s,n=e.v,r=e.a,i=(200-t)*n/100;return{h:mo(e.h),s:mo(i>0&&i<200?t*n/100/(i<=100?i:200-i)*100:0),l:mo(i/2),a:mo(r,2)}},R8=function(e){var t=bH(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},US=function(e){var t=bH(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},z6e=function(e){var t=e.h,n=e.s,r=e.v,i=e.a;t=t/360*6,n/=100,r/=100;var o=Math.floor(t),a=r*(1-n),s=r*(1-(t-o)*n),l=r*(1-(1-t+o)*n),d=o%6;return{r:mo(255*[r,s,a,a,l,r][d]),g:mo(255*[l,r,r,s,a,a][d]),b:mo(255*[a,a,l,r,r,s][d]),a:mo(i,2)}},F6e=function(e){var t=e.r,n=e.g,r=e.b,i=e.a,o=Math.max(t,n,r),a=o-Math.min(t,n,r),s=a?o===t?(n-r)/a:o===n?2+(r-t)/a:4+(t-n)/a:0;return{h:mo(60*(s<0?s+6:s)),s:mo(o?a/o*100:0),v:mo(o/255*100),a:i}},B6e=le.memo(function(e){var t=e.hue,n=e.onChange,r=kx(["react-colorful__hue",e.className]);return le.createElement("div",{className:r},le.createElement(C_,{onMove:function(i){n({h:360*i.left})},onKey:function(i){n({h:z1(t+360*i.left,0,360)})},"aria-label":"Hue","aria-valuenow":mo(t),"aria-valuemax":"360","aria-valuemin":"0"},le.createElement(__,{className:"react-colorful__hue-pointer",left:t/360,color:R8({h:t,s:100,v:100,a:1})})))}),$6e=le.memo(function(e){var t=e.hsva,n=e.onChange,r={backgroundColor:R8({h:t.h,s:100,v:100,a:1})};return le.createElement("div",{className:"react-colorful__saturation",style:r},le.createElement(C_,{onMove:function(i){n({s:100*i.left,v:100-100*i.top})},onKey:function(i){n({s:z1(t.s+100*i.left,0,100),v:z1(t.v-100*i.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+mo(t.s)+"%, Brightness "+mo(t.v)+"%"},le.createElement(__,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:R8(t)})))}),SH=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0};function H6e(e,t,n){var r=I8(n),i=C.exports.useState(function(){return e.toHsva(t)}),o=i[0],a=i[1],s=C.exports.useRef({color:t,hsva:o});C.exports.useEffect(function(){if(!e.equal(t,s.current.color)){var d=e.toHsva(t);s.current={hsva:d,color:t},a(d)}},[t,e]),C.exports.useEffect(function(){var d;SH(o,s.current.hsva)||e.equal(d=e.fromHsva(o),s.current.color)||(s.current={hsva:o,color:d},r(d))},[o,e,r]);var l=C.exports.useCallback(function(d){a(function(p){return Object.assign({},p,d)})},[]);return[o,l]}var W6e=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,V6e=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},sI=new Map,U6e=function(e){W6e(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!sI.has(t)){var n=t.createElement("style");n.innerHTML=`.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,sI.set(t,n);var r=V6e();r&&n.setAttribute("nonce",r),t.head.appendChild(n)}},[])},G6e=function(e){var t=e.className,n=e.hsva,r=e.onChange,i={backgroundImage:"linear-gradient(90deg, "+US(Object.assign({},n,{a:0}))+", "+US(Object.assign({},n,{a:1}))+")"},o=kx(["react-colorful__alpha",t]),a=mo(100*n.a);return le.createElement("div",{className:o},S("div",{className:"react-colorful__alpha-gradient",style:i}),le.createElement(C_,{onMove:function(s){r({a:s.left})},onKey:function(s){r({a:z1(n.a+s.left)})},"aria-label":"Alpha","aria-valuetext":a+"%","aria-valuenow":a,"aria-valuemin":"0","aria-valuemax":"100"},le.createElement(__,{className:"react-colorful__alpha-pointer",left:n.a,color:US(n)})))},j6e=function(e){var t=e.className,n=e.colorModel,r=e.color,i=r===void 0?n.defaultColor:r,o=e.onChange,a=xH(e,["className","colorModel","color","onChange"]),s=C.exports.useRef(null);U6e(s);var l=H6e(n,i,o),d=l[0],p=l[1],g=kx(["react-colorful",t]);return le.createElement("div",_x({},a,{ref:s,className:g}),S($6e,{hsva:d,onChange:p}),S(B6e,{hue:d.h,onChange:p}),le.createElement(G6e,{hsva:d,onChange:p,className:"react-colorful__last-control"}))},q6e={defaultColor:{r:0,g:0,b:0,a:1},toHsva:F6e,fromHsva:z6e,equal:SH},K6e=function(e){return le.createElement(j6e,_x({},e,{colorModel:q6e}))};const Z6e=e=>{const{styleClass:t,...n}=e;return S(K6e,{className:`invokeai__color-picker ${t}`,...n})},Y6e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{shouldShowMask:n,maskColor:r}=e;return{shouldShowMask:n,maskColor:r,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function X6e(){const{shouldShowMask:e,maskColor:t,activeTabName:n}=Be(Y6e),r=it(),i=o=>{r(P3e(o))};return zt("shift+[",o=>{o.preventDefault(),i({...t,a:Math.max(t.a-.05,0)})},{enabled:n==="inpainting"&&e},[n,e,t.a]),zt("shift+]",o=>{o.preventDefault(),i({...t,a:Math.min(t.a+.05,100)})},{enabled:n==="inpainting"&&e},[n,e,t.a]),S(oh,{trigger:"hover",styleClass:"inpainting-color-picker",triggerComponent:S(Yt,{"aria-label":"Mask Color",icon:S(qye,{}),isDisabled:!e,cursor:"pointer"}),children:S(Z6e,{color:t,onChange:i})})}const Q6e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{tool:n,brushSize:r,shouldShowMask:i}=e;return{tool:n,brushSize:r,shouldShowMask:i,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function J6e(){const e=it(),{tool:t,brushSize:n,shouldShowMask:r,activeTabName:i}=Be(Q6e),o=()=>e(HB("brush")),a=()=>{e(ES(!0))},s=()=>{e(ES(!1))},l=d=>{e(ES(!0)),e(_3e(d))};return zt("[",d=>{d.preventDefault(),n-5>0?l(n-5):l(1)},{enabled:i==="inpainting"&&r},[i,r,n]),zt("]",d=>{d.preventDefault(),l(n+5)},{enabled:i==="inpainting"&&r},[i,r,n]),zt("b",d=>{d.preventDefault(),o()},{enabled:i==="inpainting"&&r},[i,r]),S(oh,{trigger:"hover",onOpen:a,onClose:s,triggerComponent:S(Yt,{"aria-label":"Brush (B)",tooltip:"Brush (B)",icon:S(jye,{}),onClick:o,"data-selected":t==="brush",isDisabled:!r}),children:oe("div",{className:"inpainting-brush-options",children:[S(f_,{label:"Brush Size",value:n,onChange:l,min:1,max:200,width:"100px",focusThumbOnChange:!1,isDisabled:!r}),S(Uo,{value:n,onChange:l,width:"80px",min:1,max:999,isDisabled:!r}),S(X6e,{})]})})}const e8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{tool:n,shouldShowMask:r}=e;return{tool:n,shouldShowMask:r,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function t8e(){const{tool:e,shouldShowMask:t,activeTabName:n}=Be(e8e),r=it(),i=()=>r(HB("eraser"));return zt("e",o=>{o.preventDefault(),!(n!=="inpainting"||!t)&&i()},{enabled:n==="inpainting"&&t},[n,t]),S(Yt,{"aria-label":"Eraser (E)",tooltip:"Eraser (E)",icon:S(Fye,{}),onClick:i,"data-selected":e==="eraser",isDisabled:!t})}const n8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{pastLines:n,shouldShowMask:r}=e;return{canUndo:n.length>0,shouldShowMask:r,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function r8e(){const e=it(),{canUndo:t,shouldShowMask:n,activeTabName:r}=Be(n8e),i=()=>e(L3e());return zt("cmd+z, control+z",o=>{o.preventDefault(),i()},{enabled:r==="inpainting"&&n&&t},[r,n,t]),S(Yt,{"aria-label":"Undo",tooltip:"Undo",icon:S(i3e,{}),onClick:i,isDisabled:!t||!n})}const i8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{futureLines:n,shouldShowMask:r}=e;return{canRedo:n.length>0,shouldShowMask:r,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function o8e(){const e=it(),{canRedo:t,shouldShowMask:n,activeTabName:r}=Be(i8e),i=()=>e(A3e());return zt("cmd+shift+z, control+shift+z, control+y, cmd+y",o=>{o.preventDefault(),i()},{enabled:r==="inpainting"&&n&&t},[r,n,t]),S(Yt,{"aria-label":"Redo",tooltip:"Redo",icon:S(Qye,{}),onClick:i,isDisabled:!t||!n})}const a8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{shouldShowMask:n,lines:r}=e;return{shouldShowMask:n,activeTabName:t,isMaskEmpty:r.length===0}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function s8e(){const{shouldShowMask:e,activeTabName:t,isMaskEmpty:n}=Be(a8e),r=it(),i=kd(),o=()=>{r(T3e())};return zt("shift+c",a=>{a.preventDefault(),o(),i({title:"Mask Cleared",status:"success",duration:2500,isClosable:!0})},{enabled:t==="inpainting"&&e&&!n},[t,n,e]),S(Yt,{"aria-label":"Clear Mask (Shift+C)",tooltip:"Clear Mask (Shift+C)",icon:S(Zye,{size:20,style:{transform:"rotate(45deg)"}}),onClick:o,isDisabled:n||!e})}const l8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{shouldShowMask:n}=e;return{shouldShowMask:n,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function u8e(){const e=it(),{shouldShowMask:t,activeTabName:n}=Be(l8e),r=()=>e(E3e(!t));return zt("h",i=>{i.preventDefault(),r()},{enabled:n==="inpainting"},[n,t]),S(Yt,{"aria-label":"Hide Mask (H)",tooltip:"Hide Mask (H)","data-alert":!t,icon:t?S(R$,{size:22}):S(I$,{size:22}),onClick:r})}const c8e=Pt([e=>e.inpainting,Tr],(e,t)=>{const{shouldShowMask:n,shouldInvertMask:r}=e;return{shouldInvertMask:r,shouldShowMask:n,activeTabName:t}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}});function d8e(){const{shouldInvertMask:e,shouldShowMask:t,activeTabName:n}=Be(c8e),r=it(),i=()=>r(k3e(!e));return zt("shift+m",o=>{o.preventDefault(),i()},{enabled:n==="inpainting"&&t},[n,e,t]),S(Yt,{tooltip:"Invert Mask Display (Shift+M)","aria-label":"Invert Mask Display (Shift+M)","data-selected":e,icon:e?S(Sye,{size:22}):S(wye,{size:22}),onClick:i,isDisabled:!t})}const f8e=()=>{const e=it(),t=Be(n=>n.inpainting.shouldLockBoundingBox);return S(Yt,{"aria-label":"Lock Inpainting Box",tooltip:"Lock Inpainting Box",icon:t?S(Vye,{}):S(o3e,{}),"data-selected":t,onClick:()=>{e(n_(!t))}})},h8e=()=>{const e=it(),t=Be(n=>n.inpainting.shouldShowBoundingBox);return S(Yt,{"aria-label":"Hide Inpainting Box",tooltip:"Hide Inpainting Box",icon:S(s3e,{}),"data-alert":!t,onClick:()=>{e(VB(!t))}})},p8e=()=>oe("div",{className:"inpainting-settings",children:[oe(Zf,{isAttached:!0,children:[S(J6e,{}),S(t8e,{})]}),oe(Zf,{isAttached:!0,children:[S(u8e,{}),S(d8e,{}),S(f8e,{}),S(h8e,{})]}),oe(Zf,{isAttached:!0,children:[S(r8e,{}),S(o8e,{}),S(s8e,{})]}),S(Zf,{isAttached:!0,children:S(JB,{})})]}),g8e=Pt([e=>e.inpainting,e=>e.options],(e,t)=>{const{needsCache:n,imageToInpaint:r}=e,{showDualDisplay:i}=t;return{needsCache:n,showDualDisplay:i,imageToInpaint:r}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),m8e=()=>{const e=it(),{showDualDisplay:t,needsCache:n,imageToInpaint:r}=Be(g8e);return C.exports.useLayoutEffect(()=>{const o=xt.debounce(()=>e(Eu(!0)),250);return window.addEventListener("resize",o),()=>window.removeEventListener("resize",o)},[e]),oe("div",{className:t?"workarea-split-view":"workarea-single-view",children:[oe("div",{className:"workarea-split-view-left",children:[r?oe("div",{className:"inpainting-main-area",children:[S(p8e,{}),S("div",{className:"inpainting-canvas-area",children:n?S(D6e,{}):S(N6e,{})})]}):S(GB,{})," "]}),t&&S("div",{className:"workarea-split-view-right",children:S(o_,{})})]})};function v8e(){return S(h_,{optionsPanel:S(abe,{}),styleClass:"inpainting-workarea-overrides",children:S(m8e,{})})}function y8e(){const e=Be(n=>n.options.showAdvancedOptions),t={seed:{header:S(U7,{}),feature:go.SEED,options:S(G7,{})},variations:{header:S(q7,{}),feature:go.VARIATIONS,options:S(K7,{})},face_restore:{header:S(H7,{}),feature:go.FACE_CORRECTION,options:S(fx,{})},upscale:{header:S(j7,{}),feature:go.UPSCALE,options:S(hx,{})},other:{header:S(gB,{}),feature:go.OTHER,options:S(mB,{})}};return oe(r_,{children:[S(e_,{}),S(J7,{}),S(X7,{}),S(Z7,{}),e?S(Q7,{accordionInfo:t}):null]})}const x8e=()=>S("div",{className:"workarea-single-view",children:S("div",{className:"text-to-image-area",children:S(o_,{})})});function b8e(){return S(h_,{optionsPanel:S(y8e,{}),children:S(x8e,{})})}const Ff={txt2img:{title:S(I2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(b8e,{}),tooltip:"Text To Image"},img2img:{title:S(E2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(Zxe,{}),tooltip:"Image To Image"},inpainting:{title:S(P2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(v8e,{}),tooltip:"Inpainting"},outpainting:{title:S(L2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(_2e,{}),tooltip:"Outpainting"},nodes:{title:S(T2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(C2e,{}),tooltip:"Nodes"},postprocess:{title:S(A2e,{fill:"black",boxSize:"2.5rem"}),workarea:S(k2e,{}),tooltip:"Post Processing"}},Ex=xt.map(Ff,(e,t)=>t);[...Ex];function S8e(){const e=Be(i=>i.options.activeTab),t=it();zt("1",()=>{t(Wa(0))}),zt("2",()=>{t(Wa(1))}),zt("3",()=>{t(Wa(2)),t(Eu(!0))}),zt("4",()=>{t(Wa(3))}),zt("5",()=>{t(Wa(4))}),zt("6",()=>{t(Wa(5))});const n=()=>{const i=[];return Object.keys(Ff).forEach(o=>{i.push(S(Qi,{hasArrow:!0,label:Ff[o].tooltip,placement:"right",children:S(mF,{children:Ff[o].title})},o))}),i},r=()=>{const i=[];return Object.keys(Ff).forEach(o=>{i.push(S(pF,{className:"app-tabs-panel",children:Ff[o].workarea},o))}),i};return oe(hF,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:i=>{t(Wa(i)),t(Eu(!0))},children:[S("div",{className:"app-tabs-list",children:n()}),S(gF,{className:"app-tabs-panels",children:r()})]})}const wH={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,img2imgStrength:.75,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunFacetool:!1,facetoolStrength:.8,facetoolType:"gfpgan",codeformerFidelity:.75,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,showDualDisplay:!0,shouldShowOptionsPanel:!0,shouldPinOptionsPanel:!0,optionsPanelScrollPosition:0,shouldHoldOptionsPanelOpen:!1,shouldLoopback:!1},w8e=wH,CH=Q5({name:"options",initialState:w8e,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=d3(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setFacetoolStrength:(e,t)=>{e.facetoolStrength=t.payload},setCodeformerFidelity:(e,t)=>{e.codeformerFidelity=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,i={...e,[n]:r};return n==="seed"&&(i.shouldRandomizeSeed=!1),i},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllTextToImageParameters:(e,t)=>{const{sampler:n,prompt:r,seed:i,variations:o,steps:a,cfg_scale:s,threshold:l,perlin:d,seamless:p,hires_fix:g,width:m,height:y}=t.payload.image;o&&o.length>0?(e.seedWeights=T4(o),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),r&&(e.prompt=d3(r)),n&&(e.sampler=n),a&&(e.steps=a),s&&(e.cfgScale=s),l&&(e.threshold=l),typeof l>"u"&&(e.threshold=0),d&&(e.perlin=d),typeof d>"u"&&(e.perlin=0),typeof p=="boolean"&&(e.seamless=p),typeof g=="boolean"&&(e.hiresFix=g),m&&(e.width=m),y&&(e.height=y)},setAllImageToImageParameters:(e,t)=>{const{type:n,strength:r,fit:i,init_image_path:o,mask_image_path:a}=t.payload.image;n==="img2img"&&(o&&(e.initialImage=o),a&&(e.maskPath=a),r&&(e.img2imgStrength=r),typeof i=="boolean"&&(e.shouldFitToWidthHeight=i))},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:i,seed:o,variations:a,steps:s,cfg_scale:l,threshold:d,perlin:p,seamless:g,hires_fix:m,width:y,height:b,strength:w,fit:P,init_image_path:E,mask_image_path:k}=t.payload.image;n==="img2img"&&(E&&(e.initialImage=E),k&&(e.maskPath=k),w&&(e.img2imgStrength=w),typeof P=="boolean"&&(e.shouldFitToWidthHeight=P)),a&&a.length>0?(e.seedWeights=T4(a),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,o&&(e.seed=o,e.shouldRandomizeSeed=!1),i&&(e.prompt=d3(i)),r&&(e.sampler=r),s&&(e.steps=s),l&&(e.cfgScale=l),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),p&&(e.perlin=p),typeof p>"u"&&(e.perlin=0),typeof g=="boolean"&&(e.seamless=g),typeof m=="boolean"&&(e.hiresFix=m),y&&(e.width=y),b&&(e.height=b)},resetOptionsState:e=>({...e,...wH}),setShouldRunFacetool:(e,t)=>{e.shouldRunFacetool=t.payload},setFacetoolType:(e,t)=>{e.facetoolType=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{typeof t.payload=="number"?e.activeTab=t.payload:e.activeTab=Ex.indexOf(t.payload)},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShowDualDisplay:(e,t)=>{e.showDualDisplay=t.payload},setInitialImage:(e,t)=>{e.initialImage=t.payload},clearInitialImage:e=>{e.initialImage=void 0},setShouldPinOptionsPanel:(e,t)=>{e.shouldPinOptionsPanel=t.payload},setShouldShowOptionsPanel:(e,t)=>{e.shouldShowOptionsPanel=t.payload},setOptionsPanelScrollPosition:(e,t)=>{e.optionsPanelScrollPosition=t.payload},setShouldHoldOptionsPanelOpen:(e,t)=>{e.shouldHoldOptionsPanelOpen=t.payload},setShouldLoopback:(e,t)=>{e.shouldLoopback=t.payload}}}),{setPrompt:Px,setIterations:C8e,setSteps:_H,setCfgScale:kH,setThreshold:_8e,setPerlin:k8e,setHeight:EH,setWidth:PH,setSampler:TH,setSeed:Rv,setSeamless:LH,setHiresFix:AH,setImg2imgStrength:IH,setFacetoolStrength:m3,setFacetoolType:v3,setCodeformerFidelity:MH,setUpscalingLevel:O8,setUpscalingStrength:N8,setMaskPath:D8,resetSeed:R7e,resetOptionsState:O7e,setShouldFitToWidthHeight:RH,setParameter:N7e,setShouldGenerateVariations:E8e,setSeedWeights:OH,setVariationAmount:P8e,setAllParameters:T8e,setShouldRunFacetool:L8e,setShouldRunESRGAN:A8e,setShouldRandomizeSeed:I8e,setShowAdvancedOptions:M8e,setActiveTab:Wa,setShouldShowImageDetails:R8e,setAllTextToImageParameters:O8e,setAllImageToImageParameters:N8e,setShowDualDisplay:D8e,setInitialImage:tv,clearInitialImage:NH,setShouldShowOptionsPanel:z8,setShouldPinOptionsPanel:z8e,setOptionsPanelScrollPosition:F8e,setShouldHoldOptionsPanelOpen:B8e,setShouldLoopback:$8e}=CH.actions,H8e=CH.reducer,Fl=Object.create(null);Fl.open="0";Fl.close="1";Fl.ping="2";Fl.pong="3";Fl.message="4";Fl.upgrade="5";Fl.noop="6";const y3=Object.create(null);Object.keys(Fl).forEach(e=>{y3[Fl[e]]=e});const W8e={type:"error",data:"parser error"},V8e=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",U8e=typeof ArrayBuffer=="function",G8e=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,DH=({type:e,data:t},n,r)=>V8e&&t instanceof Blob?n?r(t):lI(t,r):U8e&&(t instanceof ArrayBuffer||G8e(t))?n?r(t):lI(new Blob([t]),r):r(Fl[e]+(t||"")),lI=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},uI="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Mg=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,i=0,o,a,s,l;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),p=new Uint8Array(d);for(r=0;r>4,p[i++]=(a&15)<<4|s>>2,p[i++]=(s&3)<<6|l&63;return d},q8e=typeof ArrayBuffer=="function",zH=(e,t)=>{if(typeof e!="string")return{type:"message",data:FH(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:K8e(e.substring(1),t)}:y3[n]?e.length>1?{type:y3[n],data:e.substring(1)}:{type:y3[n]}:W8e},K8e=(e,t)=>{if(q8e){const n=j8e(e);return FH(n,t)}else return{base64:!0,data:e}},FH=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},BH=String.fromCharCode(30),Z8e=(e,t)=>{const n=e.length,r=new Array(n);let i=0;e.forEach((o,a)=>{DH(o,!1,s=>{r[a]=s,++i===n&&t(r.join(BH))})})},Y8e=(e,t)=>{const n=e.split(BH),r=[];for(let i=0;itypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function HH(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const Q8e=setTimeout,J8e=clearTimeout;function Tx(e,t){t.useNativeTimers?(e.setTimeoutFn=Q8e.bind(Xc),e.clearTimeoutFn=J8e.bind(Xc)):(e.setTimeoutFn=setTimeout.bind(Xc),e.clearTimeoutFn=clearTimeout.bind(Xc))}const eCe=1.33;function tCe(e){return typeof e=="string"?nCe(e):Math.ceil((e.byteLength||e.size)*eCe)}function nCe(e){let t=0,n=0;for(let r=0,i=e.length;r=57344?n+=3:(r++,n+=4);return n}class rCe extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class WH extends Xr{constructor(t){super(),this.writable=!1,Tx(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new rCe(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=zH(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const VH="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),F8=64,iCe={};let cI=0,Ay=0,dI;function fI(e){let t="";do t=VH[e%F8]+t,e=Math.floor(e/F8);while(e>0);return t}function UH(){const e=fI(+new Date);return e!==dI?(cI=0,dI=e):e+"."+fI(cI++)}for(;Ay{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};Y8e(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,Z8e(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=UH()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const i=GH(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new Ml(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(i,o)=>{this.onError("xhr post error",i,o)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class Ml extends Xr{constructor(t,n){super(),Tx(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=HH(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new qH(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=Ml.requestsCount++,Ml.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=sCe,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete Ml.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}Ml.requestsCount=0;Ml.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",hI);else if(typeof addEventListener=="function"){const e="onpagehide"in Xc?"pagehide":"unload";addEventListener(e,hI,!1)}}function hI(){for(let e in Ml.requests)Ml.requests.hasOwnProperty(e)&&Ml.requests[e].abort()}const cCe=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Iy=Xc.WebSocket||Xc.MozWebSocket,pI=!0,dCe="arraybuffer",gI=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class fCe extends WH{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=gI?{}:HH(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=pI&&!gI?n?new Iy(t,n):new Iy(t):new Iy(t,n,r)}catch(i){return this.emitReserved("error",i)}this.ws.binaryType=this.socket.binaryType||dCe,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const a={};try{pI&&this.ws.send(o)}catch{}i&&cCe(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=UH()),this.supportsBinary||(t.b64=1);const i=GH(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}check(){return!!Iy}}const hCe={websocket:fCe,polling:uCe},pCe=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,gCe=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function B8(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let i=pCe.exec(e||""),o={},a=14;for(;a--;)o[gCe[a]]=i[a]||"";return n!=-1&&r!=-1&&(o.source=t,o.host=o.host.substring(1,o.host.length-1).replace(/;/g,":"),o.authority=o.authority.replace("[","").replace("]","").replace(/;/g,":"),o.ipv6uri=!0),o.pathNames=mCe(o,o.path),o.queryKey=vCe(o,o.query),o}function mCe(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function vCe(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,i,o){i&&(n[i]=o)}),n}class Gc extends Xr{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=B8(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=B8(n.host).host),Tx(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=oCe(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=$H,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new hCe[t](r)}open(){let t;if(this.opts.rememberUpgrade&&Gc.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;Gc.priorWebsocketSuccess=!1;const i=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",g=>{if(!r)if(g.type==="pong"&&g.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Gc.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(p(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function o(){r||(r=!0,p(),n.close(),n=null)}const a=g=>{const m=new Error("probe error: "+g);m.transport=n.name,o(),this.emitReserved("upgradeError",m)};function s(){a("transport closed")}function l(){a("socket closed")}function d(g){n&&g.name!==n.name&&o()}const p=()=>{n.removeListener("open",i),n.removeListener("error",a),n.removeListener("close",s),this.off("close",l),this.off("upgrading",d)};n.once("open",i),n.once("error",a),n.once("close",s),this.once("close",l),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",Gc.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,i){if(typeof n=="function"&&(i=n,n=void 0),typeof r=="function"&&(i=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const o={type:t,data:n,options:r};this.emitReserved("packetCreate",o),this.writeBuffer.push(o),i&&this.once("flush",i),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){Gc.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const i=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,KH=Object.prototype.toString,SCe=typeof Blob=="function"||typeof Blob<"u"&&KH.call(Blob)==="[object BlobConstructor]",wCe=typeof File=="function"||typeof File<"u"&&KH.call(File)==="[object FileConstructor]";function k_(e){return xCe&&(e instanceof ArrayBuffer||bCe(e))||SCe&&e instanceof Blob||wCe&&e instanceof File}function x3(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case ln.ACK:case ln.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class PCe{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=_Ce(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const TCe=Object.freeze(Object.defineProperty({__proto__:null,protocol:kCe,get PacketType(){return ln},Encoder:ECe,Decoder:E_},Symbol.toStringTag,{value:"Module"}));function Ps(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const LCe=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class ZH extends Xr{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[Ps(t,"open",this.onopen.bind(this)),Ps(t,"packet",this.onpacket.bind(this)),Ps(t,"error",this.onerror.bind(this)),Ps(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(LCe.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:ln.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const a=this.ids++,s=n.pop();this._registerAckCallback(a,s),r.id=a}const i=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!i||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const i=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let o=0;o{this.io.clearTimeoutFn(i),n.apply(this,[null,...o])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:ln.CONNECT,data:t})}):this.packet({type:ln.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case ln.CONNECT:if(t.data&&t.data.sid){const i=t.data.sid;this.onconnect(i)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case ln.EVENT:case ln.BINARY_EVENT:this.onevent(t);break;case ln.ACK:case ln.BINARY_ACK:this.onack(t);break;case ln.DISCONNECT:this.ondisconnect();break;case ln.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...i){r||(r=!0,n.packet({type:ln.ACK,id:t,data:i}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:ln.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}r0.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};r0.prototype.reset=function(){this.attempts=0};r0.prototype.setMin=function(e){this.ms=e};r0.prototype.setMax=function(e){this.max=e};r0.prototype.setJitter=function(e){this.jitter=e};class W8 extends Xr{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Tx(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new r0({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const i=n.parser||TCe;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Gc(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const i=Ps(n,"open",function(){r.onopen(),t&&t()}),o=Ps(n,"error",a=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",a),t?t(a):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const a=this._timeout;a===0&&i();const s=this.setTimeoutFn(()=>{i(),n.close(),n.emit("error",new Error("timeout"))},a);this.opts.autoUnref&&s.unref(),this.subs.push(function(){clearTimeout(s)})}return this.subs.push(i),this.subs.push(o),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(Ps(t,"ping",this.onping.bind(this)),Ps(t,"data",this.ondata.bind(this)),Ps(t,"error",this.onerror.bind(this)),Ps(t,"close",this.onclose.bind(this)),Ps(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new ZH(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(i=>{i?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",i)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const pg={};function b3(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=yCe(e,t.path||"/socket.io"),r=n.source,i=n.id,o=n.path,a=pg[i]&&o in pg[i].nsps,s=t.forceNew||t["force new connection"]||t.multiplex===!1||a;let l;return s?l=new W8(r,t):(pg[i]||(pg[i]=new W8(r,t)),l=pg[i]),n.query&&!t.query&&(t.query=n.queryKey),l.socket(n.path,t)}Object.assign(b3,{Manager:W8,Socket:ZH,io:b3,connect:b3});let My;const ACe=new Uint8Array(16);function ICe(){if(!My&&(My=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!My))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return My(ACe)}const Ai=[];for(let e=0;e<256;++e)Ai.push((e+256).toString(16).slice(1));function MCe(e,t=0){return(Ai[e[t+0]]+Ai[e[t+1]]+Ai[e[t+2]]+Ai[e[t+3]]+"-"+Ai[e[t+4]]+Ai[e[t+5]]+"-"+Ai[e[t+6]]+Ai[e[t+7]]+"-"+Ai[e[t+8]]+Ai[e[t+9]]+"-"+Ai[e[t+10]]+Ai[e[t+11]]+Ai[e[t+12]]+Ai[e[t+13]]+Ai[e[t+14]]+Ai[e[t+15]]).toLowerCase()}const RCe=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),mI={randomUUID:RCe};function gg(e,t,n){if(mI.randomUUID&&!t&&!e)return mI.randomUUID();e=e||{};const r=e.random||(e.rng||ICe)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let i=0;i<16;++i)t[n+i]=r[i];return t}return MCe(r)}var OCe=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,NCe=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,DCe=/[^-+\dA-Z]/g;function Ri(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(vI[t]||t||vI.default);var i=t.slice(0,4);(i==="UTC:"||i==="GMT:")&&(t=t.slice(4),n=!0,i==="GMT:"&&(r=!0));var o=function(){return n?"getUTC":"get"},a=function(){return e[o()+"Date"]()},s=function(){return e[o()+"Day"]()},l=function(){return e[o()+"Month"]()},d=function(){return e[o()+"FullYear"]()},p=function(){return e[o()+"Hours"]()},g=function(){return e[o()+"Minutes"]()},m=function(){return e[o()+"Seconds"]()},y=function(){return e[o()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},w=function(){return zCe(e)},P=function(){return FCe(e)},E={d:function(){return a()},dd:function(){return la(a())},ddd:function(){return Ro.dayNames[s()]},DDD:function(){return yI({y:d(),m:l(),d:a(),_:o(),dayName:Ro.dayNames[s()],short:!0})},dddd:function(){return Ro.dayNames[s()+7]},DDDD:function(){return yI({y:d(),m:l(),d:a(),_:o(),dayName:Ro.dayNames[s()+7]})},m:function(){return l()+1},mm:function(){return la(l()+1)},mmm:function(){return Ro.monthNames[l()]},mmmm:function(){return Ro.monthNames[l()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return la(d(),4)},h:function(){return p()%12||12},hh:function(){return la(p()%12||12)},H:function(){return p()},HH:function(){return la(p())},M:function(){return g()},MM:function(){return la(g())},s:function(){return m()},ss:function(){return la(m())},l:function(){return la(y(),3)},L:function(){return la(Math.floor(y()/10))},t:function(){return p()<12?Ro.timeNames[0]:Ro.timeNames[1]},tt:function(){return p()<12?Ro.timeNames[2]:Ro.timeNames[3]},T:function(){return p()<12?Ro.timeNames[4]:Ro.timeNames[5]},TT:function(){return p()<12?Ro.timeNames[6]:Ro.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":BCe(e)},o:function(){return(b()>0?"-":"+")+la(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+la(Math.floor(Math.abs(b())/60),2)+":"+la(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][a()%10>3?0:(a()%100-a()%10!=10)*a()%10]},W:function(){return w()},WW:function(){return la(w())},N:function(){return P()}};return t.replace(OCe,function(k){return k in E?E[k]():k.slice(1,k.length-1)})}var vI={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},Ro={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},la=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},yI=function(t){var n=t.y,r=t.m,i=t.d,o=t._,a=t.dayName,s=t.short,l=s===void 0?!1:s,d=new Date,p=new Date;p.setDate(p[o+"Date"]()-1);var g=new Date;g.setDate(g[o+"Date"]()+1);var m=function(){return d[o+"Date"]()},y=function(){return d[o+"Month"]()},b=function(){return d[o+"FullYear"]()},w=function(){return p[o+"Date"]()},P=function(){return p[o+"Month"]()},E=function(){return p[o+"FullYear"]()},k=function(){return g[o+"Date"]()},L=function(){return g[o+"Month"]()},M=function(){return g[o+"FullYear"]()};return b()===n&&y()===r&&m()===i?l?"Tdy":"Today":E()===n&&P()===r&&w()===i?l?"Ysd":"Yesterday":M()===n&&L()===r&&k()===i?l?"Tmw":"Tomorrow":a},zCe=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var i=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-i);var o=(n-r)/(864e5*7);return 1+Math.floor(o)},FCe=function(t){var n=t.getDay();return n===0&&(n=7),n},BCe=function(t){return(String(t).match(NCe)||[""]).pop().replace(DCe,"").replace(/GMT\+0000/g,"UTC")};const $Ce=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(UL(!0)),t(_S("Connected"));const r=n().gallery;r.categories.user.latest_mtime?t(ZL("user")):t(o8("user")),r.categories.result.latest_mtime?t(ZL("result")):t(o8("result"))}catch(r){console.error(r)}},onDisconnect:()=>{try{t(UL(!1)),t(_S("Disconnected")),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{shouldLoopback:i,activeTab:o}=n().options,a={uuid:gg(),...r,category:"result"};if(t(uy({category:"result",image:a})),i)switch(Ex[o]){case"img2img":{t(tv(a));break}case"inpainting":{t(L4(a));break}}t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Image generated: ${r.url}`}))}catch(i){console.error(i)}},onIntermediateResult:r=>{try{t(q3e({uuid:gg(),...r})),r.isBase64||t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Intermediate image generated: ${r.url}`}))}catch(i){console.error(i)}},onPostprocessingResult:r=>{try{t(uy({category:"result",image:{uuid:gg(),...r,category:"result"}})),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Postprocessed: ${r.url}`}))}catch(i){console.error(i)}},onProgressUpdate:r=>{try{t(p1(!0)),t(fye(r))}catch(i){console.error(i)}},onError:r=>{const{message:i,additionalData:o}=r;try{t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Server error: ${i}`,level:"error"})),t(r8()),t(oA())}catch(a){console.error(a)}},onGalleryImages:r=>{const{images:i,areMoreImagesAvailable:o,category:a}=r,s=i.map(l=>({uuid:gg(),...l}));t(j3e({images:s,areMoreImagesAvailable:o,category:a})),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Loaded ${i.length} images`}))},onProcessingCanceled:()=>{t(gye());const{intermediateImage:r}=n().gallery;r&&(r.isBase64||(t(uy({category:"result",image:r})),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`}))),t(oA())),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:i}=r;t(qB(r));const{initialImage:o,maskPath:a}=n().options,{imageToInpaint:s}=n().inpainting;(o?.url===i||o===i)&&t(NH()),s?.url===i&&t(WB()),a===i&&t(D8("")),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Image deleted: ${i}`}))},onImageUploaded:r=>{const{destination:i,...o}=r,a={uuid:gg(),...o};try{switch(t(uy({image:a,category:"user"})),i){case"img2img":{t(tv(a));break}case"inpainting":{t(L4(a));break}default:{t(KB(a));break}}t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Image uploaded: ${r.url}`}))}catch(s){console.error(s)}},onMaskImageUploaded:r=>{const{url:i}=r;t(D8(i)),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Mask image uploaded: ${i}`}))},onSystemConfig:r=>{t(hye(r))},onModelChanged:r=>{const{model_name:i,model_list:o}=r;t(GL(o)),t(_S("Model Changed")),t(p1(!1)),t(jL(!0)),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Model changed: ${i}`,level:"info"}))},onModelChangeFailed:r=>{const{model_name:i,model_list:o}=r;t(GL(o)),t(p1(!1)),t(jL(!0)),t(r8()),t(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Model change failed: ${i}`,level:"error"}))}}},HCe=(e,t)=>{const{width:n,height:r}=e,i=document.createElement("div"),o=new g3.Stage({container:i,width:n,height:r}),a=new g3.Layer;return o.add(a),t.forEach(s=>a.add(new g3.Line({points:s.points,stroke:"rgb(0,0,0)",strokeWidth:s.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,globalCompositeOperation:s.tool==="brush"?"source-over":"destination-out"}))),a.draw(),i.remove(),{stage:o,layer:a}},WCe=(e,t)=>{const n=e.toCanvas().getContext("2d")?.getImageData(t.x,t.y,t.width,t.height);if(!n)throw new Error("Unable to get image data from generated canvas");return!new Uint32Array(n.data.buffer).some(i=>i!==0)},VCe=(e,t,n)=>{const{stage:r,layer:i}=HCe(e,t),o=WCe(r,n);return i.add(new g3.Image({image:e,globalCompositeOperation:"source-out"})),{maskDataURL:r.toDataURL({...n}),isMaskEmpty:o}},UCe=e=>{const{generationMode:t,optionsState:n,inpaintingState:r,systemState:i,imageToProcessUrl:o,maskImageElement:a}=e,{prompt:s,iterations:l,steps:d,cfgScale:p,threshold:g,perlin:m,height:y,width:b,sampler:w,seed:P,seamless:E,hiresFix:k,img2imgStrength:L,initialImage:M,shouldFitToWidthHeight:N,shouldGenerateVariations:F,variationAmount:B,seedWeights:z,shouldRunESRGAN:j,upscalingLevel:q,upscalingStrength:Y,shouldRunFacetool:ge,facetoolStrength:ce,codeformerFidelity:ve,facetoolType:we,shouldRandomizeSeed:be}=n,{shouldDisplayInProgressType:J}=i,U={prompt:s,iterations:be||F?l:1,steps:d,cfg_scale:p,threshold:g,perlin:m,height:y,width:b,sampler_name:w,seed:P,progress_images:J==="full-res",progress_latents:J==="latents"};if(U.seed=be?vB(W7,V7):P,["txt2img","img2img"].includes(t)&&(U.seamless=E,U.hires_fix=k),t==="img2img"&&M&&(U.init_img=typeof M=="string"?M:M.url,U.strength=L,U.fit=N),t==="inpainting"&&a){const{lines:W,boundingBoxCoordinate:ie,boundingBoxDimensions:de,inpaintReplace:Se,shouldUseInpaintReplace:De}=r,Me={...ie,...de};U.init_img=o,U.strength=L,U.fit=!1;const{maskDataURL:Ue,isMaskEmpty:ke}=VCe(a,W,Me);U.is_mask_empty=ke,U.init_mask=Ue.split("data:image/png;base64,")[1],De&&(U.inpaint_replace=Se),U.bounding_box=Me,U.progress_images=!1}F?(U.variation_amount=B,z&&(U.with_variations=d2e(z))):U.variation_amount=0;let ee=!1,Q=!1;return j&&(ee={level:q,strength:Y}),ge&&(Q={type:we,strength:ce},we==="codeformer"&&(Q.codeformer_fidelity=ve)),{generationParameters:U,esrganParameters:ee,facetoolParameters:Q}},GCe=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:i=>{n(p1(!0));const o=r(),{options:a,system:s,inpainting:l,gallery:d}=o,p={generationMode:i,optionsState:a,inpaintingState:l,systemState:s};if(i==="inpainting"){if(!z4.current||!l.imageToInpaint?.url){n(Mi({timestamp:Ri(new Date,"isoDateTime"),message:"Inpainting image not loaded, cannot generate image.",level:"error"})),n(r8());return}p.imageToProcessUrl=l.imageToInpaint.url,p.maskImageElement=z4.current}else if(!["txt2img","img2img"].includes(i)){if(!d.currentImage?.url)return;p.imageToProcessUrl=d.currentImage.url}const{generationParameters:g,esrganParameters:m,facetoolParameters:y}=UCe(p);t.emit("generateImage",g,m,y),g.init_mask&&(g.init_mask=g.init_mask.substr(0,20).concat("...")),n(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...g,...m,...y})}`}))},emitRunESRGAN:i=>{n(p1(!0));const o=r().options,{upscalingLevel:a,upscalingStrength:s}=o,l={upscale:[a,s]};t.emit("runPostprocessing",i,{type:"esrgan",...l}),n(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:i.url,...l})}`}))},emitRunFacetool:i=>{n(p1(!0));const o=r().options,{facetoolType:a,facetoolStrength:s,codeformerFidelity:l}=o,d={facetool_strength:s};a==="codeformer"&&(d.codeformer_fidelity=l),t.emit("runPostprocessing",i,{type:a,...d}),n(Mi({timestamp:Ri(new Date,"isoDateTime"),message:`Face restoration (${a}) requested: ${JSON.stringify({file:i.url,...d})}`}))},emitDeleteImage:i=>{const{url:o,uuid:a,category:s}=i;n(qB(i)),t.emit("deleteImage",o,a,s)},emitRequestImages:i=>{const o=r().gallery,{earliest_mtime:a}=o.categories[i];t.emit("requestImages",i,a)},emitRequestNewImages:i=>{const o=r().gallery,{latest_mtime:a}=o.categories[i];t.emit("requestLatestImages",i,a)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadImage:i=>{const{file:o,destination:a}=i;t.emit("uploadImage",o,o.name,a)},emitUploadMaskImage:i=>{t.emit("uploadMaskImage",i,i.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")},emitRequestModelChange:i=>{n(mye()),t.emit("requestModelChange",i)}}},jCe=()=>{const{origin:e}=new URL(window.location.href),t=b3(e,{timeout:6e4,path:window.location.pathname+"socket.io"});let n=!1;return i=>o=>a=>{const{onConnect:s,onDisconnect:l,onError:d,onPostprocessingResult:p,onGenerationResult:g,onIntermediateResult:m,onProgressUpdate:y,onGalleryImages:b,onProcessingCanceled:w,onImageDeleted:P,onImageUploaded:E,onMaskImageUploaded:k,onSystemConfig:L,onModelChanged:M,onModelChangeFailed:N}=$Ce(i),{emitGenerateImage:F,emitRunESRGAN:B,emitRunFacetool:z,emitDeleteImage:j,emitRequestImages:q,emitRequestNewImages:Y,emitCancelProcessing:ge,emitUploadImage:ce,emitUploadMaskImage:ve,emitRequestSystemConfig:we,emitRequestModelChange:be}=GCe(i,t);switch(n||(t.on("connect",()=>s()),t.on("disconnect",()=>l()),t.on("error",J=>d(J)),t.on("generationResult",J=>g(J)),t.on("postprocessingResult",J=>p(J)),t.on("intermediateResult",J=>m(J)),t.on("progressUpdate",J=>y(J)),t.on("galleryImages",J=>b(J)),t.on("processingCanceled",()=>{w()}),t.on("imageDeleted",J=>{P(J)}),t.on("imageUploaded",J=>{E(J)}),t.on("maskImageUploaded",J=>{k(J)}),t.on("systemConfig",J=>{L(J)}),t.on("modelChanged",J=>{M(J)}),t.on("modelChangeFailed",J=>{N(J)}),n=!0),a.type){case"socketio/generateImage":{F(a.payload);break}case"socketio/runESRGAN":{B(a.payload);break}case"socketio/runFacetool":{z(a.payload);break}case"socketio/deleteImage":{j(a.payload);break}case"socketio/requestImages":{q(a.payload);break}case"socketio/requestNewImages":{Y(a.payload);break}case"socketio/cancelProcessing":{ge();break}case"socketio/uploadImage":{ce(a.payload);break}case"socketio/uploadMaskImage":{ve(a.payload);break}case"socketio/requestSystemConfig":{we();break}case"socketio/requestModelChange":{be(a.payload);break}}o(a)}},qCe={key:"root",storage:Lv,stateReconciler:cx,blacklist:["gallery","system","inpainting"]},KCe={key:"system",storage:Lv,stateReconciler:cx,blacklist:["isCancelable","isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},ZCe={key:"gallery",storage:Lv,stateReconciler:cx,whitelist:["galleryWidth","shouldPinGallery","shouldShowGallery","galleryScrollPosition","galleryImageMinimumWidth","galleryImageObjectFit"]},YCe={key:"inpainting",storage:Lv,stateReconciler:cx,blacklist:["pastLines","futuresLines","cursorPosition"]},XCe=VF({options:H8e,gallery:u3(ZCe,J3e),system:u3(KCe,vye),inpainting:u3(YCe,B3e)}),QCe=u3(qCe,XCe),YH=qme({reducer:QCe,middleware:e=>e({serializableCheck:!1}).concat(jCe())}),it=Mve,Be=Sve;function S3(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?S3=function(n){return typeof n}:S3=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},S3(e)}function JCe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xI(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),r9e=()=>S(zn,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:S(xv,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),i9e=Pt(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),o9e=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=Be(i9e),i=t?Math.round(t*100/n):0;return S(Zz,{value:i,isIndeterminate:e&&!r,className:"progress-bar"})};function a9e(e){const{title:t,hotkey:n,description:r}=e;return oe("div",{className:"hotkey-modal-item",children:[oe("div",{className:"hotkey-info",children:[S("p",{className:"hotkey-title",children:t}),r&&S("p",{className:"hotkey-description",children:r})]}),S("div",{className:"hotkey-key",children:n})]})}function s9e({children:e}){const{isOpen:t,onOpen:n,onClose:r}=h4(),i=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Toggle Options",desc:"Open and close the options panel",hotkey:"O"},{title:"Pin Options",desc:"Pin the options panel",hotkey:"Shift+O"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],o=[{title:"Set Prompt",desc:"Use the prompt of the current image",hotkey:"P"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send current image to Image to Image",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"}],a=[{title:"Previous Image",desc:"Display the previous image in gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in gallery",hotkey:"Arrow right"},{title:"Toggle Gallery Pin",desc:"Pins and unpins the gallery to the UI",hotkey:"Shift+G"},{title:"Increase Gallery Image Size",desc:"Increases gallery thumbnails size",hotkey:"Shift+Up"},{title:"Decrease Gallery Image Size",desc:"Decreases gallery thumbnails size",hotkey:"Shift+Down"},{title:"Reset Gallery Image Size",desc:"Resets image gallery size",hotkey:"Shift+R"}],s=[{title:"Select Brush",desc:"Selects the inpainting brush",hotkey:"B"},{title:"Select Eraser",desc:"Selects the inpainting eraser",hotkey:"E"},{title:"Quick Toggle Brush/Eraser",desc:"Quick toggle between brush and eraser",hotkey:"X"},{title:"Decrease Brush Size",desc:"Decreases the size of the inpainting brush/eraser",hotkey:"["},{title:"Increase Brush Size",desc:"Increases the size of the inpainting brush/eraser",hotkey:"]"},{title:"Hide Mask",desc:"Hide and unhide mask",hotkey:"H"},{title:"Decrease Mask Opacity",desc:"Decreases the opacity of the mask",hotkey:"Shift+["},{title:"Increase Mask Opacity",desc:"Increases the opacity of the mask",hotkey:"Shift+]"},{title:"Invert Mask",desc:"Invert the mask preview",hotkey:"Shift+M"},{title:"Clear Mask",desc:"Clear the entire mask",hotkey:"Shift+C"},{title:"Undo Stroke",desc:"Undo a brush stroke",hotkey:"Ctrl+Z"},{title:"Redo Stroke",desc:"Redo a brush stroke",hotkey:"Ctrl+Shift+Z, Ctrl+Y"},{title:"Lock Bounding Box",desc:"Locks the bounding box",hotkey:"Shift+Q"},{title:"Quick Toggle Lock Bounding Box",desc:"Hold to toggle locking the bounding box",hotkey:"Q"},{title:"Expand Inpainting Area",desc:"Expand your inpainting work area",hotkey:"Shift+J"}],l=d=>{const p=[];return d.forEach((g,m)=>{p.push(S(a9e,{title:g.title,description:g.desc,hotkey:g.hotkey},m))}),S("div",{className:"hotkey-modal-category",children:p})};return oe(Bn,{children:[C.exports.cloneElement(e,{onClick:n}),oe(M1,{isOpen:t,onClose:r,children:[S(Gm,{}),oe(Um,{className:"hotkeys-modal",children:[S(l7,{}),S("h1",{children:"Keyboard Shorcuts"}),S("div",{className:"hotkeys-modal-items",children:oe(D5,{allowMultiple:!0,children:[oe(qf,{children:[oe(Gf,{className:"hotkeys-modal-button",children:[S("h2",{children:"App Hotkeys"}),S(jf,{})]}),S(Kf,{children:l(i)})]}),oe(qf,{children:[oe(Gf,{className:"hotkeys-modal-button",children:[S("h2",{children:"General Hotkeys"}),S(jf,{})]}),S(Kf,{children:l(o)})]}),oe(qf,{children:[oe(Gf,{className:"hotkeys-modal-button",children:[S("h2",{children:"Gallery Hotkeys"}),S(jf,{})]}),S(Kf,{children:l(a)})]}),oe(qf,{children:[oe(Gf,{className:"hotkeys-modal-button",children:[S("h2",{children:"Inpainting Hotkeys"}),S(jf,{})]}),S(Kf,{children:l(s)})]})]})})]})]})]})}const l9e=e=>{const{isProcessing:t,isConnected:n}=Be(l=>l.system),r=it(),{name:i,status:o,description:a}=e,s=()=>{r(h3e(i))};return oe("div",{className:"model-list-item",children:[S(Qi,{label:a,hasArrow:!0,placement:"bottom",children:S("div",{className:"model-list-item-name",children:i})}),S(RD,{}),S("div",{className:`model-list-item-status ${o.split(" ").join("-")}`,children:o}),S("div",{className:"model-list-item-load-btn",children:S(Za,{size:"sm",onClick:s,isDisabled:o==="active"||t||!n,children:"Load"})})]})},u9e=Pt(e=>e.system,e=>{const t=xt.map(e.model_list,(r,i)=>({name:i,...r})),n=t.find(r=>r.status==="active");return{models:t,activeModel:n}}),c9e=()=>{const{models:e}=Be(u9e);return S(D5,{allowToggle:!0,className:"model-list-accordion",variant:"unstyled",children:oe(qf,{children:[S(Gf,{children:oe("div",{className:"model-list-button",children:[S("h2",{children:"Models"}),S(jf,{})]})}),S(Kf,{children:S("div",{className:"model-list-list",children:e.map((t,n)=>S(l9e,{name:t.name,status:t.status,description:t.description},n))})})]})})},d9e=Pt(e=>e.system,e=>{const{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,model_list:i}=e;return{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,models:xt.map(i,(o,a)=>a)}},{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),f9e=({children:e})=>{const t=it(),{isOpen:n,onOpen:r,onClose:i}=h4(),{isOpen:o,onOpen:a,onClose:s}=h4(),{shouldDisplayInProgressType:l,shouldConfirmOnDelete:d,shouldDisplayGuides:p}=Be(d9e),g=()=>{uW.purge().then(()=>{i(),a()})};return oe(Bn,{children:[C.exports.cloneElement(e,{onClick:r}),oe(M1,{isOpen:n,onClose:i,children:[S(Gm,{}),oe(Um,{className:"settings-modal",children:[S(c7,{className:"settings-modal-header",children:"Settings"}),S(l7,{}),oe(v4,{className:"settings-modal-content",children:[oe("div",{className:"settings-modal-items",children:[S("div",{className:"settings-modal-item",children:S(c9e,{})}),S(X1,{styleClass:"settings-modal-item",label:"Display In-Progress Images",validValues:F2e,value:l,onChange:m=>t(cye(m.target.value))}),S(Nl,{styleClass:"settings-modal-item",label:"Confirm on Delete",isChecked:d,onChange:m=>t(xB(m.target.checked))}),S(Nl,{styleClass:"settings-modal-item",label:"Display Help Icons",isChecked:p,onChange:m=>t(pye(m.target.checked))})]}),oe("div",{className:"settings-modal-reset",children:[S(eh,{size:"md",children:"Reset Web UI"}),S(Za,{colorScheme:"red",onClick:g,children:"Reset Web UI"}),S(Do,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),S(Do,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."})]})]}),S(u7,{children:S(Za,{onClick:i,children:"Close"})})]})]}),oe(M1,{closeOnOverlayClick:!1,isOpen:o,onClose:s,isCentered:!0,children:[S(Gm,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),S(Um,{children:S(v4,{pb:6,pt:6,children:S(zn,{justifyContent:"center",children:S(Do,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},h9e=Pt(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),p9e=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:i,hasError:o,wasErrorSeen:a}=Be(h9e),s=it();let l;e&&!o?l="status-good":l="status-bad";let d=i;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(l="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),S(Qi,{label:o&&!a?"Click to clear, check logs for details":void 0,children:S(Do,{cursor:o&&!a?"pointer":"initial",onClick:()=>{(o||!a)&&s(bB())},className:`status ${l}`,children:d})})},g9e=()=>{const{colorMode:e,toggleColorMode:t}=jC();return zt("shift+d",()=>{t()},[e,t]),oe("div",{className:"site-header",children:[oe("div",{className:"site-header-left-side",children:[S("img",{src:UB,alt:"invoke-ai-logo"}),oe("h1",{children:["invoke ",S("strong",{children:"ai"})]})]}),oe("div",{className:"site-header-right-side",children:[S(p9e,{}),S(s9e,{children:S(Yt,{"aria-label":"Hotkeys",tooltip:"Hotkeys",size:"sm",variant:"link","data-variant":"link",fontSize:20,icon:S(Wye,{})})}),S(Yt,{"aria-label":"Toggle Dark Mode",tooltip:"Dark Mode",onClick:t,variant:"link","data-variant":"link",fontSize:20,size:"sm",icon:e==="light"?S(Gye,{}):S(t3e,{})}),S(Yt,{"aria-label":"Report Bug",tooltip:"Report Bug",variant:"link","data-variant":"link",fontSize:20,size:"sm",icon:S(th,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:S(Nye,{})})}),S(Yt,{"aria-label":"Link to Github Repo",tooltip:"Github",variant:"link","data-variant":"link",fontSize:20,size:"sm",icon:S(th,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:S(Aye,{})})}),S(Yt,{"aria-label":"Link to Discord Server",tooltip:"Discord",variant:"link","data-variant":"link",fontSize:20,size:"sm",icon:S(th,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:S(Lye,{})})}),S(f9e,{children:S(Yt,{"aria-label":"Settings",tooltip:"Settings",variant:"link","data-variant":"link",fontSize:20,size:"sm",icon:S(PB,{})})})]})]})},m9e=Pt(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),v9e=Pt(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:ba.exports.isEqual}}),y9e=()=>{const e=it(),t=Be(m9e),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:i}=Be(v9e),[o,a]=C.exports.useState(!0),s=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{s.current!==null&&o&&(s.current.scrollTop=s.current.scrollHeight)},[o,t,n]);const l=()=>{e(bB()),e(VL(!n))};return zt("`",()=>{e(VL(!n))},[n]),oe(Bn,{children:[n&&S(e$,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0,zIndex:9999},maxHeight:"90vh",children:S("div",{className:"console",ref:s,onScroll:()=>{!s.current||o&&s.current.scrollTop{const{timestamp:m,message:y,level:b}=p;return oe("div",{className:`console-entry console-${b}-color`,children:[oe("p",{className:"console-timestamp",children:[m,":"]}),S("p",{className:"console-message",children:y})]},g)})})}),n&&S(Qi,{hasArrow:!0,label:o?"Autoscroll On":"Autoscroll Off",children:S(Ru,{className:"console-autoscroll-icon-button","data-autoscroll-enabled":o,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:S(Iye,{}),onClick:()=>a(!o)})}),S(Qi,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:S(Ru,{className:"console-toggle-icon-button","data-error-seen":r||!i,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?S(Uye,{}):S(_B,{}),onClick:l})})]})};function x9e(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(i=>i)};(!{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}var b9e=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Ov(e,t){var n=S9e(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function S9e(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),i=b9e.get(r);i&&Object.defineProperty(e,"type",{value:i,writable:!1,configurable:!1,enumerable:!0})}return e}var w9e=[".DS_Store","Thumbs.db"];function C9e(e){return G1(this,void 0,void 0,function(){return j1(this,function(t){return F4(e)&&_9e(e.dataTransfer)?[2,T9e(e.dataTransfer,e.type)]:k9e(e)?[2,E9e(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,P9e(e)]:[2,[]]})})}function _9e(e){return F4(e)}function k9e(e){return F4(e)&&F4(e.target)}function F4(e){return typeof e=="object"&&e!==null}function E9e(e){return G8(e.target.files).map(function(t){return Ov(t)})}function P9e(e){return G1(this,void 0,void 0,function(){var t;return j1(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Ov(r)})]}})})}function T9e(e,t){return G1(this,void 0,void 0,function(){var n,r;return j1(this,function(i){switch(i.label){case 0:return e.items?(n=G8(e.items).filter(function(o){return o.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(L9e))]):[3,2];case 1:return r=i.sent(),[2,SI(QH(r))];case 2:return[2,SI(G8(e.files).map(function(o){return Ov(o)}))]}})})}function SI(e){return e.filter(function(t){return w9e.indexOf(t.name)===-1})}function G8(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,EI(n)];if(e.sizen)return[!1,EI(n)]}return[!0,null]}function Bf(e){return e!=null}function G9e(e){var t=e.files,n=e.accept,r=e.minSize,i=e.maxSize,o=e.multiple,a=e.maxFiles,s=e.validator;return!o&&t.length>1||o&&a>=1&&t.length>a?!1:t.every(function(l){var d=nW(l,n),p=nv(d,1),g=p[0],m=rW(l,r,i),y=nv(m,1),b=y[0],w=s?s(l):null;return g&&b&&!w})}function B4(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Ry(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function TI(e){e.preventDefault()}function j9e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function q9e(e){return e.indexOf("Edge/")!==-1}function K9e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return j9e(e)||q9e(e)}function dl(){for(var e=arguments.length,t=new Array(e),n=0;n1?i-1:0),a=1;ae.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function d7e(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var P_=C.exports.forwardRef(function(e,t){var n=e.children,r=$4(e,e7e),i=lW(r),o=i.open,a=$4(i,t7e);return C.exports.useImperativeHandle(t,function(){return{open:o}},[o]),S(C.exports.Fragment,{children:n(fr(fr({},a),{},{open:o}))})});P_.displayName="Dropzone";var sW={disabled:!1,getFilesFromEvent:C9e,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};P_.defaultProps=sW;P_.propTypes={children:Mn.exports.func,accept:Mn.exports.objectOf(Mn.exports.arrayOf(Mn.exports.string)),multiple:Mn.exports.bool,preventDropOnDocument:Mn.exports.bool,noClick:Mn.exports.bool,noKeyboard:Mn.exports.bool,noDrag:Mn.exports.bool,noDragEventsBubbling:Mn.exports.bool,minSize:Mn.exports.number,maxSize:Mn.exports.number,maxFiles:Mn.exports.number,disabled:Mn.exports.bool,getFilesFromEvent:Mn.exports.func,onFileDialogCancel:Mn.exports.func,onFileDialogOpen:Mn.exports.func,useFsAccessApi:Mn.exports.bool,autoFocus:Mn.exports.bool,onDragEnter:Mn.exports.func,onDragLeave:Mn.exports.func,onDragOver:Mn.exports.func,onDrop:Mn.exports.func,onDropAccepted:Mn.exports.func,onDropRejected:Mn.exports.func,onError:Mn.exports.func,validator:Mn.exports.func};var Z8={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function lW(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=fr(fr({},sW),e),n=t.accept,r=t.disabled,i=t.getFilesFromEvent,o=t.maxSize,a=t.minSize,s=t.multiple,l=t.maxFiles,d=t.onDragEnter,p=t.onDragLeave,g=t.onDragOver,m=t.onDrop,y=t.onDropAccepted,b=t.onDropRejected,w=t.onFileDialogCancel,P=t.onFileDialogOpen,E=t.useFsAccessApi,k=t.autoFocus,L=t.preventDropOnDocument,M=t.noClick,N=t.noKeyboard,F=t.noDrag,B=t.noDragEventsBubbling,z=t.onError,j=t.validator,q=C.exports.useMemo(function(){return X9e(n)},[n]),Y=C.exports.useMemo(function(){return Y9e(n)},[n]),ge=C.exports.useMemo(function(){return typeof P=="function"?P:AI},[P]),ce=C.exports.useMemo(function(){return typeof w=="function"?w:AI},[w]),ve=C.exports.useRef(null),we=C.exports.useRef(null),be=C.exports.useReducer(f7e,Z8),J=GS(be,2),U=J[0],ee=J[1],Q=U.isFocused,W=U.isFileDialogActive,ie=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&E&&Z9e()),de=function(){!ie.current&&W&&setTimeout(function(){if(we.current){var et=we.current.files;et.length||(ee({type:"closeDialog"}),ce())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",de,!1),function(){window.removeEventListener("focus",de,!1)}},[we,W,ce,ie]);var Se=C.exports.useRef([]),De=function(et){ve.current&&ve.current.contains(et.target)||(et.preventDefault(),Se.current=[])};C.exports.useEffect(function(){return L&&(document.addEventListener("dragover",TI,!1),document.addEventListener("drop",De,!1)),function(){L&&(document.removeEventListener("dragover",TI),document.removeEventListener("drop",De))}},[ve,L]),C.exports.useEffect(function(){return!r&&k&&ve.current&&ve.current.focus(),function(){}},[ve,k,r]);var Me=C.exports.useCallback(function(Oe){z?z(Oe):console.error(Oe)},[z]),Ue=C.exports.useCallback(function(Oe){Oe.preventDefault(),Oe.persist(),yt(Oe),Se.current=[].concat(i7e(Se.current),[Oe.target]),Ry(Oe)&&Promise.resolve(i(Oe)).then(function(et){if(!(B4(Oe)&&!B)){var qt=et.length,Gt=qt>0&&G9e({files:et,accept:q,minSize:a,maxSize:o,multiple:s,maxFiles:l,validator:j}),Ee=qt>0&&!Gt;ee({isDragAccept:Gt,isDragReject:Ee,isDragActive:!0,type:"setDraggedFiles"}),d&&d(Oe)}}).catch(function(et){return Me(et)})},[i,d,Me,B,q,a,o,s,l,j]),ke=C.exports.useCallback(function(Oe){Oe.preventDefault(),Oe.persist(),yt(Oe);var et=Ry(Oe);if(et&&Oe.dataTransfer)try{Oe.dataTransfer.dropEffect="copy"}catch{}return et&&g&&g(Oe),!1},[g,B]),Ve=C.exports.useCallback(function(Oe){Oe.preventDefault(),Oe.persist(),yt(Oe);var et=Se.current.filter(function(Gt){return ve.current&&ve.current.contains(Gt)}),qt=et.indexOf(Oe.target);qt!==-1&&et.splice(qt,1),Se.current=et,!(et.length>0)&&(ee({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Ry(Oe)&&p&&p(Oe))},[ve,p,B]),ot=C.exports.useCallback(function(Oe,et){var qt=[],Gt=[];Oe.forEach(function(Ee){var Tt=nW(Ee,q),en=GS(Tt,2),Hn=en[0],je=en[1],It=rW(Ee,a,o),$e=GS(It,2),ct=$e[0],qe=$e[1],wt=j?j(Ee):null;if(Hn&&ct&&!wt)qt.push(Ee);else{var tn=[je,qe];wt&&(tn=tn.concat(wt)),Gt.push({file:Ee,errors:tn.filter(function(Kn){return Kn})})}}),(!s&&qt.length>1||s&&l>=1&&qt.length>l)&&(qt.forEach(function(Ee){Gt.push({file:Ee,errors:[U9e]})}),qt.splice(0)),ee({acceptedFiles:qt,fileRejections:Gt,type:"setFiles"}),m&&m(qt,Gt,et),Gt.length>0&&b&&b(Gt,et),qt.length>0&&y&&y(qt,et)},[ee,s,q,a,o,l,m,y,b,j]),pt=C.exports.useCallback(function(Oe){Oe.preventDefault(),Oe.persist(),yt(Oe),Se.current=[],Ry(Oe)&&Promise.resolve(i(Oe)).then(function(et){B4(Oe)&&!B||ot(et,Oe)}).catch(function(et){return Me(et)}),ee({type:"reset"})},[i,ot,Me,B]),Vt=C.exports.useCallback(function(){if(ie.current){ee({type:"openDialog"}),ge();var Oe={multiple:s,types:Y};window.showOpenFilePicker(Oe).then(function(et){return i(et)}).then(function(et){ot(et,null),ee({type:"closeDialog"})}).catch(function(et){Q9e(et)?(ce(et),ee({type:"closeDialog"})):J9e(et)?(ie.current=!1,we.current?(we.current.value=null,we.current.click()):Me(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):Me(et)});return}we.current&&(ee({type:"openDialog"}),ge(),we.current.value=null,we.current.click())},[ee,ge,ce,E,ot,Me,Y,s]),Ft=C.exports.useCallback(function(Oe){!ve.current||!ve.current.isEqualNode(Oe.target)||(Oe.key===" "||Oe.key==="Enter"||Oe.keyCode===32||Oe.keyCode===13)&&(Oe.preventDefault(),Vt())},[ve,Vt]),Re=C.exports.useCallback(function(){ee({type:"focus"})},[]),tt=C.exports.useCallback(function(){ee({type:"blur"})},[]),mt=C.exports.useCallback(function(){M||(K9e()?setTimeout(Vt,0):Vt())},[M,Vt]),st=function(et){return r?null:et},vt=function(et){return N?null:st(et)},mn=function(et){return F?null:st(et)},yt=function(et){B&&et.stopPropagation()},Ut=C.exports.useMemo(function(){return function(){var Oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},et=Oe.refKey,qt=et===void 0?"ref":et,Gt=Oe.role,Ee=Oe.onKeyDown,Tt=Oe.onFocus,en=Oe.onBlur,Hn=Oe.onClick,je=Oe.onDragEnter,It=Oe.onDragOver,$e=Oe.onDragLeave,ct=Oe.onDrop,qe=$4(Oe,n7e);return fr(fr(K8({onKeyDown:vt(dl(Ee,Ft)),onFocus:vt(dl(Tt,Re)),onBlur:vt(dl(en,tt)),onClick:st(dl(Hn,mt)),onDragEnter:mn(dl(je,Ue)),onDragOver:mn(dl(It,ke)),onDragLeave:mn(dl($e,Ve)),onDrop:mn(dl(ct,pt)),role:typeof Gt=="string"&&Gt!==""?Gt:"presentation"},qt,ve),!r&&!N?{tabIndex:0}:{}),qe)}},[ve,Ft,Re,tt,mt,Ue,ke,Ve,pt,N,F,r]),on=C.exports.useCallback(function(Oe){Oe.stopPropagation()},[]),Bt=C.exports.useMemo(function(){return function(){var Oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},et=Oe.refKey,qt=et===void 0?"ref":et,Gt=Oe.onChange,Ee=Oe.onClick,Tt=$4(Oe,r7e),en=K8({accept:q,multiple:s,type:"file",style:{display:"none"},onChange:st(dl(Gt,pt)),onClick:st(dl(Ee,on)),tabIndex:-1},qt,we);return fr(fr({},en),Tt)}},[we,n,s,pt,r]);return fr(fr({},U),{},{isFocused:Q&&!r,getRootProps:Ut,getInputProps:Bt,rootRef:ve,inputRef:we,open:st(Vt)})}function f7e(e,t){switch(t.type){case"focus":return fr(fr({},e),{},{isFocused:!0});case"blur":return fr(fr({},e),{},{isFocused:!1});case"openDialog":return fr(fr({},Z8),{},{isFileDialogActive:!0});case"closeDialog":return fr(fr({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return fr(fr({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return fr(fr({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return fr({},Z8);default:return e}}function AI(){}const h7e=e=>{const{isDragAccept:t,isDragReject:n,overlaySecondaryText:r,setIsHandlingUpload:i}=e;return zt("esc",()=>{i(!1)}),oe("div",{className:"dropzone-container",children:[t&&S("div",{className:"dropzone-overlay is-drag-accept",children:oe(eh,{size:"lg",children:["Upload Image",r]})}),n&&oe("div",{className:"dropzone-overlay is-drag-reject",children:[S(eh,{size:"lg",children:"Invalid Upload"}),S(eh,{size:"md",children:"Must be single JPEG or PNG image"})]})]})},p7e=e=>{const{children:t}=e,n=it(),r=Be(Tr),i=kd({}),[o,a]=C.exports.useState(!1),s=C.exports.useCallback(E=>{a(!0);const k=E.errors.reduce((L,M)=>L+` +`+M.message,"");i({title:"Upload failed",description:k,status:"error",isClosable:!0})},[i]),l=C.exports.useCallback(E=>{a(!0);const k={file:E};["img2img","inpainting"].includes(r)&&(k.destination=r),n(YL(k))},[n,r]),d=C.exports.useCallback((E,k)=>{k.forEach(L=>{s(L)}),E.forEach(L=>{l(L)})},[l,s]),{getRootProps:p,getInputProps:g,isDragAccept:m,isDragReject:y,isDragActive:b,open:w}=lW({accept:{"image/png":[".png"],"image/jpeg":[".jpg",".jpeg",".png"]},noClick:!0,onDrop:d,onDragOver:()=>a(!0),maxFiles:1});C.exports.useEffect(()=>{const E=k=>{const L=k.clipboardData?.items;if(!L)return;const M=[];for(const B of L)B.kind==="file"&&["image/png","image/jpg"].includes(B.type)&&M.push(B);if(!M.length)return;if(k.stopImmediatePropagation(),M.length>1){i({description:"Multiple images pasted, may only upload one image at a time",status:"error",isClosable:!0});return}const N=M[0].getAsFile();if(!N){i({description:"Unable to load file",status:"error",isClosable:!0});return}const F={file:N};["img2img","inpainting"].includes(r)&&(F.destination=r),n(YL(F))};return document.addEventListener("paste",E),()=>{document.removeEventListener("paste",E)}},[n,i,r]);const P=["img2img","inpainting"].includes(r)?` to ${Ff[r].tooltip}`:"";return S(i_.Provider,{value:w,children:oe("div",{...p({style:{}}),children:[S("input",{...g()}),t,b&&o&&S(h7e,{isDragAccept:m,isDragReject:y,overlaySecondaryText:P,setIsHandlingUpload:a})]})})},g7e=()=>{const e=it();return S(Yt,{tooltip:"Show Gallery (G)",tooltipProps:{placement:"top"},"aria-label":"Show Gallery",styleClass:"floating-show-hide-button right",onMouseOver:()=>{e(u8(!0))},children:S(CB,{})})};function m7e(e){return gt({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M32 384h272v32H32zM400 384h80v32h-80zM384 447.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 240h80v32H32zM208 240h272v32H208zM192 303.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 96h272v32H32zM400 96h80v32h-80zM384 159.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]}]})(e)}const v7e=Pt(e=>e.options,e=>{const{shouldPinOptionsPanel:t,shouldShowOptionsPanel:n}=e;return{shouldShowProcessButtons:!t||!n}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),y7e=()=>{const e=it(),{shouldShowProcessButtons:t}=Be(v7e);return oe("div",{className:"show-hide-button-options",children:[S(Yt,{tooltip:"Show Options Panel (O)",tooltipProps:{placement:"top"},"aria-label":"Show Options Panel",onClick:()=>{e(z8(!0))},children:S(m7e,{})}),t&&oe(Bn,{children:[S(LB,{iconButton:!0}),S(IB,{}),S(AB,{})]})]})};x9e();const x7e=Pt([e=>e.gallery,e=>e.options,e=>e.system,Tr],(e,t,n,r)=>{const{shouldShowGallery:i,shouldHoldGalleryOpen:o,shouldPinGallery:a}=e,{shouldShowOptionsPanel:s,shouldHoldOptionsPanelOpen:l,shouldPinOptionsPanel:d}=t,p=xt.reduce(n.model_list,(y,b,w)=>(b.status==="active"&&(y=w),y),""),g=!(i||o&&!a),m=!(s||l&&!d)&&["txt2img","img2img","inpainting"].includes(r);return{modelStatusText:p,shouldShowGalleryButton:g,shouldShowOptionsPanelButton:m}},{memoizeOptions:{resultEqualityCheck:xt.isEqual}}),b7e=()=>{const e=it(),{shouldShowGalleryButton:t,shouldShowOptionsPanelButton:n}=Be(x7e);return C.exports.useEffect(()=>{e(f3e())},[e]),S("div",{className:"App",children:oe(p7e,{children:[S(o9e,{}),oe("div",{className:"app-content",children:[S(g9e,{}),S(S8e,{})]}),S("div",{className:"app-console",children:S(y9e,{})}),t&&S(g7e,{}),n&&S(y7e,{})]})})};const uW=e2e(YH);qS.createRoot(document.getElementById("root")).render(S(le.StrictMode,{children:S(Lve,{store:YH,children:S(XH,{loading:S(r9e,{}),persistor:uW,children:oe(fme,{theme:bI,children:[S(pZ,{initialColorMode:bI.config.initialColorMode}),S(b7e,{})]})})})})); diff --git a/frontend/dist/assets/index.cc049b93.js b/frontend/dist/assets/index.cc049b93.js deleted file mode 100644 index b314431e26..0000000000 --- a/frontend/dist/assets/index.cc049b93.js +++ /dev/null @@ -1,517 +0,0 @@ -function vq(e,t){for(var n=0;nr[i]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerpolicy&&(o.referrerPolicy=i.referrerpolicy),i.crossorigin==="use-credentials"?o.credentials="include":i.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=n(i);fetch(i.href,o)}})();var Au=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function g9(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Qt={};/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var fv=Symbol.for("react.element"),yq=Symbol.for("react.portal"),bq=Symbol.for("react.fragment"),xq=Symbol.for("react.strict_mode"),Sq=Symbol.for("react.profiler"),wq=Symbol.for("react.provider"),Cq=Symbol.for("react.context"),_q=Symbol.for("react.forward_ref"),kq=Symbol.for("react.suspense"),Eq=Symbol.for("react.memo"),Pq=Symbol.for("react.lazy"),Dk=Symbol.iterator;function Tq(e){return e===null||typeof e!="object"?null:(e=Dk&&e[Dk]||e["@@iterator"],typeof e=="function"?e:null)}var nR={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},rR=Object.assign,iR={};function V0(e,t,n){this.props=e,this.context=t,this.refs=iR,this.updater=n||nR}V0.prototype.isReactComponent={};V0.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};V0.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function oR(){}oR.prototype=V0.prototype;function m9(e,t,n){this.props=e,this.context=t,this.refs=iR,this.updater=n||nR}var v9=m9.prototype=new oR;v9.constructor=m9;rR(v9,V0.prototype);v9.isPureReactComponent=!0;var zk=Array.isArray,aR=Object.prototype.hasOwnProperty,y9={current:null},sR={key:!0,ref:!0,__self:!0,__source:!0};function lR(e,t,n){var r,i={},o=null,a=null;if(t!=null)for(r in t.ref!==void 0&&(a=t.ref),t.key!==void 0&&(o=""+t.key),t)aR.call(t,r)&&!sR.hasOwnProperty(r)&&(i[r]=t[r]);var s=arguments.length-2;if(s===1)i.children=n;else if(1>>1,se=G[W];if(0>>1;Wi(ze,Q))Mei(Ue,ze)?(G[W]=Ue,G[Me]=Q,W=Me):(G[W]=ze,G[xe]=Q,W=xe);else if(Mei(Ue,Q))G[W]=Ue,G[Me]=Q,W=Me;else break e}}return te}function i(G,te){var Q=G.sortIndex-te.sortIndex;return Q!==0?Q:G.id-te.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var a=Date,s=a.now();e.unstable_now=function(){return a.now()-s}}var l=[],d=[],p=1,g=null,m=3,y=!1,b=!1,S=!1,E=typeof setTimeout=="function"?setTimeout:null,P=typeof clearTimeout=="function"?clearTimeout:null,k=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function L(G){for(var te=n(d);te!==null;){if(te.callback===null)r(d);else if(te.startTime<=G)r(d),te.sortIndex=te.expirationTime,t(l,te);else break;te=n(d)}}function R(G){if(S=!1,L(G),!b)if(n(l)!==null)b=!0,we(N);else{var te=n(d);te!==null&&J(R,te.startTime-G)}}function N(G,te){b=!1,S&&(S=!1,P(F),F=-1),y=!0;var Q=m;try{for(L(te),g=n(l);g!==null&&(!(g.expirationTime>te)||G&&!Y());){var W=g.callback;if(typeof W=="function"){g.callback=null,m=g.priorityLevel;var se=W(g.expirationTime<=te);te=e.unstable_now(),typeof se=="function"?g.callback=se:g===n(l)&&r(l),L(te)}else r(l);g=n(l)}if(g!==null)var de=!0;else{var xe=n(d);xe!==null&&J(R,xe.startTime-te),de=!1}return de}finally{g=null,m=Q,y=!1}}var z=!1,$=null,F=-1,q=5,j=-1;function Y(){return!(e.unstable_now()-jG||125W?(G.sortIndex=Q,t(d,G),n(l)===null&&G===n(d)&&(S?(P(F),F=-1):S=!0,J(R,Q-W))):(G.sortIndex=se,t(l,G),b||y||(b=!0,we(N))),G},e.unstable_shouldYield=Y,e.unstable_wrapCallback=function(G){var te=m;return function(){var Q=m;m=te;try{return G.apply(this,arguments)}finally{m=Q}}}})(uR);(function(e){e.exports=uR})(Jp);/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var cR=C.exports,wa=Jp.exports;function $e(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),fw=Object.prototype.hasOwnProperty,Mq=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Fk={},Bk={};function Oq(e){return fw.call(Bk,e)?!0:fw.call(Fk,e)?!1:Mq.test(e)?Bk[e]=!0:(Fk[e]=!0,!1)}function Nq(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function Dq(e,t,n,r){if(t===null||typeof t>"u"||Nq(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ko(e,t,n,r,i,o,a){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=a}var Vi={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Vi[e]=new ko(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Vi[t]=new ko(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){Vi[e]=new ko(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Vi[e]=new ko(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Vi[e]=new ko(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){Vi[e]=new ko(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){Vi[e]=new ko(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){Vi[e]=new ko(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){Vi[e]=new ko(e,5,!1,e.toLowerCase(),null,!1,!1)});var x9=/[\-:]([a-z])/g;function S9(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(x9,S9);Vi[t]=new ko(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(x9,S9);Vi[t]=new ko(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(x9,S9);Vi[t]=new ko(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){Vi[e]=new ko(e,1,!1,e.toLowerCase(),null,!1,!1)});Vi.xlinkHref=new ko("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){Vi[e]=new ko(e,1,!1,e.toLowerCase(),null,!0,!0)});function w9(e,t,n,r){var i=Vi.hasOwnProperty(t)?Vi[t]:null;(i!==null?i.type!==0:r||!(2s||i[a]!==o[s]){var l=` -`+i[a].replace(" at new "," at ");return e.displayName&&l.includes("")&&(l=l.replace("",e.displayName)),l}while(1<=a&&0<=s);break}}}finally{_x=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Cg(e):""}function zq(e){switch(e.tag){case 5:return Cg(e.type);case 16:return Cg("Lazy");case 13:return Cg("Suspense");case 19:return Cg("SuspenseList");case 0:case 2:case 15:return e=kx(e.type,!1),e;case 11:return e=kx(e.type.render,!1),e;case 1:return e=kx(e.type,!0),e;default:return""}}function mw(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Dp:return"Fragment";case Np:return"Portal";case hw:return"Profiler";case C9:return"StrictMode";case pw:return"Suspense";case gw:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case hR:return(e.displayName||"Context")+".Consumer";case fR:return(e._context.displayName||"Context")+".Provider";case _9:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case k9:return t=e.displayName||null,t!==null?t:mw(e.type)||"Memo";case Kc:t=e._payload,e=e._init;try{return mw(e(t))}catch{}}return null}function $q(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return mw(t);case 8:return t===C9?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function vd(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function gR(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Fq(e){var t=gR(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var i=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(a){r=""+a,o.call(this,a)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(a){r=""+a},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function M2(e){e._valueTracker||(e._valueTracker=Fq(e))}function mR(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=gR(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function N5(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function vw(e,t){var n=t.checked;return xr({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Wk(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=vd(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function vR(e,t){t=t.checked,t!=null&&w9(e,"checked",t,!1)}function yw(e,t){vR(e,t);var n=vd(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?bw(e,t.type,n):t.hasOwnProperty("defaultValue")&&bw(e,t.type,vd(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function Vk(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function bw(e,t,n){(t!=="number"||N5(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var _g=Array.isArray;function e0(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i"+t.valueOf().toString()+"",t=O2.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function ym(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Hg={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Bq=["Webkit","ms","Moz","O"];Object.keys(Hg).forEach(function(e){Bq.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Hg[t]=Hg[e]})});function SR(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Hg.hasOwnProperty(e)&&Hg[e]?(""+t).trim():t+"px"}function wR(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,i=SR(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}var Hq=xr({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ww(e,t){if(t){if(Hq[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error($e(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error($e(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error($e(61))}if(t.style!=null&&typeof t.style!="object")throw Error($e(62))}}function Cw(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var _w=null;function E9(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var kw=null,t0=null,n0=null;function jk(e){if(e=gv(e)){if(typeof kw!="function")throw Error($e(280));var t=e.stateNode;t&&(t=o4(t),kw(e.stateNode,e.type,t))}}function CR(e){t0?n0?n0.push(e):n0=[e]:t0=e}function _R(){if(t0){var e=t0,t=n0;if(n0=t0=null,jk(e),t)for(e=0;e>>=0,e===0?32:31-(Qq(e)/Jq|0)|0}var N2=64,D2=4194304;function kg(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function F5(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,i=e.suspendedLanes,o=e.pingedLanes,a=n&268435455;if(a!==0){var s=a&~i;s!==0?r=kg(s):(o&=a,o!==0&&(r=kg(o)))}else a=n&~i,a!==0?r=kg(a):o!==0&&(r=kg(o));if(r===0)return 0;if(t!==0&&t!==r&&(t&i)===0&&(i=r&-r,o=t&-t,i>=o||i===16&&(o&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function hv(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Fs(t),e[t]=n}function rK(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Vg),tE=String.fromCharCode(32),nE=!1;function UR(e,t){switch(e){case"keyup":return IK.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function GR(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var zp=!1;function MK(e,t){switch(e){case"compositionend":return GR(t);case"keypress":return t.which!==32?null:(nE=!0,tE);case"textInput":return e=t.data,e===tE&&nE?null:e;default:return null}}function OK(e,t){if(zp)return e==="compositionend"||!O9&&UR(e,t)?(e=WR(),jy=I9=td=null,zp=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=aE(n)}}function YR(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?YR(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function ZR(){for(var e=window,t=N5();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=N5(e.document)}return t}function N9(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function VK(e){var t=ZR(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&YR(n.ownerDocument.documentElement,n)){if(r!==null&&N9(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var i=n.textContent.length,o=Math.min(r.start,i);r=r.end===void 0?o:Math.min(r.end,i),!e.extend&&o>r&&(i=r,r=o,o=i),i=sE(n,o);var a=sE(n,r);i&&a&&(e.rangeCount!==1||e.anchorNode!==i.node||e.anchorOffset!==i.offset||e.focusNode!==a.node||e.focusOffset!==a.offset)&&(t=t.createRange(),t.setStart(i.node,i.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(a.node,a.offset)):(t.setEnd(a.node,a.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,$p=null,Iw=null,Gg=null,Rw=!1;function lE(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Rw||$p==null||$p!==N5(r)||(r=$p,"selectionStart"in r&&N9(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Gg&&_m(Gg,r)||(Gg=r,r=W5(Iw,"onSelect"),0Hp||(e.current=$w[Hp],$w[Hp]=null,Hp--)}function Zn(e,t){Hp++,$w[Hp]=e.current,e.current=t}var yd={},ro=Ed(yd),Uo=Ed(!1),uh=yd;function C0(e,t){var n=e.type.contextTypes;if(!n)return yd;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i={},o;for(o in n)i[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Go(e){return e=e.childContextTypes,e!=null}function U5(){nr(Uo),nr(ro)}function gE(e,t,n){if(ro.current!==yd)throw Error($e(168));Zn(ro,t),Zn(Uo,n)}function oM(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var i in r)if(!(i in t))throw Error($e(108,$q(e)||"Unknown",i));return xr({},n,r)}function G5(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||yd,uh=ro.current,Zn(ro,e),Zn(Uo,Uo.current),!0}function mE(e,t,n){var r=e.stateNode;if(!r)throw Error($e(169));n?(e=oM(e,t,uh),r.__reactInternalMemoizedMergedChildContext=e,nr(Uo),nr(ro),Zn(ro,e)):nr(Uo),Zn(Uo,n)}var Lu=null,a4=!1,Fx=!1;function aM(e){Lu===null?Lu=[e]:Lu.push(e)}function tY(e){a4=!0,aM(e)}function Pd(){if(!Fx&&Lu!==null){Fx=!0;var e=0,t=In;try{var n=Lu;for(In=1;e>=a,i-=a,Ru=1<<32-Fs(t)+i|n<F?(q=$,$=null):q=$.sibling;var j=m(P,$,L[F],R);if(j===null){$===null&&($=q);break}e&&$&&j.alternate===null&&t(P,$),k=o(j,k,F),z===null?N=j:z.sibling=j,z=j,$=q}if(F===L.length)return n(P,$),lr&&Df(P,F),N;if($===null){for(;FF?(q=$,$=null):q=$.sibling;var Y=m(P,$,j.value,R);if(Y===null){$===null&&($=q);break}e&&$&&Y.alternate===null&&t(P,$),k=o(Y,k,F),z===null?N=Y:z.sibling=Y,z=Y,$=q}if(j.done)return n(P,$),lr&&Df(P,F),N;if($===null){for(;!j.done;F++,j=L.next())j=g(P,j.value,R),j!==null&&(k=o(j,k,F),z===null?N=j:z.sibling=j,z=j);return lr&&Df(P,F),N}for($=r(P,$);!j.done;F++,j=L.next())j=y($,P,F,j.value,R),j!==null&&(e&&j.alternate!==null&&$.delete(j.key===null?F:j.key),k=o(j,k,F),z===null?N=j:z.sibling=j,z=j);return e&&$.forEach(function(ve){return t(P,ve)}),lr&&Df(P,F),N}function E(P,k,L,R){if(typeof L=="object"&&L!==null&&L.type===Dp&&L.key===null&&(L=L.props.children),typeof L=="object"&&L!==null){switch(L.$$typeof){case R2:e:{for(var N=L.key,z=k;z!==null;){if(z.key===N){if(N=L.type,N===Dp){if(z.tag===7){n(P,z.sibling),k=i(z,L.props.children),k.return=P,P=k;break e}}else if(z.elementType===N||typeof N=="object"&&N!==null&&N.$$typeof===Kc&&CE(N)===z.type){n(P,z.sibling),k=i(z,L.props),k.ref=og(P,z,L),k.return=P,P=k;break e}n(P,z);break}else t(P,z);z=z.sibling}L.type===Dp?(k=rh(L.props.children,P.mode,R,L.key),k.return=P,P=k):(R=e5(L.type,L.key,L.props,null,P.mode,R),R.ref=og(P,k,L),R.return=P,P=R)}return a(P);case Np:e:{for(z=L.key;k!==null;){if(k.key===z)if(k.tag===4&&k.stateNode.containerInfo===L.containerInfo&&k.stateNode.implementation===L.implementation){n(P,k.sibling),k=i(k,L.children||[]),k.return=P,P=k;break e}else{n(P,k);break}else t(P,k);k=k.sibling}k=qx(L,P.mode,R),k.return=P,P=k}return a(P);case Kc:return z=L._init,E(P,k,z(L._payload),R)}if(_g(L))return b(P,k,L,R);if(eg(L))return S(P,k,L,R);V2(P,L)}return typeof L=="string"&&L!==""||typeof L=="number"?(L=""+L,k!==null&&k.tag===6?(n(P,k.sibling),k=i(k,L),k.return=P,P=k):(n(P,k),k=jx(L,P.mode,R),k.return=P,P=k),a(P)):n(P,k)}return E}var k0=pM(!0),gM=pM(!1),mv={},Rl=Ed(mv),Tm=Ed(mv),Lm=Ed(mv);function qf(e){if(e===mv)throw Error($e(174));return e}function U9(e,t){switch(Zn(Lm,t),Zn(Tm,e),Zn(Rl,mv),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Sw(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=Sw(t,e)}nr(Rl),Zn(Rl,t)}function E0(){nr(Rl),nr(Tm),nr(Lm)}function mM(e){qf(Lm.current);var t=qf(Rl.current),n=Sw(t,e.type);t!==n&&(Zn(Tm,e),Zn(Rl,n))}function G9(e){Tm.current===e&&(nr(Rl),nr(Tm))}var yr=Ed(0);function X5(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Bx=[];function j9(){for(var e=0;en?n:4,e(!0);var r=Hx.transition;Hx.transition={};try{e(!1),t()}finally{In=n,Hx.transition=r}}function RM(){return is().memoizedState}function oY(e,t,n){var r=hd(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},MM(e))OM(t,n);else if(n=cM(e,t,n,r),n!==null){var i=wo();Bs(n,e,r,i),NM(n,t,r)}}function aY(e,t,n){var r=hd(e),i={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(MM(e))OM(t,i);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var a=t.lastRenderedState,s=o(a,n);if(i.hasEagerState=!0,i.eagerState=s,Ws(s,a)){var l=t.interleaved;l===null?(i.next=i,W9(t)):(i.next=l.next,l.next=i),t.interleaved=i;return}}catch{}finally{}n=cM(e,t,i,r),n!==null&&(i=wo(),Bs(n,e,r,i),NM(n,t,r))}}function MM(e){var t=e.alternate;return e===br||t!==null&&t===br}function OM(e,t){jg=Q5=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function NM(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,T9(e,n)}}var J5={readContext:rs,useCallback:Xi,useContext:Xi,useEffect:Xi,useImperativeHandle:Xi,useInsertionEffect:Xi,useLayoutEffect:Xi,useMemo:Xi,useReducer:Xi,useRef:Xi,useState:Xi,useDebugValue:Xi,useDeferredValue:Xi,useTransition:Xi,useMutableSource:Xi,useSyncExternalStore:Xi,useId:Xi,unstable_isNewReconciler:!1},sY={readContext:rs,useCallback:function(e,t){return Sl().memoizedState=[e,t===void 0?null:t],e},useContext:rs,useEffect:kE,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Zy(4194308,4,PM.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Zy(4194308,4,e,t)},useInsertionEffect:function(e,t){return Zy(4,2,e,t)},useMemo:function(e,t){var n=Sl();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Sl();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=oY.bind(null,br,e),[r.memoizedState,e]},useRef:function(e){var t=Sl();return e={current:e},t.memoizedState=e},useState:_E,useDebugValue:X9,useDeferredValue:function(e){return Sl().memoizedState=e},useTransition:function(){var e=_E(!1),t=e[0];return e=iY.bind(null,e[1]),Sl().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=br,i=Sl();if(lr){if(n===void 0)throw Error($e(407));n=n()}else{if(n=t(),Si===null)throw Error($e(349));(dh&30)!==0||bM(r,t,n)}i.memoizedState=n;var o={value:n,getSnapshot:t};return i.queue=o,kE(SM.bind(null,r,o,e),[e]),r.flags|=2048,Rm(9,xM.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=Sl(),t=Si.identifierPrefix;if(lr){var n=Mu,r=Ru;n=(r&~(1<<32-Fs(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Am++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=a.createElement(n,{is:r.is}):(e=a.createElement(n),n==="select"&&(a=e,r.multiple?a.multiple=!0:r.size&&(a.size=r.size))):e=a.createElementNS(e,n),e[Pl]=t,e[Pm]=r,UM(e,t,!1,!1),t.stateNode=e;e:{switch(a=Cw(n,r),n){case"dialog":Jn("cancel",e),Jn("close",e),i=r;break;case"iframe":case"object":case"embed":Jn("load",e),i=r;break;case"video":case"audio":for(i=0;iT0&&(t.flags|=128,r=!0,ag(o,!1),t.lanes=4194304)}else{if(!r)if(e=X5(a),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),ag(o,!0),o.tail===null&&o.tailMode==="hidden"&&!a.alternate&&!lr)return Qi(t),null}else 2*Vr()-o.renderingStartTime>T0&&n!==1073741824&&(t.flags|=128,r=!0,ag(o,!1),t.lanes=4194304);o.isBackwards?(a.sibling=t.child,t.child=a):(n=o.last,n!==null?n.sibling=a:t.child=a,o.last=a)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=Vr(),t.sibling=null,n=yr.current,Zn(yr,r?n&1|2:n&1),t):(Qi(t),null);case 22:case 23:return r8(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(ga&1073741824)!==0&&(Qi(t),t.subtreeFlags&6&&(t.flags|=8192)):Qi(t),null;case 24:return null;case 25:return null}throw Error($e(156,t.tag))}function gY(e,t){switch(z9(t),t.tag){case 1:return Go(t.type)&&U5(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return E0(),nr(Uo),nr(ro),j9(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return G9(t),null;case 13:if(nr(yr),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error($e(340));_0()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return nr(yr),null;case 4:return E0(),null;case 10:return H9(t.type._context),null;case 22:case 23:return r8(),null;case 24:return null;default:return null}}var G2=!1,to=!1,mY=typeof WeakSet=="function"?WeakSet:Set,at=null;function Gp(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){Lr(e,t,r)}else n.current=null}function Zw(e,t,n){try{n()}catch(r){Lr(e,t,r)}}var OE=!1;function vY(e,t){if(Mw=B5,e=ZR(),N9(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var i=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var a=0,s=-1,l=-1,d=0,p=0,g=e,m=null;t:for(;;){for(var y;g!==n||i!==0&&g.nodeType!==3||(s=a+i),g!==o||r!==0&&g.nodeType!==3||(l=a+r),g.nodeType===3&&(a+=g.nodeValue.length),(y=g.firstChild)!==null;)m=g,g=y;for(;;){if(g===e)break t;if(m===n&&++d===i&&(s=a),m===o&&++p===r&&(l=a),(y=g.nextSibling)!==null)break;g=m,m=g.parentNode}g=y}n=s===-1||l===-1?null:{start:s,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(Ow={focusedElem:e,selectionRange:n},B5=!1,at=t;at!==null;)if(t=at,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,at=e;else for(;at!==null;){t=at;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var S=b.memoizedProps,E=b.memoizedState,P=t.stateNode,k=P.getSnapshotBeforeUpdate(t.elementType===t.type?S:Os(t.type,S),E);P.__reactInternalSnapshotBeforeUpdate=k}break;case 3:var L=t.stateNode.containerInfo;L.nodeType===1?L.textContent="":L.nodeType===9&&L.documentElement&&L.removeChild(L.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error($e(163))}}catch(R){Lr(t,t.return,R)}if(e=t.sibling,e!==null){e.return=t.return,at=e;break}at=t.return}return b=OE,OE=!1,b}function qg(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var i=r=r.next;do{if((i.tag&e)===e){var o=i.destroy;i.destroy=void 0,o!==void 0&&Zw(t,n,o)}i=i.next}while(i!==r)}}function u4(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Xw(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function qM(e){var t=e.alternate;t!==null&&(e.alternate=null,qM(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Pl],delete t[Pm],delete t[zw],delete t[JK],delete t[eY])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function KM(e){return e.tag===5||e.tag===3||e.tag===4}function NE(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||KM(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Qw(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=V5));else if(r!==4&&(e=e.child,e!==null))for(Qw(e,t,n),e=e.sibling;e!==null;)Qw(e,t,n),e=e.sibling}function Jw(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Jw(e,t,n),e=e.sibling;e!==null;)Jw(e,t,n),e=e.sibling}var Fi=null,Ns=!1;function Fc(e,t,n){for(n=n.child;n!==null;)YM(e,t,n),n=n.sibling}function YM(e,t,n){if(Il&&typeof Il.onCommitFiberUnmount=="function")try{Il.onCommitFiberUnmount(t4,n)}catch{}switch(n.tag){case 5:to||Gp(n,t);case 6:var r=Fi,i=Ns;Fi=null,Fc(e,t,n),Fi=r,Ns=i,Fi!==null&&(Ns?(e=Fi,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):Fi.removeChild(n.stateNode));break;case 18:Fi!==null&&(Ns?(e=Fi,n=n.stateNode,e.nodeType===8?$x(e.parentNode,n):e.nodeType===1&&$x(e,n),wm(e)):$x(Fi,n.stateNode));break;case 4:r=Fi,i=Ns,Fi=n.stateNode.containerInfo,Ns=!0,Fc(e,t,n),Fi=r,Ns=i;break;case 0:case 11:case 14:case 15:if(!to&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){i=r=r.next;do{var o=i,a=o.destroy;o=o.tag,a!==void 0&&((o&2)!==0||(o&4)!==0)&&Zw(n,t,a),i=i.next}while(i!==r)}Fc(e,t,n);break;case 1:if(!to&&(Gp(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(s){Lr(n,t,s)}Fc(e,t,n);break;case 21:Fc(e,t,n);break;case 22:n.mode&1?(to=(r=to)||n.memoizedState!==null,Fc(e,t,n),to=r):Fc(e,t,n);break;default:Fc(e,t,n)}}function DE(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new mY),t.forEach(function(r){var i=EY.bind(null,e,r);n.has(r)||(n.add(r),r.then(i,i))})}}function Ps(e,t){var n=t.deletions;if(n!==null)for(var r=0;ri&&(i=a),r&=~o}if(r=i,r=Vr()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*bY(r/1960))-r,10e?16:e,nd===null)var r=!1;else{if(e=nd,nd=null,n3=0,(fn&6)!==0)throw Error($e(331));var i=fn;for(fn|=4,at=e.current;at!==null;){var o=at,a=o.child;if((at.flags&16)!==0){var s=o.deletions;if(s!==null){for(var l=0;lVr()-t8?nh(e,0):e8|=n),jo(e,t)}function rO(e,t){t===0&&((e.mode&1)===0?t=1:(t=D2,D2<<=1,(D2&130023424)===0&&(D2=4194304)));var n=wo();e=$u(e,t),e!==null&&(hv(e,t,n),jo(e,n))}function kY(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),rO(e,n)}function EY(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,i=e.memoizedState;i!==null&&(n=i.retryLane);break;case 19:r=e.stateNode;break;default:throw Error($e(314))}r!==null&&r.delete(t),rO(e,n)}var iO;iO=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||Uo.current)Vo=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return Vo=!1,hY(e,t,n);Vo=(e.flags&131072)!==0}else Vo=!1,lr&&(t.flags&1048576)!==0&&sM(t,q5,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Xy(e,t),e=t.pendingProps;var i=C0(t,ro.current);i0(t,n),i=K9(null,t,r,e,i,n);var o=Y9();return t.flags|=1,typeof i=="object"&&i!==null&&typeof i.render=="function"&&i.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Go(r)?(o=!0,G5(t)):o=!1,t.memoizedState=i.state!==null&&i.state!==void 0?i.state:null,V9(t),i.updater=s4,t.stateNode=i,i._reactInternals=t,Vw(t,r,e,n),t=jw(null,t,r,!0,o,n)):(t.tag=0,lr&&o&&D9(t),bo(null,t,i,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Xy(e,t),e=t.pendingProps,i=r._init,r=i(r._payload),t.type=r,i=t.tag=TY(r),e=Os(r,e),i){case 0:t=Gw(null,t,r,e,n);break e;case 1:t=IE(null,t,r,e,n);break e;case 11:t=LE(null,t,r,e,n);break e;case 14:t=AE(null,t,r,Os(r.type,e),n);break e}throw Error($e(306,r,""))}return t;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:Os(r,i),Gw(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:Os(r,i),IE(e,t,r,i,n);case 3:e:{if(HM(t),e===null)throw Error($e(387));r=t.pendingProps,o=t.memoizedState,i=o.element,dM(e,t),Z5(t,r,null,n);var a=t.memoizedState;if(r=a.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:a.cache,pendingSuspenseBoundaries:a.pendingSuspenseBoundaries,transitions:a.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){i=P0(Error($e(423)),t),t=RE(e,t,r,n,i);break e}else if(r!==i){i=P0(Error($e(424)),t),t=RE(e,t,r,n,i);break e}else for(va=cd(t.stateNode.containerInfo.firstChild),ba=t,lr=!0,zs=null,n=gM(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(_0(),r===i){t=Fu(e,t,n);break e}bo(e,t,r,n)}t=t.child}return t;case 5:return mM(t),e===null&&Bw(t),r=t.type,i=t.pendingProps,o=e!==null?e.memoizedProps:null,a=i.children,Nw(r,i)?a=null:o!==null&&Nw(r,o)&&(t.flags|=32),BM(e,t),bo(e,t,a,n),t.child;case 6:return e===null&&Bw(t),null;case 13:return WM(e,t,n);case 4:return U9(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=k0(t,null,r,n):bo(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:Os(r,i),LE(e,t,r,i,n);case 7:return bo(e,t,t.pendingProps,n),t.child;case 8:return bo(e,t,t.pendingProps.children,n),t.child;case 12:return bo(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,o=t.memoizedProps,a=i.value,Zn(K5,r._currentValue),r._currentValue=a,o!==null)if(Ws(o.value,a)){if(o.children===i.children&&!Uo.current){t=Fu(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var s=o.dependencies;if(s!==null){a=o.child;for(var l=s.firstContext;l!==null;){if(l.context===r){if(o.tag===1){l=Nu(-1,n&-n),l.tag=2;var d=o.updateQueue;if(d!==null){d=d.shared;var p=d.pending;p===null?l.next=l:(l.next=p.next,p.next=l),d.pending=l}}o.lanes|=n,l=o.alternate,l!==null&&(l.lanes|=n),Hw(o.return,n,t),s.lanes|=n;break}l=l.next}}else if(o.tag===10)a=o.type===t.type?null:o.child;else if(o.tag===18){if(a=o.return,a===null)throw Error($e(341));a.lanes|=n,s=a.alternate,s!==null&&(s.lanes|=n),Hw(a,n,t),a=o.sibling}else a=o.child;if(a!==null)a.return=o;else for(a=o;a!==null;){if(a===t){a=null;break}if(o=a.sibling,o!==null){o.return=a.return,a=o;break}a=a.return}o=a}bo(e,t,i.children,n),t=t.child}return t;case 9:return i=t.type,r=t.pendingProps.children,i0(t,n),i=rs(i),r=r(i),t.flags|=1,bo(e,t,r,n),t.child;case 14:return r=t.type,i=Os(r,t.pendingProps),i=Os(r.type,i),AE(e,t,r,i,n);case 15:return $M(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:Os(r,i),Xy(e,t),t.tag=1,Go(r)?(e=!0,G5(t)):e=!1,i0(t,n),hM(t,r,i),Vw(t,r,i,n),jw(null,t,r,!0,e,n);case 19:return VM(e,t,n);case 22:return FM(e,t,n)}throw Error($e(156,t.tag))};function oO(e,t){return IR(e,t)}function PY(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Ja(e,t,n,r){return new PY(e,t,n,r)}function o8(e){return e=e.prototype,!(!e||!e.isReactComponent)}function TY(e){if(typeof e=="function")return o8(e)?1:0;if(e!=null){if(e=e.$$typeof,e===_9)return 11;if(e===k9)return 14}return 2}function pd(e,t){var n=e.alternate;return n===null?(n=Ja(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function e5(e,t,n,r,i,o){var a=2;if(r=e,typeof e=="function")o8(e)&&(a=1);else if(typeof e=="string")a=5;else e:switch(e){case Dp:return rh(n.children,i,o,t);case C9:a=8,i|=8;break;case hw:return e=Ja(12,n,t,i|2),e.elementType=hw,e.lanes=o,e;case pw:return e=Ja(13,n,t,i),e.elementType=pw,e.lanes=o,e;case gw:return e=Ja(19,n,t,i),e.elementType=gw,e.lanes=o,e;case pR:return d4(n,i,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case fR:a=10;break e;case hR:a=9;break e;case _9:a=11;break e;case k9:a=14;break e;case Kc:a=16,r=null;break e}throw Error($e(130,e==null?e:typeof e,""))}return t=Ja(a,n,t,i),t.elementType=e,t.type=r,t.lanes=o,t}function rh(e,t,n,r){return e=Ja(7,e,r,t),e.lanes=n,e}function d4(e,t,n,r){return e=Ja(22,e,r,t),e.elementType=pR,e.lanes=n,e.stateNode={isHidden:!1},e}function jx(e,t,n){return e=Ja(6,e,null,t),e.lanes=n,e}function qx(e,t,n){return t=Ja(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function LY(e,t,n,r,i){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Px(0),this.expirationTimes=Px(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Px(0),this.identifierPrefix=r,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function a8(e,t,n,r,i,o,a,s,l){return e=new LY(e,t,n,s,l),t===1?(t=1,o===!0&&(t|=8)):t=0,o=Ja(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},V9(o),e}function AY(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Ea})(jl);const K2=g9(jl.exports);var UE=jl.exports;dw.createRoot=UE.createRoot,dw.hydrateRoot=UE.hydrateRoot;var Ml=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,m4={exports:{}},v4={};/** - * @license React - * react-jsx-runtime.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var NY=C.exports,DY=Symbol.for("react.element"),zY=Symbol.for("react.fragment"),$Y=Object.prototype.hasOwnProperty,FY=NY.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,BY={key:!0,ref:!0,__self:!0,__source:!0};function uO(e,t,n){var r,i={},o=null,a=null;n!==void 0&&(o=""+n),t.key!==void 0&&(o=""+t.key),t.ref!==void 0&&(a=t.ref);for(r in t)$Y.call(t,r)&&!BY.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)i[r]===void 0&&(i[r]=t[r]);return{$$typeof:DY,type:e,key:o,ref:a,props:i,_owner:FY.current}}v4.Fragment=zY;v4.jsx=uO;v4.jsxs=uO;(function(e){e.exports=v4})(m4);const Un=m4.exports.Fragment,w=m4.exports.jsx,ne=m4.exports.jsxs;var c8=C.exports.createContext({});c8.displayName="ColorModeContext";function d8(){const e=C.exports.useContext(c8);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var Y2={light:"chakra-ui-light",dark:"chakra-ui-dark"};function HY(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const i=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,i?.()},setClassName(r){document.body.classList.add(r?Y2.dark:Y2.light),document.body.classList.remove(r?Y2.light:Y2.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const i=n.query(),o=a=>{r(a.matches?"dark":"light")};return typeof i.addListener=="function"?i.addListener(o):i.addEventListener("change",o),()=>{typeof i.removeListener=="function"?i.removeListener(o):i.removeEventListener("change",o)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var WY="chakra-ui-color-mode";function VY(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var UY=VY(WY),GE=()=>{};function jE(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function cO(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:i,disableTransitionOnChange:o}={},colorModeManager:a=UY}=e,s=i==="dark"?"dark":"light",[l,d]=C.exports.useState(()=>jE(a,s)),[p,g]=C.exports.useState(()=>jE(a)),{getSystemTheme:m,setClassName:y,setDataset:b,addListener:S}=C.exports.useMemo(()=>HY({preventTransition:o}),[o]),E=i==="system"&&!l?p:l,P=C.exports.useCallback(R=>{const N=R==="system"?m():R;d(N),y(N==="dark"),b(N),a.set(N)},[a,m,y,b]);Ml(()=>{i==="system"&&g(m())},[]),C.exports.useEffect(()=>{const R=a.get();if(R){P(R);return}if(i==="system"){P("system");return}P(s)},[a,s,i,P]);const k=C.exports.useCallback(()=>{P(E==="dark"?"light":"dark")},[E,P]);C.exports.useEffect(()=>{if(!!r)return S(P)},[r,S,P]);const L=C.exports.useMemo(()=>({colorMode:t??E,toggleColorMode:t?GE:k,setColorMode:t?GE:P}),[E,k,P,t]);return w(c8.Provider,{value:L,children:n})}cO.displayName="ColorModeProvider";var GY=new Set(["dark","light","system"]);function jY(e){let t=e;return GY.has(t)||(t="light"),t}function qY(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,i=jY(t),o=n==="cookie",a=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${i}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); - `,s=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${i}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); - `;return`!${o?a:s}`.trim()}function KY(e={}){return w("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:qY(e)}})}var i6={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",l="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",g="[object Date]",m="[object Error]",y="[object Function]",b="[object GeneratorFunction]",S="[object Map]",E="[object Number]",P="[object Null]",k="[object Object]",L="[object Proxy]",R="[object RegExp]",N="[object Set]",z="[object String]",$="[object Undefined]",F="[object WeakMap]",q="[object ArrayBuffer]",j="[object DataView]",Y="[object Float32Array]",ve="[object Float64Array]",ge="[object Int8Array]",Se="[object Int16Array]",_e="[object Int32Array]",we="[object Uint8Array]",J="[object Uint8ClampedArray]",G="[object Uint16Array]",te="[object Uint32Array]",Q=/[\\^$.*+?()[\]{}|]/g,W=/^\[object .+?Constructor\]$/,se=/^(?:0|[1-9]\d*)$/,de={};de[Y]=de[ve]=de[ge]=de[Se]=de[_e]=de[we]=de[J]=de[G]=de[te]=!0,de[s]=de[l]=de[q]=de[p]=de[j]=de[g]=de[m]=de[y]=de[S]=de[E]=de[k]=de[R]=de[N]=de[z]=de[F]=!1;var xe=typeof Au=="object"&&Au&&Au.Object===Object&&Au,ze=typeof self=="object"&&self&&self.Object===Object&&self,Me=xe||ze||Function("return this")(),Ue=t&&!t.nodeType&&t,Ee=Ue&&!0&&e&&!e.nodeType&&e,Ve=Ee&&Ee.exports===Ue,ot=Ve&&xe.process,pt=function(){try{var I=Ee&&Ee.require&&Ee.require("util").types;return I||ot&&ot.binding&&ot.binding("util")}catch{}}(),Wt=pt&&pt.isTypedArray;function Dt(I,D,U){switch(U.length){case 0:return I.call(D);case 1:return I.call(D,U[0]);case 2:return I.call(D,U[0],U[1]);case 3:return I.call(D,U[0],U[1],U[2])}return I.apply(D,U)}function Oe(I,D){for(var U=-1,me=Array(I);++U-1}function Bd(I,D){var U=this.__data__,me=ji(U,I);return me<0?(++this.size,U.push([I,D])):U[me][1]=D,this}cr.prototype.clear=Zl,cr.prototype.delete=Fd,cr.prototype.get=qs,cr.prototype.has=Xl,cr.prototype.set=Bd;function Ci(I){var D=-1,U=I==null?0:I.length;for(this.clear();++D1?U[Xe-1]:void 0,Ke=Xe>2?U[2]:void 0;for(ft=I.length>3&&typeof ft=="function"?(Xe--,ft):void 0,Ke&&ac(U[0],U[1],Ke)&&(ft=Xe<3?void 0:ft,Xe=1),D=Object(D);++me-1&&I%1==0&&I0){if(++D>=i)return arguments[0]}else D=0;return I.apply(void 0,arguments)}}function Xs(I){if(I!=null){try{return on.call(I)}catch{}try{return I+""}catch{}}return""}function ki(I,D){return I===D||I!==I&&D!==D}var ps=La(function(){return arguments}())?La:function(I){return pn(I)&&zt.call(I,"callee")&&!Be.call(I,"callee")},Jo=Array.isArray;function It(I){return I!=null&&ru(I.length)&&!Na(I)}function sc(I){return pn(I)&&It(I)}var gs=tn||Jd;function Na(I){if(!Or(I))return!1;var D=oo(I);return D==y||D==b||D==d||D==L}function ru(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=a}function Or(I){var D=typeof I;return I!=null&&(D=="object"||D=="function")}function pn(I){return I!=null&&typeof I=="object"}function iu(I){if(!pn(I)||oo(I)!=k)return!1;var D=je(I);if(D===null)return!0;var U=zt.call(D,"constructor")&&D.constructor;return typeof U=="function"&&U instanceof U&&on.call(U)==jt}var ou=Wt?nt(Wt):Ys;function au(I){return Mr(I,su(I))}function su(I){return It(I)?Zd(I,!0):Aa(I)}var an=Qo(function(I,D,U,me){qi(I,D,U,me)});function Ot(I){return function(){return I}}function lu(I){return I}function Jd(){return!1}e.exports=an})(i6,i6.exports);const Bu=i6.exports;function Al(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function qp(e,...t){return YY(e)?e(...t):e}var YY=e=>typeof e=="function",ZY=e=>/!(important)?$/.test(e),qE=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,o6=(e,t)=>n=>{const r=String(t),i=ZY(r),o=qE(r),a=e?`${e}.${o}`:o;let s=Al(n.__cssMap)&&a in n.__cssMap?n.__cssMap[a].varRef:t;return s=qE(s),i?`${s} !important`:s};function Om(e){const{scale:t,transform:n,compose:r}=e;return(o,a)=>{const s=o6(t,o)(a);let l=n?.(s,a)??s;return r&&(l=r(l,a)),l}}var Z2=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Ts(e,t){return n=>{const r={property:n,scale:e};return r.transform=Om({scale:e,transform:t}),r}}var XY=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function QY(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:XY(t),transform:n?Om({scale:n,compose:r}):r}}var dO=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function JY(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...dO].join(" ")}function eZ(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...dO].join(" ")}var tZ={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},nZ={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function rZ(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var iZ={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},fO="& > :not(style) ~ :not(style)",oZ={[fO]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},aZ={[fO]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},a6={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},sZ=new Set(Object.values(a6)),hO=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),lZ=e=>e.trim();function uZ(e,t){var n;if(e==null||hO.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:i,values:o}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!i||!o)return e;const a=i.includes("-gradient")?i:`${i}-gradient`,[s,...l]=o.split(",").map(lZ).filter(Boolean);if(l?.length===0)return e;const d=s in a6?a6[s]:s;l.unshift(d);const p=l.map(g=>{if(sZ.has(g))return g;const m=g.indexOf(" "),[y,b]=m!==-1?[g.substr(0,m),g.substr(m+1)]:[g],S=pO(b)?b:b&&b.split(" "),E=`colors.${y}`,P=E in t.__cssMap?t.__cssMap[E].varRef:y;return S?[P,...Array.isArray(S)?S:[S]].join(" "):P});return`${a}(${p.join(", ")})`}var pO=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),cZ=(e,t)=>uZ(e,t??{});function dZ(e){return/^var\(--.+\)$/.test(e)}var fZ=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},ml=e=>t=>`${e}(${t})`,cn={filter(e){return e!=="auto"?e:tZ},backdropFilter(e){return e!=="auto"?e:nZ},ring(e){return rZ(cn.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?JY():e==="auto-gpu"?eZ():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=fZ(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(dZ(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:cZ,blur:ml("blur"),opacity:ml("opacity"),brightness:ml("brightness"),contrast:ml("contrast"),dropShadow:ml("drop-shadow"),grayscale:ml("grayscale"),hueRotate:ml("hue-rotate"),invert:ml("invert"),saturate:ml("saturate"),sepia:ml("sepia"),bgImage(e){return e==null||pO(e)||hO.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=iZ[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},ie={borderWidths:Ts("borderWidths"),borderStyles:Ts("borderStyles"),colors:Ts("colors"),borders:Ts("borders"),radii:Ts("radii",cn.px),space:Ts("space",Z2(cn.vh,cn.px)),spaceT:Ts("space",Z2(cn.vh,cn.px)),degreeT(e){return{property:e,transform:cn.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Om({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Ts("sizes",Z2(cn.vh,cn.px)),sizesT:Ts("sizes",Z2(cn.vh,cn.fraction)),shadows:Ts("shadows"),logical:QY,blur:Ts("blur",cn.blur)},t5={background:ie.colors("background"),backgroundColor:ie.colors("backgroundColor"),backgroundImage:ie.propT("backgroundImage",cn.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:cn.bgClip},bgSize:ie.prop("backgroundSize"),bgPosition:ie.prop("backgroundPosition"),bg:ie.colors("background"),bgColor:ie.colors("backgroundColor"),bgPos:ie.prop("backgroundPosition"),bgRepeat:ie.prop("backgroundRepeat"),bgAttachment:ie.prop("backgroundAttachment"),bgGradient:ie.propT("backgroundImage",cn.gradient),bgClip:{transform:cn.bgClip}};Object.assign(t5,{bgImage:t5.backgroundImage,bgImg:t5.backgroundImage});var xn={border:ie.borders("border"),borderWidth:ie.borderWidths("borderWidth"),borderStyle:ie.borderStyles("borderStyle"),borderColor:ie.colors("borderColor"),borderRadius:ie.radii("borderRadius"),borderTop:ie.borders("borderTop"),borderBlockStart:ie.borders("borderBlockStart"),borderTopLeftRadius:ie.radii("borderTopLeftRadius"),borderStartStartRadius:ie.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:ie.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:ie.radii("borderTopRightRadius"),borderStartEndRadius:ie.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:ie.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:ie.borders("borderRight"),borderInlineEnd:ie.borders("borderInlineEnd"),borderBottom:ie.borders("borderBottom"),borderBlockEnd:ie.borders("borderBlockEnd"),borderBottomLeftRadius:ie.radii("borderBottomLeftRadius"),borderBottomRightRadius:ie.radii("borderBottomRightRadius"),borderLeft:ie.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:ie.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:ie.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:ie.borders(["borderLeft","borderRight"]),borderInline:ie.borders("borderInline"),borderY:ie.borders(["borderTop","borderBottom"]),borderBlock:ie.borders("borderBlock"),borderTopWidth:ie.borderWidths("borderTopWidth"),borderBlockStartWidth:ie.borderWidths("borderBlockStartWidth"),borderTopColor:ie.colors("borderTopColor"),borderBlockStartColor:ie.colors("borderBlockStartColor"),borderTopStyle:ie.borderStyles("borderTopStyle"),borderBlockStartStyle:ie.borderStyles("borderBlockStartStyle"),borderBottomWidth:ie.borderWidths("borderBottomWidth"),borderBlockEndWidth:ie.borderWidths("borderBlockEndWidth"),borderBottomColor:ie.colors("borderBottomColor"),borderBlockEndColor:ie.colors("borderBlockEndColor"),borderBottomStyle:ie.borderStyles("borderBottomStyle"),borderBlockEndStyle:ie.borderStyles("borderBlockEndStyle"),borderLeftWidth:ie.borderWidths("borderLeftWidth"),borderInlineStartWidth:ie.borderWidths("borderInlineStartWidth"),borderLeftColor:ie.colors("borderLeftColor"),borderInlineStartColor:ie.colors("borderInlineStartColor"),borderLeftStyle:ie.borderStyles("borderLeftStyle"),borderInlineStartStyle:ie.borderStyles("borderInlineStartStyle"),borderRightWidth:ie.borderWidths("borderRightWidth"),borderInlineEndWidth:ie.borderWidths("borderInlineEndWidth"),borderRightColor:ie.colors("borderRightColor"),borderInlineEndColor:ie.colors("borderInlineEndColor"),borderRightStyle:ie.borderStyles("borderRightStyle"),borderInlineEndStyle:ie.borderStyles("borderInlineEndStyle"),borderTopRadius:ie.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:ie.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:ie.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:ie.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(xn,{rounded:xn.borderRadius,roundedTop:xn.borderTopRadius,roundedTopLeft:xn.borderTopLeftRadius,roundedTopRight:xn.borderTopRightRadius,roundedTopStart:xn.borderStartStartRadius,roundedTopEnd:xn.borderStartEndRadius,roundedBottom:xn.borderBottomRadius,roundedBottomLeft:xn.borderBottomLeftRadius,roundedBottomRight:xn.borderBottomRightRadius,roundedBottomStart:xn.borderEndStartRadius,roundedBottomEnd:xn.borderEndEndRadius,roundedLeft:xn.borderLeftRadius,roundedRight:xn.borderRightRadius,roundedStart:xn.borderInlineStartRadius,roundedEnd:xn.borderInlineEndRadius,borderStart:xn.borderInlineStart,borderEnd:xn.borderInlineEnd,borderTopStartRadius:xn.borderStartStartRadius,borderTopEndRadius:xn.borderStartEndRadius,borderBottomStartRadius:xn.borderEndStartRadius,borderBottomEndRadius:xn.borderEndEndRadius,borderStartRadius:xn.borderInlineStartRadius,borderEndRadius:xn.borderInlineEndRadius,borderStartWidth:xn.borderInlineStartWidth,borderEndWidth:xn.borderInlineEndWidth,borderStartColor:xn.borderInlineStartColor,borderEndColor:xn.borderInlineEndColor,borderStartStyle:xn.borderInlineStartStyle,borderEndStyle:xn.borderInlineEndStyle});var hZ={color:ie.colors("color"),textColor:ie.colors("color"),fill:ie.colors("fill"),stroke:ie.colors("stroke")},s6={boxShadow:ie.shadows("boxShadow"),mixBlendMode:!0,blendMode:ie.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:ie.prop("backgroundBlendMode"),opacity:!0};Object.assign(s6,{shadow:s6.boxShadow});var pZ={filter:{transform:cn.filter},blur:ie.blur("--chakra-blur"),brightness:ie.propT("--chakra-brightness",cn.brightness),contrast:ie.propT("--chakra-contrast",cn.contrast),hueRotate:ie.degreeT("--chakra-hue-rotate"),invert:ie.propT("--chakra-invert",cn.invert),saturate:ie.propT("--chakra-saturate",cn.saturate),dropShadow:ie.propT("--chakra-drop-shadow",cn.dropShadow),backdropFilter:{transform:cn.backdropFilter},backdropBlur:ie.blur("--chakra-backdrop-blur"),backdropBrightness:ie.propT("--chakra-backdrop-brightness",cn.brightness),backdropContrast:ie.propT("--chakra-backdrop-contrast",cn.contrast),backdropHueRotate:ie.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:ie.propT("--chakra-backdrop-invert",cn.invert),backdropSaturate:ie.propT("--chakra-backdrop-saturate",cn.saturate)},o3={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:cn.flexDirection},experimental_spaceX:{static:oZ,transform:Om({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:aZ,transform:Om({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:ie.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:ie.space("gap"),rowGap:ie.space("rowGap"),columnGap:ie.space("columnGap")};Object.assign(o3,{flexDir:o3.flexDirection});var gO={gridGap:ie.space("gridGap"),gridColumnGap:ie.space("gridColumnGap"),gridRowGap:ie.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},gZ={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:cn.outline},outlineOffset:!0,outlineColor:ie.colors("outlineColor")},Ga={width:ie.sizesT("width"),inlineSize:ie.sizesT("inlineSize"),height:ie.sizes("height"),blockSize:ie.sizes("blockSize"),boxSize:ie.sizes(["width","height"]),minWidth:ie.sizes("minWidth"),minInlineSize:ie.sizes("minInlineSize"),minHeight:ie.sizes("minHeight"),minBlockSize:ie.sizes("minBlockSize"),maxWidth:ie.sizes("maxWidth"),maxInlineSize:ie.sizes("maxInlineSize"),maxHeight:ie.sizes("maxHeight"),maxBlockSize:ie.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:ie.propT("float",cn.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(Ga,{w:Ga.width,h:Ga.height,minW:Ga.minWidth,maxW:Ga.maxWidth,minH:Ga.minHeight,maxH:Ga.maxHeight,overscroll:Ga.overscrollBehavior,overscrollX:Ga.overscrollBehaviorX,overscrollY:Ga.overscrollBehaviorY});var mZ={listStyleType:!0,listStylePosition:!0,listStylePos:ie.prop("listStylePosition"),listStyleImage:!0,listStyleImg:ie.prop("listStyleImage")};function vZ(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},bZ=yZ(vZ),xZ={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},SZ={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Kx=(e,t,n)=>{const r={},i=bZ(e,t,{});for(const o in i)o in n&&n[o]!=null||(r[o]=i[o]);return r},wZ={srOnly:{transform(e){return e===!0?xZ:e==="focusable"?SZ:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Kx(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Kx(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Kx(t,e,n)}},Zg={position:!0,pos:ie.prop("position"),zIndex:ie.prop("zIndex","zIndices"),inset:ie.spaceT("inset"),insetX:ie.spaceT(["left","right"]),insetInline:ie.spaceT("insetInline"),insetY:ie.spaceT(["top","bottom"]),insetBlock:ie.spaceT("insetBlock"),top:ie.spaceT("top"),insetBlockStart:ie.spaceT("insetBlockStart"),bottom:ie.spaceT("bottom"),insetBlockEnd:ie.spaceT("insetBlockEnd"),left:ie.spaceT("left"),insetInlineStart:ie.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:ie.spaceT("right"),insetInlineEnd:ie.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(Zg,{insetStart:Zg.insetInlineStart,insetEnd:Zg.insetInlineEnd});var CZ={ring:{transform:cn.ring},ringColor:ie.colors("--chakra-ring-color"),ringOffset:ie.prop("--chakra-ring-offset-width"),ringOffsetColor:ie.colors("--chakra-ring-offset-color"),ringInset:ie.prop("--chakra-ring-inset")},er={margin:ie.spaceT("margin"),marginTop:ie.spaceT("marginTop"),marginBlockStart:ie.spaceT("marginBlockStart"),marginRight:ie.spaceT("marginRight"),marginInlineEnd:ie.spaceT("marginInlineEnd"),marginBottom:ie.spaceT("marginBottom"),marginBlockEnd:ie.spaceT("marginBlockEnd"),marginLeft:ie.spaceT("marginLeft"),marginInlineStart:ie.spaceT("marginInlineStart"),marginX:ie.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:ie.spaceT("marginInline"),marginY:ie.spaceT(["marginTop","marginBottom"]),marginBlock:ie.spaceT("marginBlock"),padding:ie.space("padding"),paddingTop:ie.space("paddingTop"),paddingBlockStart:ie.space("paddingBlockStart"),paddingRight:ie.space("paddingRight"),paddingBottom:ie.space("paddingBottom"),paddingBlockEnd:ie.space("paddingBlockEnd"),paddingLeft:ie.space("paddingLeft"),paddingInlineStart:ie.space("paddingInlineStart"),paddingInlineEnd:ie.space("paddingInlineEnd"),paddingX:ie.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:ie.space("paddingInline"),paddingY:ie.space(["paddingTop","paddingBottom"]),paddingBlock:ie.space("paddingBlock")};Object.assign(er,{m:er.margin,mt:er.marginTop,mr:er.marginRight,me:er.marginInlineEnd,marginEnd:er.marginInlineEnd,mb:er.marginBottom,ml:er.marginLeft,ms:er.marginInlineStart,marginStart:er.marginInlineStart,mx:er.marginX,my:er.marginY,p:er.padding,pt:er.paddingTop,py:er.paddingY,px:er.paddingX,pb:er.paddingBottom,pl:er.paddingLeft,ps:er.paddingInlineStart,paddingStart:er.paddingInlineStart,pr:er.paddingRight,pe:er.paddingInlineEnd,paddingEnd:er.paddingInlineEnd});var _Z={textDecorationColor:ie.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:ie.shadows("textShadow")},kZ={clipPath:!0,transform:ie.propT("transform",cn.transform),transformOrigin:!0,translateX:ie.spaceT("--chakra-translate-x"),translateY:ie.spaceT("--chakra-translate-y"),skewX:ie.degreeT("--chakra-skew-x"),skewY:ie.degreeT("--chakra-skew-y"),scaleX:ie.prop("--chakra-scale-x"),scaleY:ie.prop("--chakra-scale-y"),scale:ie.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:ie.degreeT("--chakra-rotate")},EZ={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:ie.prop("transitionDuration","transition.duration"),transitionProperty:ie.prop("transitionProperty","transition.property"),transitionTimingFunction:ie.prop("transitionTimingFunction","transition.easing")},PZ={fontFamily:ie.prop("fontFamily","fonts"),fontSize:ie.prop("fontSize","fontSizes",cn.px),fontWeight:ie.prop("fontWeight","fontWeights"),lineHeight:ie.prop("lineHeight","lineHeights"),letterSpacing:ie.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},TZ={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:ie.spaceT("scrollMargin"),scrollMarginTop:ie.spaceT("scrollMarginTop"),scrollMarginBottom:ie.spaceT("scrollMarginBottom"),scrollMarginLeft:ie.spaceT("scrollMarginLeft"),scrollMarginRight:ie.spaceT("scrollMarginRight"),scrollMarginX:ie.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:ie.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:ie.spaceT("scrollPadding"),scrollPaddingTop:ie.spaceT("scrollPaddingTop"),scrollPaddingBottom:ie.spaceT("scrollPaddingBottom"),scrollPaddingLeft:ie.spaceT("scrollPaddingLeft"),scrollPaddingRight:ie.spaceT("scrollPaddingRight"),scrollPaddingX:ie.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:ie.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function mO(e){return Al(e)&&e.reference?e.reference:String(e)}var y4=(e,...t)=>t.map(mO).join(` ${e} `).replace(/calc/g,""),KE=(...e)=>`calc(${y4("+",...e)})`,YE=(...e)=>`calc(${y4("-",...e)})`,l6=(...e)=>`calc(${y4("*",...e)})`,ZE=(...e)=>`calc(${y4("/",...e)})`,XE=e=>{const t=mO(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:l6(t,-1)},Wf=Object.assign(e=>({add:(...t)=>Wf(KE(e,...t)),subtract:(...t)=>Wf(YE(e,...t)),multiply:(...t)=>Wf(l6(e,...t)),divide:(...t)=>Wf(ZE(e,...t)),negate:()=>Wf(XE(e)),toString:()=>e.toString()}),{add:KE,subtract:YE,multiply:l6,divide:ZE,negate:XE});function LZ(e,t="-"){return e.replace(/\s+/g,t)}function AZ(e){const t=LZ(e.toString());return RZ(IZ(t))}function IZ(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function RZ(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function MZ(e,t=""){return[t,e].filter(Boolean).join("-")}function OZ(e,t){return`var(${e}${t?`, ${t}`:""})`}function NZ(e,t=""){return AZ(`--${MZ(e,t)}`)}function DZ(e,t,n){const r=NZ(e,n);return{variable:r,reference:OZ(r,t)}}function zZ(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function $Z(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function FZ(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function u6(e){if(e==null)return e;const{unitless:t}=FZ(e);return t||typeof e=="number"?`${e}px`:e}var vO=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,f8=e=>Object.fromEntries(Object.entries(e).sort(vO));function QE(e){const t=f8(e);return Object.assign(Object.values(t),t)}function BZ(e){const t=Object.keys(f8(e));return new Set(t)}function JE(e){if(!e)return e;e=u6(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function Pg(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${u6(e)})`),t&&n.push("and",`(max-width: ${u6(t)})`),n.join(" ")}function HZ(e){if(!e)return null;e.base=e.base??"0px";const t=QE(e),n=Object.entries(e).sort(vO).map(([o,a],s,l)=>{let[,d]=l[s+1]??[];return d=parseFloat(d)>0?JE(d):void 0,{_minW:JE(a),breakpoint:o,minW:a,maxW:d,maxWQuery:Pg(null,d),minWQuery:Pg(a),minMaxQuery:Pg(a,d)}}),r=BZ(e),i=Array.from(r.values());return{keys:r,normalized:t,isResponsive(o){const a=Object.keys(o);return a.length>0&&a.every(s=>r.has(s))},asObject:f8(e),asArray:QE(e),details:n,media:[null,...t.map(o=>Pg(o)).slice(1)],toArrayValue(o){if(!zZ(o))throw new Error("toArrayValue: value must be an object");const a=i.map(s=>o[s]??null);for(;$Z(a)===null;)a.pop();return a},toObjectValue(o){if(!Array.isArray(o))throw new Error("toObjectValue: value must be an array");return o.reduce((a,s,l)=>{const d=i[l];return d!=null&&s!=null&&(a[d]=s),a},{})}}}var Mi={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},Bc=e=>yO(t=>e(t,"&"),"[role=group]","[data-group]",".group"),wu=e=>yO(t=>e(t,"~ &"),"[data-peer]",".peer"),yO=(e,...t)=>t.map(e).join(", "),b4={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:Bc(Mi.hover),_peerHover:wu(Mi.hover),_groupFocus:Bc(Mi.focus),_peerFocus:wu(Mi.focus),_groupFocusVisible:Bc(Mi.focusVisible),_peerFocusVisible:wu(Mi.focusVisible),_groupActive:Bc(Mi.active),_peerActive:wu(Mi.active),_groupDisabled:Bc(Mi.disabled),_peerDisabled:wu(Mi.disabled),_groupInvalid:Bc(Mi.invalid),_peerInvalid:wu(Mi.invalid),_groupChecked:Bc(Mi.checked),_peerChecked:wu(Mi.checked),_groupFocusWithin:Bc(Mi.focusWithin),_peerFocusWithin:wu(Mi.focusWithin),_peerPlaceholderShown:wu(Mi.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},WZ=Object.keys(b4);function eP(e,t){return DZ(String(e).replace(/\./g,"-"),void 0,t)}function VZ(e,t){let n={};const r={};for(const[i,o]of Object.entries(e)){const{isSemantic:a,value:s}=o,{variable:l,reference:d}=eP(i,t?.cssVarPrefix);if(!a){if(i.startsWith("space")){const m=i.split("."),[y,...b]=m,S=`${y}.-${b.join(".")}`,E=Wf.negate(s),P=Wf.negate(d);r[S]={value:E,var:l,varRef:P}}n[l]=s,r[i]={value:s,var:l,varRef:d};continue}const p=m=>{const b=[String(i).split(".")[0],m].join(".");if(!e[b])return m;const{reference:E}=eP(b,t?.cssVarPrefix);return E},g=Al(s)?s:{default:s};n=Bu(n,Object.entries(g).reduce((m,[y,b])=>{var S;const E=p(b);if(y==="default")return m[l]=E,m;const P=((S=b4)==null?void 0:S[y])??y;return m[P]={[l]:E},m},{})),r[i]={value:d,var:l,varRef:d}}return{cssVars:n,cssMap:r}}function UZ(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function GZ(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var jZ=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function qZ(e){return GZ(e,jZ)}function KZ(e){return e.semanticTokens}function YZ(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...i}=e;return i}function ZZ({tokens:e,semanticTokens:t}){const n=Object.entries(c6(e)??{}).map(([i,o])=>[i,{isSemantic:!1,value:o}]),r=Object.entries(c6(t,1)??{}).map(([i,o])=>[i,{isSemantic:!0,value:o}]);return Object.fromEntries([...n,...r])}function c6(e,t=1/0){return!Al(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,i])=>(Al(i)||Array.isArray(i)?Object.entries(c6(i,t-1)).forEach(([o,a])=>{n[`${r}.${o}`]=a}):n[r]=i,n),{})}function XZ(e){var t;const n=YZ(e),r=qZ(n),i=KZ(n),o=ZZ({tokens:r,semanticTokens:i}),a=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:s,cssVars:l}=VZ(o,{cssVarPrefix:a});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...l},__cssMap:s,__breakpoints:HZ(n.breakpoints)}),n}var h8=Bu({},t5,xn,hZ,o3,Ga,pZ,CZ,gZ,gO,wZ,Zg,s6,er,TZ,PZ,_Z,kZ,mZ,EZ),QZ=Object.assign({},er,Ga,o3,gO,Zg),JZ=Object.keys(QZ),eX=[...Object.keys(h8),...WZ],tX={...h8,...b4},nX=e=>e in tX;function rX(e){return/^var\(--.+\)$/.test(e)}var iX=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!rX(t),oX=(e,t)=>{if(t==null)return t;const n=s=>{var l,d;return(d=(l=e.__cssMap)==null?void 0:l[s])==null?void 0:d.varRef},r=s=>n(s)??s,i=t.split(",").map(s=>s.trim()),[o,a]=i;return t=n(o)??r(a)??r(t),t};function aX(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:i,toArrayValue:o,media:a}=r.__breakpoints,s=(l,d=!1)=>{var p;const g=qp(l,r);let m={};for(let y in g){let b=qp(g[y],r);if(b==null)continue;if(Array.isArray(b)||Al(b)&&i(b)){let k=Array.isArray(b)?b:o(b);k=k.slice(0,a.length);for(let L=0;Lt=>aX({theme:t,pseudos:b4,configs:h8})(e);function sX(e,t){if(Array.isArray(e))return e;if(Al(e))return t(e);if(e!=null)return[e]}function lX(e,t){for(let n=t+1;n{Bu(d,{[L]:m?k[L]:{[P]:k[L]}})});continue}if(!y){m?Bu(d,k):d[P]=k;continue}d[P]=k}}return d}}function cX(e){return t=>{const{variant:n,size:r,theme:i}=t,o=uX(i);return Bu({},qp(e.baseStyle??{},t),o(e,"sizes",r,t),o(e,"variants",n,t))}}function dX(e,t,n){var r,i;return((i=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:i.varRef)??n}function _n(e){return UZ(e,["styleConfig","size","variant","colorScheme"])}function fX(e){if(e.sheet)return e.sheet;for(var t=0;t0?Bo(j0,--Yo):0,L0--,Xr===10&&(L0=1,S4--),Xr}function xa(){return Xr=Yo2||Dm(Xr)>3?"":" "}function _X(e,t){for(;--t&&xa()&&!(Xr<48||Xr>102||Xr>57&&Xr<65||Xr>70&&Xr<97););return vv(e,n5()+(t<6&&Ol()==32&&xa()==32))}function f6(e){for(;xa();)switch(Xr){case e:return Yo;case 34:case 39:e!==34&&e!==39&&f6(Xr);break;case 40:e===41&&f6(e);break;case 92:xa();break}return Yo}function kX(e,t){for(;xa()&&e+Xr!==47+10;)if(e+Xr===42+42&&Ol()===47)break;return"/*"+vv(t,Yo-1)+"*"+x4(e===47?e:xa())}function EX(e){for(;!Dm(Ol());)xa();return vv(e,Yo)}function PX(e){return kO(i5("",null,null,null,[""],e=_O(e),0,[0],e))}function i5(e,t,n,r,i,o,a,s,l){for(var d=0,p=0,g=a,m=0,y=0,b=0,S=1,E=1,P=1,k=0,L="",R=i,N=o,z=r,$=L;E;)switch(b=k,k=xa()){case 40:if(b!=108&&$.charCodeAt(g-1)==58){d6($+=Pn(r5(k),"&","&\f"),"&\f")!=-1&&(P=-1);break}case 34:case 39:case 91:$+=r5(k);break;case 9:case 10:case 13:case 32:$+=CX(b);break;case 92:$+=_X(n5()-1,7);continue;case 47:switch(Ol()){case 42:case 47:X2(TX(kX(xa(),n5()),t,n),l);break;default:$+="/"}break;case 123*S:s[d++]=_l($)*P;case 125*S:case 59:case 0:switch(k){case 0:case 125:E=0;case 59+p:y>0&&_l($)-g&&X2(y>32?nP($+";",r,n,g-1):nP(Pn($," ","")+";",r,n,g-2),l);break;case 59:$+=";";default:if(X2(z=tP($,t,n,d,p,i,s,L,R=[],N=[],g),o),k===123)if(p===0)i5($,t,z,z,R,o,g,s,N);else switch(m){case 100:case 109:case 115:i5(e,z,z,r&&X2(tP(e,z,z,0,0,i,s,L,i,R=[],g),N),i,N,g,s,r?R:N);break;default:i5($,z,z,z,[""],N,0,s,N)}}d=p=y=0,S=P=1,L=$="",g=a;break;case 58:g=1+_l($),y=b;default:if(S<1){if(k==123)--S;else if(k==125&&S++==0&&wX()==125)continue}switch($+=x4(k),k*S){case 38:P=p>0?1:($+="\f",-1);break;case 44:s[d++]=(_l($)-1)*P,P=1;break;case 64:Ol()===45&&($+=r5(xa())),m=Ol(),p=g=_l(L=$+=EX(n5())),k++;break;case 45:b===45&&_l($)==2&&(S=0)}}return o}function tP(e,t,n,r,i,o,a,s,l,d,p){for(var g=i-1,m=i===0?o:[""],y=m8(m),b=0,S=0,E=0;b0?m[P]+" "+k:Pn(k,/&\f/g,m[P])))&&(l[E++]=L);return w4(e,t,n,i===0?p8:s,l,d,p)}function TX(e,t,n){return w4(e,t,n,xO,x4(SX()),Nm(e,2,-2),0)}function nP(e,t,n,r){return w4(e,t,n,g8,Nm(e,0,r),Nm(e,r+1,-1),r)}function EO(e,t){switch(yX(e,t)){case 5103:return wn+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return wn+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return wn+e+a3+e+Ji+e+e;case 6828:case 4268:return wn+e+Ji+e+e;case 6165:return wn+e+Ji+"flex-"+e+e;case 5187:return wn+e+Pn(e,/(\w+).+(:[^]+)/,wn+"box-$1$2"+Ji+"flex-$1$2")+e;case 5443:return wn+e+Ji+"flex-item-"+Pn(e,/flex-|-self/,"")+e;case 4675:return wn+e+Ji+"flex-line-pack"+Pn(e,/align-content|flex-|-self/,"")+e;case 5548:return wn+e+Ji+Pn(e,"shrink","negative")+e;case 5292:return wn+e+Ji+Pn(e,"basis","preferred-size")+e;case 6060:return wn+"box-"+Pn(e,"-grow","")+wn+e+Ji+Pn(e,"grow","positive")+e;case 4554:return wn+Pn(e,/([^-])(transform)/g,"$1"+wn+"$2")+e;case 6187:return Pn(Pn(Pn(e,/(zoom-|grab)/,wn+"$1"),/(image-set)/,wn+"$1"),e,"")+e;case 5495:case 3959:return Pn(e,/(image-set\([^]*)/,wn+"$1$`$1");case 4968:return Pn(Pn(e,/(.+:)(flex-)?(.*)/,wn+"box-pack:$3"+Ji+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+wn+e+e;case 4095:case 3583:case 4068:case 2532:return Pn(e,/(.+)-inline(.+)/,wn+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(_l(e)-1-t>6)switch(Bo(e,t+1)){case 109:if(Bo(e,t+4)!==45)break;case 102:return Pn(e,/(.+:)(.+)-([^]+)/,"$1"+wn+"$2-$3$1"+a3+(Bo(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~d6(e,"stretch")?EO(Pn(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(Bo(e,t+1)!==115)break;case 6444:switch(Bo(e,_l(e)-3-(~d6(e,"!important")&&10))){case 107:return Pn(e,":",":"+wn)+e;case 101:return Pn(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+wn+(Bo(e,14)===45?"inline-":"")+"box$3$1"+wn+"$2$3$1"+Ji+"$2box$3")+e}break;case 5936:switch(Bo(e,t+11)){case 114:return wn+e+Ji+Pn(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return wn+e+Ji+Pn(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return wn+e+Ji+Pn(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return wn+e+Ji+e+e}return e}function a0(e,t){for(var n="",r=m8(e),i=0;i-1&&!e.return)switch(e.type){case g8:e.return=EO(e.value,e.length);break;case SO:return a0([lg(e,{value:Pn(e.value,"@","@"+wn)})],r);case p8:if(e.length)return xX(e.props,function(i){switch(bX(i,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return a0([lg(e,{props:[Pn(i,/:(read-\w+)/,":"+a3+"$1")]})],r);case"::placeholder":return a0([lg(e,{props:[Pn(i,/:(plac\w+)/,":"+wn+"input-$1")]}),lg(e,{props:[Pn(i,/:(plac\w+)/,":"+a3+"$1")]}),lg(e,{props:[Pn(i,/:(plac\w+)/,Ji+"input-$1")]})],r)}return""})}}var rP=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var i=t(r);return n.set(r,i),i}};function PO(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var MX=function(t,n,r){for(var i=0,o=0;i=o,o=Ol(),i===38&&o===12&&(n[r]=1),!Dm(o);)xa();return vv(t,Yo)},OX=function(t,n){var r=-1,i=44;do switch(Dm(i)){case 0:i===38&&Ol()===12&&(n[r]=1),t[r]+=MX(Yo-1,n,r);break;case 2:t[r]+=r5(i);break;case 4:if(i===44){t[++r]=Ol()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=x4(i)}while(i=xa());return t},NX=function(t,n){return kO(OX(_O(t),n))},iP=new WeakMap,DX=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,i=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!iP.get(r))&&!i){iP.set(t,!0);for(var o=[],a=NX(n,o),s=r.props,l=0,d=0;l=4;++r,i-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var ZX={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},XX=/[A-Z]|^ms/g,QX=/_EMO_([^_]+?)_([^]*?)_EMO_/g,OO=function(t){return t.charCodeAt(1)===45},oP=function(t){return t!=null&&typeof t!="boolean"},Yx=PO(function(e){return OO(e)?e:e.replace(XX,"-$&").toLowerCase()}),aP=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(QX,function(r,i,o){return kl={name:i,styles:o,next:kl},i})}return ZX[t]!==1&&!OO(t)&&typeof n=="number"&&n!==0?n+"px":n};function zm(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return kl={name:n.name,styles:n.styles,next:kl},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)kl={name:r.name,styles:r.styles,next:kl},r=r.next;var i=n.styles+";";return i}return JX(e,t,n)}case"function":{if(e!==void 0){var o=kl,a=n(e);return kl=o,zm(e,t,a)}break}}if(t==null)return n;var s=t[n];return s!==void 0?s:n}function JX(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i{t.includes(r)||(n[r]=e[r])}),n}function gQ(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},WO=mQ(gQ);function VO(e,t){const n={};return Object.keys(e).forEach(r=>{const i=e[r];t(i,r,e)&&(n[r]=i)}),n}var UO=e=>VO(e,t=>t!=null);function w8(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function N4(e){if(!w8(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function vQ(e){var t;return w8(e)?((t=bv(e))==null?void 0:t.defaultView)??window:window}function bv(e){return w8(e)?e.ownerDocument??document:document}function yQ(e){return e.view??window}function bQ(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var xv=bQ();function xQ(e){const t=bv(e);return t?.activeElement}function C8(e,t){return e?e===t||e.contains(t):!1}var GO=e=>e.hasAttribute("tabindex"),SQ=e=>GO(e)&&e.tabIndex===-1;function wQ(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function CQ(e){return N4(e)&&e.localName==="input"&&"select"in e}function jO(e){return(N4(e)?bv(e):document).activeElement===e}function qO(e){return e.parentElement&&qO(e.parentElement)?!0:e.hidden}function _Q(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function KO(e){if(!N4(e)||qO(e)||wQ(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():_Q(e)?!0:GO(e)}function kQ(e){return e?N4(e)&&KO(e)&&!SQ(e):!1}var EQ=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],PQ=EQ.join(),TQ=e=>e.offsetWidth>0&&e.offsetHeight>0;function LQ(e){const t=Array.from(e.querySelectorAll(PQ));return t.unshift(e),t.filter(n=>KO(n)&&TQ(n))}function s3(e,...t){return Kp(e)?e(...t):e}function AQ(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function IQ(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var RQ=IQ(e=>()=>{const{condition:t,message:n}=e;t&&hQ&&console.warn(n)}),MQ=(...e)=>t=>e.reduce((n,r)=>r(n),t);function l3(e,t={}){const{isActive:n=jO,nextTick:r,preventScroll:i=!0,selectTextIfInput:o=!0}=t;if(!e||n(e))return-1;function a(){if(!e){RQ({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(OQ())e.focus({preventScroll:i});else if(e.focus(),i){const s=NQ(e);DQ(s)}if(o){if(CQ(e))e.select();else if("setSelectionRange"in e){const s=e;s.setSelectionRange(s.value.length,s.value.length)}}}return r?requestAnimationFrame(a):(a(),-1)}var Q2=null;function OQ(){if(Q2==null){Q2=!1;try{document.createElement("div").focus({get preventScroll(){return Q2=!0,!0}})}catch{}}return Q2}function NQ(e){const t=bv(e),n=t.defaultView??window;let r=e.parentNode;const i=[],o=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==o;)(r.offsetHeight{const n=yQ(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var FQ={pageX:0,pageY:0};function BQ(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||FQ;return{x:r[`${t}X`],y:r[`${t}Y`]}}function HQ(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function WQ(e,t="page"){return{point:zQ(e)?BQ(e,t):HQ(e,t)}}var VQ=(e,t=!1)=>{const n=r=>e(r,WQ(r));return t?$Q(n):n},UQ=()=>xv&&window.onpointerdown===null,GQ=()=>xv&&window.ontouchstart===null,jQ=()=>xv&&window.onmousedown===null,qQ={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},KQ={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function YQ(e){return UQ()?e:GQ()?KQ[e]:jQ()?qQ[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function ZQ(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function XQ(e){return xv?ZQ(window.navigator)===e:!1}function QQ(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,i=C.exports.createContext(void 0);i.displayName=r;function o(){var a;const s=C.exports.useContext(i);if(!s&&t){const l=new Error(n);throw l.name="ContextError",(a=Error.captureStackTrace)==null||a.call(Error,l,o),l}return s}return[i.Provider,o,i]}var JQ=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,eJ=PO(function(e){return JQ.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),tJ=eJ,nJ=function(t){return t!=="theme"},cP=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?tJ:nJ},dP=function(t,n,r){var i;if(n){var o=n.shouldForwardProp;i=t.__emotion_forwardProp&&o?function(a){return t.__emotion_forwardProp(a)&&o(a)}:o}return typeof i!="function"&&r&&(i=t.__emotion_forwardProp),i},rJ=function(t){var n=t.cache,r=t.serialized,i=t.isStringTag;return RO(n,r,i),tQ(function(){return MO(n,r,i)}),null},iJ=function e(t,n){var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,o,a;n!==void 0&&(o=n.label,a=n.target);var s=dP(t,n,r),l=s||cP(i),d=!l("as");return function(){var p=arguments,g=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(o!==void 0&&g.push("label:"+o+";"),p[0]==null||p[0].raw===void 0)g.push.apply(g,p);else{g.push(p[0][0]);for(var m=p.length,y=1;y` or ``");return e}function YO(){const e=d8(),t=q0();return{...e,theme:t}}function dJ(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__breakpoints)==null?void 0:o.asArray)==null?void 0:a[i]};return r(t)??r(n)??n}function fJ(e,t,n){if(t==null)return t;const r=i=>{var o,a;return(a=(o=e.__cssMap)==null?void 0:o[i])==null?void 0:a.value};return r(t)??r(n)??n}function hJ(e,t,n){const r=Array.isArray(t)?t:[t],i=Array.isArray(n)?n:[n];return o=>{const a=i.filter(Boolean),s=r.map((l,d)=>{if(e==="breakpoints")return dJ(o,l,a[d]??l);const p=`${e}.${l}`;return fJ(o,p,a[d]??l)});return Array.isArray(t)?s:s[0]}}function pJ(e){const{cssVarsRoot:t,theme:n,children:r}=e,i=C.exports.useMemo(()=>XZ(n),[n]);return ne(iQ,{theme:i,children:[w(gJ,{root:t}),r]})}function gJ({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return w(M4,{styles:n=>({[t]:n.__cssVars})})}QQ({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function mJ(){const{colorMode:e}=d8();return w(M4,{styles:t=>{const n=WO(t,"styles.global"),r=s3(n,{theme:t,colorMode:e});return r?bO(r)(t):void 0}})}var vJ=new Set([...eX,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),yJ=new Set(["htmlWidth","htmlHeight","htmlSize"]);function bJ(e){return yJ.has(e)||!vJ.has(e)}var xJ=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:i,sx:o,...a}=t,s=VO(a,(g,m)=>nX(m)),l=s3(e,t),d=Object.assign({},i,l,UO(s),o),p=bO(d)(t.theme);return r?[p,r]:p};function Zx(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=bJ);const i=xJ({baseStyle:n});return g6(e,r)(i)}function Le(e){return C.exports.forwardRef(e)}function ZO(e,t={}){const{styleConfig:n,...r}=t,{theme:i,colorMode:o}=YO(),a=WO(i,`components.${e}`),s=n||a,l=Bu({theme:i,colorMode:o},s?.defaultProps??{},UO(pQ(r,["children"]))),d=C.exports.useRef({});if(s){const g=cX(s)(l);cJ(d.current,g)||(d.current=g)}return d.current}function Eo(e,t={}){return ZO(e,t)}function Ui(e,t={}){return ZO(e,t)}function SJ(){const e=new Map;return new Proxy(Zx,{apply(t,n,r){return Zx(...r)},get(t,n){return e.has(n)||e.set(n,Zx(n)),e.get(n)}})}var Ce=SJ();function wJ(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function Tn(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:i="Provider",errorMessage:o}=e,a=C.exports.createContext(void 0);a.displayName=t;function s(){var l;const d=C.exports.useContext(a);if(!d&&n){const p=new Error(o??wJ(r,i));throw p.name="ContextError",(l=Error.captureStackTrace)==null||l.call(Error,p,s),p}return d}return[a.Provider,s,a]}function CJ(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function Vn(...e){return t=>{e.forEach(n=>{CJ(n,t)})}}function _J(...e){return C.exports.useMemo(()=>Vn(...e),e)}function fP(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var kJ=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function hP(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function pP(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var m6=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,u3=e=>e,EJ=class{descendants=new Map;register=e=>{if(e!=null)return kJ(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=fP(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=hP(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=hP(r,this.enabledCount(),t);return this.enabledItem(i)};prev=(e,t=!0)=>{const n=pP(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),i=pP(r,this.enabledCount()-1,t);return this.enabledItem(i)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=fP(n);t?.disabled&&(t.disabled=!!t.disabled);const i={node:e,index:-1,...t};this.descendants.set(e,i),this.assignIndex(r)}};function PJ(){const e=C.exports.useRef(new EJ);return m6(()=>()=>e.current.destroy()),e.current}var[TJ,XO]=Tn({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function LJ(e){const t=XO(),[n,r]=C.exports.useState(-1),i=C.exports.useRef(null);m6(()=>()=>{!i.current||t.unregister(i.current)},[]),m6(()=>{if(!i.current)return;const a=Number(i.current.dataset.index);n!=a&&!Number.isNaN(a)&&r(a)});const o=u3(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(i.current),register:Vn(o,i)}}function QO(){return[u3(TJ),()=>u3(XO()),()=>PJ(),i=>LJ(i)]}var $n=(...e)=>e.filter(Boolean).join(" "),gP={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},JO=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??gP.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??gP.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});JO.displayName="Icon";function Ar(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function D4(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:i=(m,y)=>m!==y}=e,o=Ar(r),a=Ar(i),[s,l]=C.exports.useState(n),d=t!==void 0,p=d?t:s,g=C.exports.useCallback(m=>{const b=typeof m=="function"?m(p):m;!a(p,b)||(d||l(b),o(b))},[d,o,p,a]);return[p,g]}const _8=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),z4=C.exports.createContext({});function AJ(){return C.exports.useContext(z4).visualElement}const K0=C.exports.createContext(null),bh=typeof document<"u",c3=bh?C.exports.useLayoutEffect:C.exports.useEffect,eN=C.exports.createContext({strict:!1});function IJ(e,t,n,r){const i=AJ(),o=C.exports.useContext(eN),a=C.exports.useContext(K0),s=C.exports.useContext(_8).reducedMotion,l=C.exports.useRef(void 0);r=r||o.renderer,!l.current&&r&&(l.current=r(e,{visualState:t,parent:i,props:n,presenceId:a?a.id:void 0,blockInitialAnimation:a?a.initial===!1:!1,reducedMotionConfig:s}));const d=l.current;return c3(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),c3(()=>()=>d&&d.notifyUnmount(),[]),d}function Yp(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function RJ(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Yp(n)&&(n.current=r))},[t])}function Bm(e){return typeof e=="string"||Array.isArray(e)}function $4(e){return typeof e=="object"&&typeof e.start=="function"}const MJ=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function F4(e){return $4(e.animate)||MJ.some(t=>Bm(e[t]))}function tN(e){return Boolean(F4(e)||e.variants)}function OJ(e,t){if(F4(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Bm(n)?n:void 0,animate:Bm(r)?r:void 0}}return e.inherit!==!1?t:{}}function NJ(e){const{initial:t,animate:n}=OJ(e,C.exports.useContext(z4));return C.exports.useMemo(()=>({initial:t,animate:n}),[mP(t),mP(n)])}function mP(e){return Array.isArray(e)?e.join(" "):e}const Cu=e=>({isEnabled:t=>e.some(n=>!!t[n])}),Hm={measureLayout:Cu(["layout","layoutId","drag"]),animation:Cu(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Cu(["exit"]),drag:Cu(["drag","dragControls"]),focus:Cu(["whileFocus"]),hover:Cu(["whileHover","onHoverStart","onHoverEnd"]),tap:Cu(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Cu(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Cu(["whileInView","onViewportEnter","onViewportLeave"])};function DJ(e){for(const t in e)t==="projectionNodeConstructor"?Hm.projectionNodeConstructor=e[t]:Hm[t].Component=e[t]}function B4(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const Qg={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let zJ=1;function $J(){return B4(()=>{if(Qg.hasEverUpdated)return zJ++})}const k8=C.exports.createContext({});class FJ extends re.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const nN=C.exports.createContext({}),BJ=Symbol.for("motionComponentSymbol");function HJ({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:i,Component:o}){e&&DJ(e);function a(l,d){const p={...C.exports.useContext(_8),...l,layoutId:WJ(l)},{isStatic:g}=p;let m=null;const y=NJ(l),b=g?void 0:$J(),S=i(l,g);if(!g&&bh){y.visualElement=IJ(o,S,p,t);const E=C.exports.useContext(eN).strict,P=C.exports.useContext(nN);y.visualElement&&(m=y.visualElement.loadFeatures(p,E,e,b,n||Hm.projectionNodeConstructor,P))}return ne(FJ,{visualElement:y.visualElement,props:p,children:[m,w(z4.Provider,{value:y,children:r(o,l,b,RJ(S,y.visualElement,d),S,g,y.visualElement)})]})}const s=C.exports.forwardRef(a);return s[BJ]=o,s}function WJ({layoutId:e}){const t=C.exports.useContext(k8).id;return t&&e!==void 0?t+"-"+e:e}function VJ(e){function t(r,i={}){return HJ(e(r,i))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,i)=>(n.has(i)||n.set(i,t(i)),n.get(i))})}const UJ=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function E8(e){return typeof e!="string"||e.includes("-")?!1:!!(UJ.indexOf(e)>-1||/[A-Z]/.test(e))}const d3={};function GJ(e){Object.assign(d3,e)}const f3=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],Sv=new Set(f3);function rN(e,{layout:t,layoutId:n}){return Sv.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!d3[e]||e==="opacity")}const Hl=e=>!!e?.getVelocity,jJ={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},qJ=(e,t)=>f3.indexOf(e)-f3.indexOf(t);function KJ({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},i,o){let a="";t.sort(qJ);for(const s of t)a+=`${jJ[s]||s}(${e[s]}) `;return n&&!e.z&&(a+="translateZ(0)"),a=a.trim(),o?a=o(e,i?"":a):r&&i&&(a="none"),a}function iN(e){return e.startsWith("--")}const YJ=(e,t)=>t&&typeof e=="number"?t.transform(e):e,oN=(e,t)=>n=>Math.max(Math.min(n,t),e),Jg=e=>e%1?Number(e.toFixed(5)):e,Wm=/(-)?([\d]*\.?[\d])+/g,v6=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,ZJ=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function wv(e){return typeof e=="string"}const xh={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},em=Object.assign(Object.assign({},xh),{transform:oN(0,1)}),J2=Object.assign(Object.assign({},xh),{default:1}),Cv=e=>({test:t=>wv(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),Uc=Cv("deg"),Nl=Cv("%"),wt=Cv("px"),XJ=Cv("vh"),QJ=Cv("vw"),vP=Object.assign(Object.assign({},Nl),{parse:e=>Nl.parse(e)/100,transform:e=>Nl.transform(e*100)}),P8=(e,t)=>n=>Boolean(wv(n)&&ZJ.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),aN=(e,t,n)=>r=>{if(!wv(r))return r;const[i,o,a,s]=r.match(Wm);return{[e]:parseFloat(i),[t]:parseFloat(o),[n]:parseFloat(a),alpha:s!==void 0?parseFloat(s):1}},Kf={test:P8("hsl","hue"),parse:aN("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+Nl.transform(Jg(t))+", "+Nl.transform(Jg(n))+", "+Jg(em.transform(r))+")"},JJ=oN(0,255),Xx=Object.assign(Object.assign({},xh),{transform:e=>Math.round(JJ(e))}),rd={test:P8("rgb","red"),parse:aN("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Xx.transform(e)+", "+Xx.transform(t)+", "+Xx.transform(n)+", "+Jg(em.transform(r))+")"};function eee(e){let t="",n="",r="",i="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),i=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),i=e.substr(4,1),t+=t,n+=n,r+=r,i+=i),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:i?parseInt(i,16)/255:1}}const y6={test:P8("#"),parse:eee,transform:rd.transform},yo={test:e=>rd.test(e)||y6.test(e)||Kf.test(e),parse:e=>rd.test(e)?rd.parse(e):Kf.test(e)?Kf.parse(e):y6.parse(e),transform:e=>wv(e)?e:e.hasOwnProperty("red")?rd.transform(e):Kf.transform(e)},sN="${c}",lN="${n}";function tee(e){var t,n,r,i;return isNaN(e)&&wv(e)&&((n=(t=e.match(Wm))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((i=(r=e.match(v6))===null||r===void 0?void 0:r.length)!==null&&i!==void 0?i:0)>0}function uN(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(v6);r&&(n=r.length,e=e.replace(v6,sN),t.push(...r.map(yo.parse)));const i=e.match(Wm);return i&&(e=e.replace(Wm,lN),t.push(...i.map(xh.parse))),{values:t,numColors:n,tokenised:e}}function cN(e){return uN(e).values}function dN(e){const{values:t,numColors:n,tokenised:r}=uN(e),i=t.length;return o=>{let a=r;for(let s=0;stypeof e=="number"?0:e;function ree(e){const t=cN(e);return dN(e)(t.map(nee))}const Hu={test:tee,parse:cN,createTransformer:dN,getAnimatableNone:ree},iee=new Set(["brightness","contrast","saturate","opacity"]);function oee(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match(Wm)||[];if(!r)return e;const i=n.replace(r,"");let o=iee.has(t)?1:0;return r!==n&&(o*=100),t+"("+o+i+")"}const aee=/([a-z-]*)\(.*?\)/g,b6=Object.assign(Object.assign({},Hu),{getAnimatableNone:e=>{const t=e.match(aee);return t?t.map(oee).join(" "):e}}),yP={...xh,transform:Math.round},fN={borderWidth:wt,borderTopWidth:wt,borderRightWidth:wt,borderBottomWidth:wt,borderLeftWidth:wt,borderRadius:wt,radius:wt,borderTopLeftRadius:wt,borderTopRightRadius:wt,borderBottomRightRadius:wt,borderBottomLeftRadius:wt,width:wt,maxWidth:wt,height:wt,maxHeight:wt,size:wt,top:wt,right:wt,bottom:wt,left:wt,padding:wt,paddingTop:wt,paddingRight:wt,paddingBottom:wt,paddingLeft:wt,margin:wt,marginTop:wt,marginRight:wt,marginBottom:wt,marginLeft:wt,rotate:Uc,rotateX:Uc,rotateY:Uc,rotateZ:Uc,scale:J2,scaleX:J2,scaleY:J2,scaleZ:J2,skew:Uc,skewX:Uc,skewY:Uc,distance:wt,translateX:wt,translateY:wt,translateZ:wt,x:wt,y:wt,z:wt,perspective:wt,transformPerspective:wt,opacity:em,originX:vP,originY:vP,originZ:wt,zIndex:yP,fillOpacity:em,strokeOpacity:em,numOctaves:yP};function T8(e,t,n,r){const{style:i,vars:o,transform:a,transformKeys:s,transformOrigin:l}=e;s.length=0;let d=!1,p=!1,g=!0;for(const m in t){const y=t[m];if(iN(m)){o[m]=y;continue}const b=fN[m],S=YJ(y,b);if(Sv.has(m)){if(d=!0,a[m]=S,s.push(m),!g)continue;y!==(b.default||0)&&(g=!1)}else m.startsWith("origin")?(p=!0,l[m]=S):i[m]=S}if(d||r?i.transform=KJ(e,n,g,r):!t.transform&&i.transform&&(i.transform="none"),p){const{originX:m="50%",originY:y="50%",originZ:b=0}=l;i.transformOrigin=`${m} ${y} ${b}`}}const L8=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function hN(e,t,n){for(const r in t)!Hl(t[r])&&!rN(r,n)&&(e[r]=t[r])}function see({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=L8();return T8(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function lee(e,t,n){const r=e.style||{},i={};return hN(i,r,e),Object.assign(i,see(e,t,n)),e.transformValues?e.transformValues(i):i}function uee(e,t,n){const r={},i=lee(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=i,r}const cee=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],dee=["whileTap","onTap","onTapStart","onTapCancel"],fee=["onPan","onPanStart","onPanSessionStart","onPanEnd"],hee=["whileInView","onViewportEnter","onViewportLeave","viewport"],pee=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...hee,...dee,...cee,...fee]);function h3(e){return pee.has(e)}let pN=e=>!h3(e);function gee(e){!e||(pN=t=>t.startsWith("on")?!h3(t):e(t))}try{gee(require("@emotion/is-prop-valid").default)}catch{}function mee(e,t,n){const r={};for(const i in e)(pN(i)||n===!0&&h3(i)||!t&&!h3(i)||e.draggable&&i.startsWith("onDrag"))&&(r[i]=e[i]);return r}function bP(e,t,n){return typeof e=="string"?e:wt.transform(t+n*e)}function vee(e,t,n){const r=bP(t,e.x,e.width),i=bP(n,e.y,e.height);return`${r} ${i}`}const yee={offset:"stroke-dashoffset",array:"stroke-dasharray"},bee={offset:"strokeDashoffset",array:"strokeDasharray"};function xee(e,t,n=1,r=0,i=!0){e.pathLength=1;const o=i?yee:bee;e[o.offset]=wt.transform(-r);const a=wt.transform(t),s=wt.transform(n);e[o.array]=`${a} ${s}`}function A8(e,{attrX:t,attrY:n,originX:r,originY:i,pathLength:o,pathSpacing:a=1,pathOffset:s=0,...l},d,p){T8(e,l,d,p),e.attrs=e.style,e.style={};const{attrs:g,style:m,dimensions:y}=e;g.transform&&(y&&(m.transform=g.transform),delete g.transform),y&&(r!==void 0||i!==void 0||m.transform)&&(m.transformOrigin=vee(y,r!==void 0?r:.5,i!==void 0?i:.5)),t!==void 0&&(g.x=t),n!==void 0&&(g.y=n),o!==void 0&&xee(g,o,a,s,!1)}const gN=()=>({...L8(),attrs:{}});function See(e,t){const n=C.exports.useMemo(()=>{const r=gN();return A8(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};hN(r,e.style,e),n.style={...r,...n.style}}return n}function wee(e=!1){return(n,r,i,o,{latestValues:a},s)=>{const d=(E8(n)?See:uee)(r,a,s),g={...mee(r,typeof n=="string",e),...d,ref:o};return i&&(g["data-projection-id"]=i),C.exports.createElement(n,g)}}const mN=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function vN(e,{style:t,vars:n},r,i){Object.assign(e.style,t,i&&i.getProjectionStyles(r));for(const o in n)e.style.setProperty(o,n[o])}const yN=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function bN(e,t,n,r){vN(e,t,void 0,r);for(const i in t.attrs)e.setAttribute(yN.has(i)?i:mN(i),t.attrs[i])}function I8(e){const{style:t}=e,n={};for(const r in t)(Hl(t[r])||rN(r,e))&&(n[r]=t[r]);return n}function xN(e){const t=I8(e);for(const n in e)if(Hl(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function SN(e,t,n,r={},i={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,i)),t}const Vm=e=>Array.isArray(e),Cee=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),wN=e=>Vm(e)?e[e.length-1]||0:e;function a5(e){const t=Hl(e)?e.get():e;return Cee(t)?t.toValue():t}function _ee({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,i,o){const a={latestValues:kee(r,i,o,e),renderState:t()};return n&&(a.mount=s=>n(r,s,a)),a}const CN=e=>(t,n)=>{const r=C.exports.useContext(z4),i=C.exports.useContext(K0),o=()=>_ee(e,t,r,i);return n?o():B4(o)};function kee(e,t,n,r){const i={},o=r(e);for(const m in o)i[m]=a5(o[m]);let{initial:a,animate:s}=e;const l=F4(e),d=tN(e);t&&d&&!l&&e.inherit!==!1&&(a===void 0&&(a=t.initial),s===void 0&&(s=t.animate));let p=n?n.initial===!1:!1;p=p||a===!1;const g=p?s:a;return g&&typeof g!="boolean"&&!$4(g)&&(Array.isArray(g)?g:[g]).forEach(y=>{const b=SN(e,y);if(!b)return;const{transitionEnd:S,transition:E,...P}=b;for(const k in P){let L=P[k];if(Array.isArray(L)){const R=p?L.length-1:0;L=L[R]}L!==null&&(i[k]=L)}for(const k in S)i[k]=S[k]}),i}const Eee={useVisualState:CN({scrapeMotionValuesFromProps:xN,createRenderState:gN,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}A8(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),bN(t,n)}})},Pee={useVisualState:CN({scrapeMotionValuesFromProps:I8,createRenderState:L8})};function Tee(e,{forwardMotionProps:t=!1},n,r,i){return{...E8(e)?Eee:Pee,preloadedFeatures:n,useRender:wee(t),createVisualElement:r,projectionNodeConstructor:i,Component:e}}var Yn;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Yn||(Yn={}));function H4(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function x6(e,t,n,r){C.exports.useEffect(()=>{const i=e.current;if(n&&i)return H4(i,t,n,r)},[e,t,n,r])}function Lee({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Yn.Focus,!0)},i=()=>{n&&n.setActive(Yn.Focus,!1)};x6(t,"focus",e?r:void 0),x6(t,"blur",e?i:void 0)}function _N(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function kN(e){return!!e.touches}function Aee(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const Iee={pageX:0,pageY:0};function Ree(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||Iee;return{x:r[t+"X"],y:r[t+"Y"]}}function Mee(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function R8(e,t="page"){return{point:kN(e)?Ree(e,t):Mee(e,t)}}const EN=(e,t=!1)=>{const n=r=>e(r,R8(r));return t?Aee(n):n},Oee=()=>bh&&window.onpointerdown===null,Nee=()=>bh&&window.ontouchstart===null,Dee=()=>bh&&window.onmousedown===null,zee={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},$ee={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function PN(e){return Oee()?e:Nee()?$ee[e]:Dee()?zee[e]:e}function s0(e,t,n,r){return H4(e,PN(t),EN(n,t==="pointerdown"),r)}function p3(e,t,n,r){return x6(e,PN(t),n&&EN(n,t==="pointerdown"),r)}function TN(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const xP=TN("dragHorizontal"),SP=TN("dragVertical");function LN(e){let t=!1;if(e==="y")t=SP();else if(e==="x")t=xP();else{const n=xP(),r=SP();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function AN(){const e=LN(!0);return e?(e(),!1):!0}function wP(e,t,n){return(r,i)=>{!_N(r)||AN()||(e.animationState&&e.animationState.setActive(Yn.Hover,t),n&&n(r,i))}}function Fee({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){p3(r,"pointerenter",e||n?wP(r,!0,e):void 0,{passive:!e}),p3(r,"pointerleave",t||n?wP(r,!1,t):void 0,{passive:!t})}const IN=(e,t)=>t?e===t?!0:IN(e,t.parentElement):!1;function M8(e){return C.exports.useEffect(()=>()=>e(),[])}var Tl=function(){return Tl=Object.assign||function(t){for(var n,r=1,i=arguments.length;r0&&o[o.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!o||d[1]>o[0]&&d[1]0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function S6(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,o;rMath.min(Math.max(n,e),t),Qx=.001,Hee=.01,_P=10,Wee=.05,Vee=1;function Uee({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let i,o;Bee(e<=_P*1e3);let a=1-t;a=m3(Wee,Vee,a),e=m3(Hee,_P,e/1e3),a<1?(i=d=>{const p=d*a,g=p*e,m=p-n,y=w6(d,a),b=Math.exp(-g);return Qx-m/y*b},o=d=>{const g=d*a*e,m=g*n+n,y=Math.pow(a,2)*Math.pow(d,2)*e,b=Math.exp(-g),S=w6(Math.pow(d,2),a);return(-i(d)+Qx>0?-1:1)*((m-y)*b)/S}):(i=d=>{const p=Math.exp(-d*e),g=(d-n)*e+1;return-Qx+p*g},o=d=>{const p=Math.exp(-d*e),g=(n-d)*(e*e);return p*g});const s=5/e,l=jee(i,o,s);if(e=e*1e3,isNaN(l))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(l,2)*r;return{stiffness:d,damping:a*2*Math.sqrt(r*d),duration:e}}}const Gee=12;function jee(e,t,n){let r=n;for(let i=1;ie[n]!==void 0)}function Yee(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!kP(e,Kee)&&kP(e,qee)){const n=Uee(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function O8(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:i}=e,o=W4(e,["from","to","restSpeed","restDelta"]);const a={done:!1,value:t};let{stiffness:s,damping:l,mass:d,velocity:p,duration:g,isResolvedFromDuration:m}=Yee(o),y=EP,b=EP;function S(){const E=p?-(p/1e3):0,P=n-t,k=l/(2*Math.sqrt(s*d)),L=Math.sqrt(s/d)/1e3;if(i===void 0&&(i=Math.min(Math.abs(n-t)/100,.4)),k<1){const R=w6(L,k);y=N=>{const z=Math.exp(-k*L*N);return n-z*((E+k*L*P)/R*Math.sin(R*N)+P*Math.cos(R*N))},b=N=>{const z=Math.exp(-k*L*N);return k*L*z*(Math.sin(R*N)*(E+k*L*P)/R+P*Math.cos(R*N))-z*(Math.cos(R*N)*(E+k*L*P)-R*P*Math.sin(R*N))}}else if(k===1)y=R=>n-Math.exp(-L*R)*(P+(E+L*P)*R);else{const R=L*Math.sqrt(k*k-1);y=N=>{const z=Math.exp(-k*L*N),$=Math.min(R*N,300);return n-z*((E+k*L*P)*Math.sinh($)+R*P*Math.cosh($))/R}}}return S(),{next:E=>{const P=y(E);if(m)a.done=E>=g;else{const k=b(E)*1e3,L=Math.abs(k)<=r,R=Math.abs(n-P)<=i;a.done=L&&R}return a.value=a.done?n:P,a},flipTarget:()=>{p=-p,[t,n]=[n,t],S()}}}O8.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const EP=e=>0,Um=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Ir=(e,t,n)=>-n*e+n*t+e;function Jx(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function PP({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let i=0,o=0,a=0;if(!t)i=o=a=n;else{const s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;i=Jx(l,s,e+1/3),o=Jx(l,s,e),a=Jx(l,s,e-1/3)}return{red:Math.round(i*255),green:Math.round(o*255),blue:Math.round(a*255),alpha:r}}const Zee=(e,t,n)=>{const r=e*e,i=t*t;return Math.sqrt(Math.max(0,n*(i-r)+r))},Xee=[y6,rd,Kf],TP=e=>Xee.find(t=>t.test(e)),RN=(e,t)=>{let n=TP(e),r=TP(t),i=n.parse(e),o=r.parse(t);n===Kf&&(i=PP(i),n=rd),r===Kf&&(o=PP(o),r=rd);const a=Object.assign({},i);return s=>{for(const l in a)l!=="alpha"&&(a[l]=Zee(i[l],o[l],s));return a.alpha=Ir(i.alpha,o.alpha,s),n.transform(a)}},C6=e=>typeof e=="number",Qee=(e,t)=>n=>t(e(n)),V4=(...e)=>e.reduce(Qee);function MN(e,t){return C6(e)?n=>Ir(e,t,n):yo.test(e)?RN(e,t):NN(e,t)}const ON=(e,t)=>{const n=[...e],r=n.length,i=e.map((o,a)=>MN(o,t[a]));return o=>{for(let a=0;a{const n=Object.assign(Object.assign({},e),t),r={};for(const i in n)e[i]!==void 0&&t[i]!==void 0&&(r[i]=MN(e[i],t[i]));return i=>{for(const o in r)n[o]=r[o](i);return n}};function LP(e){const t=Hu.parse(e),n=t.length;let r=0,i=0,o=0;for(let a=0;a{const n=Hu.createTransformer(t),r=LP(e),i=LP(t);return r.numHSL===i.numHSL&&r.numRGB===i.numRGB&&r.numNumbers>=i.numNumbers?V4(ON(r.parsed,i.parsed),n):a=>`${a>0?t:e}`},ete=(e,t)=>n=>Ir(e,t,n);function tte(e){if(typeof e=="number")return ete;if(typeof e=="string")return yo.test(e)?RN:NN;if(Array.isArray(e))return ON;if(typeof e=="object")return Jee}function nte(e,t,n){const r=[],i=n||tte(e[0]),o=e.length-1;for(let a=0;an(Um(e,t,r))}function ite(e,t){const n=e.length,r=n-1;return i=>{let o=0,a=!1;if(i<=e[0]?a=!0:i>=e[r]&&(o=r-1,a=!0),!a){let l=1;for(;li||l===r);l++);o=l-1}const s=Um(e[o],e[o+1],i);return t[o](s)}}function DN(e,t,{clamp:n=!0,ease:r,mixer:i}={}){const o=e.length;g3(o===t.length),g3(!r||!Array.isArray(r)||r.length===o-1),e[0]>e[o-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const a=nte(t,r,i),s=o===2?rte(e,a):ite(e,a);return n?l=>s(m3(e[0],e[o-1],l)):s}const U4=e=>t=>1-e(1-t),N8=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,ote=e=>t=>Math.pow(t,e),zN=e=>t=>t*t*((e+1)*t-e),ate=e=>{const t=zN(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},$N=1.525,ste=4/11,lte=8/11,ute=9/10,D8=e=>e,z8=ote(2),cte=U4(z8),FN=N8(z8),BN=e=>1-Math.sin(Math.acos(e)),$8=U4(BN),dte=N8($8),F8=zN($N),fte=U4(F8),hte=N8(F8),pte=ate($N),gte=4356/361,mte=35442/1805,vte=16061/1805,v3=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-v3(1-e*2)):.5*v3(e*2-1)+.5;function xte(e,t){return e.map(()=>t||FN).splice(0,e.length-1)}function Ste(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function wte(e,t){return e.map(n=>n*t)}function s5({from:e=0,to:t=1,ease:n,offset:r,duration:i=300}){const o={done:!1,value:e},a=Array.isArray(t)?t:[e,t],s=wte(r&&r.length===a.length?r:Ste(a),i);function l(){return DN(s,a,{ease:Array.isArray(n)?n:xte(a,n)})}let d=l();return{next:p=>(o.value=d(p),o.done=p>=i,o),flipTarget:()=>{a.reverse(),d=l()}}}function Cte({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:i=.5,modifyTarget:o}){const a={done:!1,value:t};let s=n*e;const l=t+s,d=o===void 0?l:o(l);return d!==l&&(s=d-t),{next:p=>{const g=-s*Math.exp(-p/r);return a.done=!(g>i||g<-i),a.value=a.done?d:d+g,a},flipTarget:()=>{}}}const AP={keyframes:s5,spring:O8,decay:Cte};function _te(e){if(Array.isArray(e.to))return s5;if(AP[e.type])return AP[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?s5:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?O8:s5}const HN=1/60*1e3,kte=typeof performance<"u"?()=>performance.now():()=>Date.now(),WN=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(kte()),HN);function Ete(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=Ete(()=>Gm=!0),e),{}),Tte=_v.reduce((e,t)=>{const n=G4[t];return e[t]=(r,i=!1,o=!1)=>(Gm||Ite(),n.schedule(r,i,o)),e},{}),Lte=_v.reduce((e,t)=>(e[t]=G4[t].cancel,e),{});_v.reduce((e,t)=>(e[t]=()=>G4[t].process(l0),e),{});const Ate=e=>G4[e].process(l0),VN=e=>{Gm=!1,l0.delta=_6?HN:Math.max(Math.min(e-l0.timestamp,Pte),1),l0.timestamp=e,k6=!0,_v.forEach(Ate),k6=!1,Gm&&(_6=!1,WN(VN))},Ite=()=>{Gm=!0,_6=!0,k6||WN(VN)},Rte=()=>l0;function UN(e,t,n=0){return e-t-n}function Mte(e,t,n=0,r=!0){return r?UN(t+-e,t,n):t-(e-t)+n}function Ote(e,t,n,r){return r?e>=t+n:e<=-n}const Nte=e=>{const t=({delta:n})=>e(n);return{start:()=>Tte.update(t,!0),stop:()=>Lte.update(t)}};function GN(e){var t,n,{from:r,autoplay:i=!0,driver:o=Nte,elapsed:a=0,repeat:s=0,repeatType:l="loop",repeatDelay:d=0,onPlay:p,onStop:g,onComplete:m,onRepeat:y,onUpdate:b}=e,S=W4(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:E}=S,P,k=0,L=S.duration,R,N=!1,z=!0,$;const F=_te(S);!((n=(t=F).needsInterpolation)===null||n===void 0)&&n.call(t,r,E)&&($=DN([0,100],[r,E],{clamp:!1}),r=0,E=100);const q=F(Object.assign(Object.assign({},S),{from:r,to:E}));function j(){k++,l==="reverse"?(z=k%2===0,a=Mte(a,L,d,z)):(a=UN(a,L,d),l==="mirror"&&q.flipTarget()),N=!1,y&&y()}function Y(){P.stop(),m&&m()}function ve(Se){if(z||(Se=-Se),a+=Se,!N){const _e=q.next(Math.max(0,a));R=_e.value,$&&(R=$(R)),N=z?_e.done:a<=0}b?.(R),N&&(k===0&&(L??(L=a)),k{g?.(),P.stop()}}}function jN(e,t){return t?e*(1e3/t):0}function Dte({from:e=0,velocity:t=0,min:n,max:r,power:i=.8,timeConstant:o=750,bounceStiffness:a=500,bounceDamping:s=10,restDelta:l=1,modifyTarget:d,driver:p,onUpdate:g,onComplete:m,onStop:y}){let b;function S(L){return n!==void 0&&Lr}function E(L){return n===void 0?r:r===void 0||Math.abs(n-L){var N;g?.(R),(N=L.onUpdate)===null||N===void 0||N.call(L,R)},onComplete:m,onStop:y}))}function k(L){P(Object.assign({type:"spring",stiffness:a,damping:s,restDelta:l},L))}if(S(e))k({from:e,velocity:t,to:E(e)});else{let L=i*t+e;typeof d<"u"&&(L=d(L));const R=E(L),N=R===n?-1:1;let z,$;const F=q=>{z=$,$=q,t=jN(q-z,Rte().delta),(N===1&&q>R||N===-1&&qb?.stop()}}const E6=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),IP=e=>E6(e)&&e.hasOwnProperty("z"),ey=(e,t)=>Math.abs(e-t);function B8(e,t){if(C6(e)&&C6(t))return ey(e,t);if(E6(e)&&E6(t)){const n=ey(e.x,t.x),r=ey(e.y,t.y),i=IP(e)&&IP(t)?ey(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(i,2))}}const qN=(e,t)=>1-3*t+3*e,KN=(e,t)=>3*t-6*e,YN=e=>3*e,y3=(e,t,n)=>((qN(t,n)*e+KN(t,n))*e+YN(t))*e,ZN=(e,t,n)=>3*qN(t,n)*e*e+2*KN(t,n)*e+YN(t),zte=1e-7,$te=10;function Fte(e,t,n,r,i){let o,a,s=0;do a=t+(n-t)/2,o=y3(a,r,i)-e,o>0?n=a:t=a;while(Math.abs(o)>zte&&++s<$te);return a}const Bte=8,Hte=.001;function Wte(e,t,n,r){for(let i=0;i=Hte?Wte(a,g,e,n):m===0?g:Fte(a,s,s+ty,e,n)}return a=>a===0||a===1?a:y3(o(a),t,r)}function Ute({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(!1),s=C.exports.useRef(null),l={passive:!(t||e||n||y)};function d(){s.current&&s.current(),s.current=null}function p(){return d(),a.current=!1,i.animationState&&i.animationState.setActive(Yn.Tap,!1),!AN()}function g(b,S){!p()||(IN(i.getInstance(),b.target)?e&&e(b,S):n&&n(b,S))}function m(b,S){!p()||n&&n(b,S)}function y(b,S){d(),!a.current&&(a.current=!0,s.current=V4(s0(window,"pointerup",g,l),s0(window,"pointercancel",m,l)),i.animationState&&i.animationState.setActive(Yn.Tap,!0),t&&t(b,S))}p3(i,"pointerdown",o?y:void 0,l),M8(d)}const Gte="production",XN=typeof process>"u"||process.env===void 0?Gte:"production",RP=new Set;function QN(e,t,n){e||RP.has(t)||(console.warn(t),n&&console.warn(n),RP.add(t))}const P6=new WeakMap,eS=new WeakMap,jte=e=>{const t=P6.get(e.target);t&&t(e)},qte=e=>{e.forEach(jte)};function Kte({root:e,...t}){const n=e||document;eS.has(n)||eS.set(n,{});const r=eS.get(n),i=JSON.stringify(t);return r[i]||(r[i]=new IntersectionObserver(qte,{root:e,...t})),r[i]}function Yte(e,t,n){const r=Kte(t);return P6.set(e,n),r.observe(e),()=>{P6.delete(e),r.unobserve(e)}}function Zte({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:i={}}){const o=C.exports.useRef({hasEnteredView:!1,isInView:!1});let a=Boolean(t||n||r);i.once&&o.current.hasEnteredView&&(a=!1),(typeof IntersectionObserver>"u"?Jte:Qte)(a,o.current,e,i)}const Xte={some:0,all:1};function Qte(e,t,n,{root:r,margin:i,amount:o="some",once:a}){C.exports.useEffect(()=>{if(!e)return;const s={root:r?.current,rootMargin:i,threshold:typeof o=="number"?o:Xte[o]},l=d=>{const{isIntersecting:p}=d;if(t.isInView===p||(t.isInView=p,a&&!p&&t.hasEnteredView))return;p&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Yn.InView,p);const g=n.getProps(),m=p?g.onViewportEnter:g.onViewportLeave;m&&m(d)};return Yte(n.getInstance(),s,l)},[e,r,i,o])}function Jte(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(XN!=="production"&&QN(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:i}=n.getProps();i&&i(null),n.animationState&&n.animationState.setActive(Yn.InView,!0)}))},[e])}const id=e=>t=>(e(t),null),ene={inView:id(Zte),tap:id(Ute),focus:id(Lee),hover:id(Fee)};function H8(){const e=C.exports.useContext(K0);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,i=C.exports.useId();return C.exports.useEffect(()=>r(i),[]),!t&&n?[!1,()=>n&&n(i)]:[!0]}function tne(){return nne(C.exports.useContext(K0))}function nne(e){return e===null?!0:e.isPresent}function JN(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,rne={linear:D8,easeIn:z8,easeInOut:FN,easeOut:cte,circIn:BN,circInOut:dte,circOut:$8,backIn:F8,backInOut:hte,backOut:fte,anticipate:pte,bounceIn:yte,bounceInOut:bte,bounceOut:v3},MP=e=>{if(Array.isArray(e)){g3(e.length===4);const[t,n,r,i]=e;return Vte(t,n,r,i)}else if(typeof e=="string")return rne[e];return e},ine=e=>Array.isArray(e)&&typeof e[0]!="number",OP=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&Hu.test(t)&&!t.startsWith("url(")),Rf=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),ny=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),tS=()=>({type:"keyframes",ease:"linear",duration:.3}),one=e=>({type:"keyframes",duration:.8,values:e}),NP={x:Rf,y:Rf,z:Rf,rotate:Rf,rotateX:Rf,rotateY:Rf,rotateZ:Rf,scaleX:ny,scaleY:ny,scale:ny,opacity:tS,backgroundColor:tS,color:tS,default:ny},ane=(e,t)=>{let n;return Vm(t)?n=one:n=NP[e]||NP.default,{to:t,...n(t)}},sne={...fN,color:yo,backgroundColor:yo,outlineColor:yo,fill:yo,stroke:yo,borderColor:yo,borderTopColor:yo,borderRightColor:yo,borderBottomColor:yo,borderLeftColor:yo,filter:b6,WebkitFilter:b6},W8=e=>sne[e];function V8(e,t){var n;let r=W8(e);return r!==b6&&(r=Hu),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const lne={current:!1};function une({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:i,repeat:o,repeatType:a,repeatDelay:s,from:l,...d}){return!!Object.keys(d).length}function cne({ease:e,times:t,yoyo:n,flip:r,loop:i,...o}){const a={...o};return t&&(a.offset=t),o.duration&&(a.duration=b3(o.duration)),o.repeatDelay&&(a.repeatDelay=b3(o.repeatDelay)),e&&(a.ease=ine(e)?e.map(MP):MP(e)),o.type==="tween"&&(a.type="keyframes"),(n||i||r)&&(n?a.repeatType="reverse":i?a.repeatType="loop":r&&(a.repeatType="mirror"),a.repeat=i||n||r||o.repeat),o.type!=="spring"&&(a.type="keyframes"),a}function dne(e,t){var n,r;return(r=(n=(U8(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function fne(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function hne(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),fne(t),une(e)||(e={...e,...ane(n,t.to)}),{...t,...cne(e)}}function pne(e,t,n,r,i){const o=U8(r,e)||{};let a=o.from!==void 0?o.from:t.get();const s=OP(e,n);a==="none"&&s&&typeof n=="string"?a=V8(e,n):DP(a)&&typeof n=="string"?a=zP(n):!Array.isArray(n)&&DP(n)&&typeof a=="string"&&(n=zP(a));const l=OP(e,a);function d(){const g={from:a,to:n,velocity:t.getVelocity(),onComplete:i,onUpdate:m=>t.set(m)};return o.type==="inertia"||o.type==="decay"?Dte({...g,...o}):GN({...hne(o,g,e),onUpdate:m=>{g.onUpdate(m),o.onUpdate&&o.onUpdate(m)},onComplete:()=>{g.onComplete(),o.onComplete&&o.onComplete()}})}function p(){const g=wN(n);return t.set(g),i(),o.onUpdate&&o.onUpdate(g),o.onComplete&&o.onComplete(),{stop:()=>{}}}return!l||!s||o.type===!1?p:d}function DP(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function zP(e){return typeof e=="number"?0:V8("",e)}function U8(e,t){return e[t]||e.default||e}function G8(e,t,n,r={}){return lne.current&&(r={type:!1}),t.start(i=>{let o,a;const s=pne(e,t,n,r,i),l=dne(r,e),d=()=>a=s();return l?o=window.setTimeout(d,b3(l)):d(),()=>{clearTimeout(o),a&&a.stop()}})}const gne=e=>/^\-?\d*\.?\d+$/.test(e),mne=e=>/^0[^.\s]+$/.test(e),eD=1/60*1e3,vne=typeof performance<"u"?()=>performance.now():()=>Date.now(),tD=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(vne()),eD);function yne(e){let t=[],n=[],r=0,i=!1,o=!1;const a=new WeakSet,s={schedule:(l,d=!1,p=!1)=>{const g=p&&i,m=g?t:n;return d&&a.add(l),m.indexOf(l)===-1&&(m.push(l),g&&i&&(r=t.length)),l},cancel:l=>{const d=n.indexOf(l);d!==-1&&n.splice(d,1),a.delete(l)},process:l=>{if(i){o=!0;return}if(i=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=yne(()=>jm=!0),e),{}),Dl=kv.reduce((e,t)=>{const n=j4[t];return e[t]=(r,i=!1,o=!1)=>(jm||Sne(),n.schedule(r,i,o)),e},{}),qm=kv.reduce((e,t)=>(e[t]=j4[t].cancel,e),{}),nS=kv.reduce((e,t)=>(e[t]=()=>j4[t].process(u0),e),{}),xne=e=>j4[e].process(u0),nD=e=>{jm=!1,u0.delta=T6?eD:Math.max(Math.min(e-u0.timestamp,bne),1),u0.timestamp=e,L6=!0,kv.forEach(xne),L6=!1,jm&&(T6=!1,tD(nD))},Sne=()=>{jm=!0,T6=!0,L6||tD(nD)},A6=()=>u0;function j8(e,t){e.indexOf(t)===-1&&e.push(t)}function q8(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class tm{constructor(){this.subscriptions=[]}add(t){return j8(this.subscriptions,t),()=>q8(this.subscriptions,t)}notify(t,n,r){const i=this.subscriptions.length;if(!!i)if(i===1)this.subscriptions[0](t,n,r);else for(let o=0;o!isNaN(parseFloat(e));class Cne{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new tm,this.velocityUpdateSubscribers=new tm,this.renderSubscribers=new tm,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:i,timestamp:o}=A6();this.lastUpdated!==o&&(this.timeDelta=i,this.lastUpdated=o,Dl.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>Dl.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=wne(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?jN(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function A0(e){return new Cne(e)}const rD=e=>t=>t.test(e),_ne={test:e=>e==="auto",parse:e=>e},iD=[xh,wt,Nl,Uc,QJ,XJ,_ne],ug=e=>iD.find(rD(e)),kne=[...iD,yo,Hu],Ene=e=>kne.find(rD(e));function Pne(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function Tne(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function q4(e,t,n){const r=e.getProps();return SN(r,t,n!==void 0?n:r.custom,Pne(e),Tne(e))}function Lne(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,A0(n))}function Ane(e,t){const n=q4(e,t);let{transitionEnd:r={},transition:i={},...o}=n?e.makeTargetAnimatable(n,!1):{};o={...o,...r};for(const a in o){const s=wN(o[a]);Lne(e,a,s)}}function Ine(e,t,n){var r,i;const o=Object.keys(t).filter(s=>!e.hasValue(s)),a=o.length;if(!!a)for(let s=0;sI6(e,o,n));r=Promise.all(i)}else if(typeof t=="string")r=I6(e,t,n);else{const i=typeof t=="function"?q4(e,t,n.custom):t;r=oD(e,i,n)}return r.then(()=>e.notifyAnimationComplete(t))}function I6(e,t,n={}){var r;const i=q4(e,t,n.custom);let{transition:o=e.getDefaultTransition()||{}}=i||{};n.transitionOverride&&(o=n.transitionOverride);const a=i?()=>oD(e,i,n):()=>Promise.resolve(),s=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:p=0,staggerChildren:g,staggerDirection:m}=o;return Nne(e,t,p+d,g,m,n)}:()=>Promise.resolve(),{when:l}=o;if(l){const[d,p]=l==="beforeChildren"?[a,s]:[s,a];return d().then(p)}else return Promise.all([a(),s(n.delay)])}function oD(e,t,{delay:n=0,transitionOverride:r,type:i}={}){var o;let{transition:a=e.getDefaultTransition(),transitionEnd:s,...l}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(a=r);const p=[],g=i&&((o=e.animationState)===null||o===void 0?void 0:o.getState()[i]);for(const m in l){const y=e.getValue(m),b=l[m];if(!y||b===void 0||g&&zne(g,m))continue;let S={delay:n,...a};e.shouldReduceMotion&&Sv.has(m)&&(S={...S,type:!1,delay:0});let E=G8(m,y,b,S);x3(d)&&(d.add(m),E=E.then(()=>d.remove(m))),p.push(E)}return Promise.all(p).then(()=>{s&&Ane(e,s)})}function Nne(e,t,n=0,r=0,i=1,o){const a=[],s=(e.variantChildren.size-1)*r,l=i===1?(d=0)=>d*r:(d=0)=>s-d*r;return Array.from(e.variantChildren).sort(Dne).forEach((d,p)=>{a.push(I6(d,t,{...o,delay:n+l(p)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(a)}function Dne(e,t){return e.sortNodePosition(t)}function zne({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const K8=[Yn.Animate,Yn.InView,Yn.Focus,Yn.Hover,Yn.Tap,Yn.Drag,Yn.Exit],$ne=[...K8].reverse(),Fne=K8.length;function Bne(e){return t=>Promise.all(t.map(({animation:n,options:r})=>One(e,n,r)))}function Hne(e){let t=Bne(e);const n=Vne();let r=!0;const i=(l,d)=>{const p=q4(e,d);if(p){const{transition:g,transitionEnd:m,...y}=p;l={...l,...y,...m}}return l};function o(l){t=l(e)}function a(l,d){var p;const g=e.getProps(),m=e.getVariantContext(!0)||{},y=[],b=new Set;let S={},E=1/0;for(let k=0;kE&&z;const Y=Array.isArray(N)?N:[N];let ve=Y.reduce(i,{});$===!1&&(ve={});const{prevResolvedValues:ge={}}=R,Se={...ge,...ve},_e=we=>{j=!0,b.delete(we),R.needsAnimating[we]=!0};for(const we in Se){const J=ve[we],G=ge[we];S.hasOwnProperty(we)||(J!==G?Vm(J)&&Vm(G)?!JN(J,G)||q?_e(we):R.protectedKeys[we]=!0:J!==void 0?_e(we):b.add(we):J!==void 0&&b.has(we)?_e(we):R.protectedKeys[we]=!0)}R.prevProp=N,R.prevResolvedValues=ve,R.isActive&&(S={...S,...ve}),r&&e.blockInitialAnimation&&(j=!1),j&&!F&&y.push(...Y.map(we=>({animation:we,options:{type:L,...l}})))}if(b.size){const k={};b.forEach(L=>{const R=e.getBaseTarget(L);R!==void 0&&(k[L]=R)}),y.push({animation:k})}let P=Boolean(y.length);return r&&g.initial===!1&&!e.manuallyAnimateOnMount&&(P=!1),r=!1,P?t(y):Promise.resolve()}function s(l,d,p){var g;if(n[l].isActive===d)return Promise.resolve();(g=e.variantChildren)===null||g===void 0||g.forEach(y=>{var b;return(b=y.animationState)===null||b===void 0?void 0:b.setActive(l,d)}),n[l].isActive=d;const m=a(p,l);for(const y in n)n[y].protectedKeys={};return m}return{animateChanges:a,setActive:s,setAnimateFunction:o,getState:()=>n}}function Wne(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!JN(t,e):!1}function Mf(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function Vne(){return{[Yn.Animate]:Mf(!0),[Yn.InView]:Mf(),[Yn.Hover]:Mf(),[Yn.Tap]:Mf(),[Yn.Drag]:Mf(),[Yn.Focus]:Mf(),[Yn.Exit]:Mf()}}const Une={animation:id(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=Hne(e)),$4(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:id(e=>{const{custom:t,visualElement:n}=e,[r,i]=H8(),o=C.exports.useContext(K0);C.exports.useEffect(()=>{n.isPresent=r;const a=n.animationState&&n.animationState.setActive(Yn.Exit,!r,{custom:o&&o.custom||t});a&&!r&&a.then(i)},[r])})};class aD{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=iS(this.lastMoveEventInfo,this.history),p=this.startEvent!==null,g=B8(d.offset,{x:0,y:0})>=3;if(!p&&!g)return;const{point:m}=d,{timestamp:y}=A6();this.history.push({...m,timestamp:y});const{onStart:b,onMove:S}=this.handlers;p||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),S&&S(this.lastMoveEvent,d)},this.handlePointerMove=(d,p)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=rS(p,this.transformPagePoint),_N(d)&&d.buttons===0){this.handlePointerUp(d,p);return}Dl.update(this.updatePoint,!0)},this.handlePointerUp=(d,p)=>{this.end();const{onEnd:g,onSessionEnd:m}=this.handlers,y=iS(rS(p,this.transformPagePoint),this.history);this.startEvent&&g&&g(d,y),m&&m(d,y)},kN(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const i=R8(t),o=rS(i,this.transformPagePoint),{point:a}=o,{timestamp:s}=A6();this.history=[{...a,timestamp:s}];const{onSessionStart:l}=n;l&&l(t,iS(o,this.history)),this.removeListeners=V4(s0(window,"pointermove",this.handlePointerMove),s0(window,"pointerup",this.handlePointerUp),s0(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),qm.update(this.updatePoint)}}function rS(e,t){return t?{point:t(e.point)}:e}function $P(e,t){return{x:e.x-t.x,y:e.y-t.y}}function iS({point:e},t){return{point:e,delta:$P(e,sD(t)),offset:$P(e,Gne(t)),velocity:jne(t,.1)}}function Gne(e){return e[0]}function sD(e){return e[e.length-1]}function jne(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=sD(e);for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>b3(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function Ca(e){return e.max-e.min}function FP(e,t=0,n=.01){return B8(e,t)n&&(e=r?Ir(n,e,r.max):Math.min(e,n)),e}function VP(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function Yne(e,{top:t,left:n,bottom:r,right:i}){return{x:VP(e.x,n,i),y:VP(e.y,t,r)}}function UP(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=Um(t.min,t.max-r,e.min):r>i&&(n=Um(e.min,e.max-i,t.min)),m3(0,1,n)}function Qne(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const R6=.35;function Jne(e=R6){return e===!1?e=0:e===!0&&(e=R6),{x:GP(e,"left","right"),y:GP(e,"top","bottom")}}function GP(e,t,n){return{min:jP(e,t),max:jP(e,n)}}function jP(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const qP=()=>({translate:0,scale:1,origin:0,originPoint:0}),im=()=>({x:qP(),y:qP()}),KP=()=>({min:0,max:0}),Di=()=>({x:KP(),y:KP()});function wl(e){return[e("x"),e("y")]}function lD({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function ere({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function tre(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function oS(e){return e===void 0||e===1}function uD({scale:e,scaleX:t,scaleY:n}){return!oS(e)||!oS(t)||!oS(n)}function Gc(e){return uD(e)||YP(e.x)||YP(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function YP(e){return e&&e!=="0%"}function S3(e,t,n){const r=e-n,i=t*r;return n+i}function ZP(e,t,n,r,i){return i!==void 0&&(e=S3(e,i,r)),S3(e,n,r)+t}function M6(e,t=0,n=1,r,i){e.min=ZP(e.min,t,n,r,i),e.max=ZP(e.max,t,n,r,i)}function cD(e,{x:t,y:n}){M6(e.x,t.translate,t.scale,t.originPoint),M6(e.y,n.translate,n.scale,n.originPoint)}function nre(e,t,n,r=!1){var i,o;const a=n.length;if(!a)return;t.x=t.y=1;let s,l;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(R8(s,"page").point)},i=(s,l)=>{var d;const{drag:p,dragPropagation:g,onDragStart:m}=this.getProps();p&&!g&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=LN(p),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),wl(y=>{var b,S;let E=this.getAxisMotionValue(y).get()||0;if(Nl.test(E)){const P=(S=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||S===void 0?void 0:S.actual[y];P&&(E=Ca(P)*(parseFloat(E)/100))}this.originPoint[y]=E}),m?.(s,l),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(Yn.Drag,!0))},o=(s,l)=>{const{dragPropagation:d,dragDirectionLock:p,onDirectionLock:g,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:y}=l;if(p&&this.currentDirection===null){this.currentDirection=lre(y),this.currentDirection!==null&&g?.(this.currentDirection);return}this.updateAxis("x",l.point,y),this.updateAxis("y",l.point,y),this.visualElement.syncRender(),m?.(s,l)},a=(s,l)=>this.stop(s,l);this.panSession=new aD(t,{onSessionStart:r,onStart:i,onMove:o,onSessionEnd:a},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:i}=n;this.startAnimation(i);const{onDragEnd:o}=this.getProps();o?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Yn.Drag,!1)}updateAxis(t,n,r){const{drag:i}=this.getProps();if(!r||!ry(t,i,this.currentDirection))return;const o=this.getAxisMotionValue(t);let a=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(a=Kne(a,this.constraints[t],this.elastic[t])),o.set(a)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},i=this.constraints;t&&Yp(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=Yne(r.actual,t):this.constraints=!1,this.elastic=Jne(n),i!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&wl(o=>{this.getAxisMotionValue(o)&&(this.constraints[o]=Qne(r.actual[o],this.constraints[o]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Yp(t))return!1;const r=t.current,{projection:i}=this.visualElement;if(!i||!i.layout)return!1;const o=ore(r,i.root,this.visualElement.getTransformPagePoint());let a=Zne(i.layout.actual,o);if(n){const s=n(ere(a));this.hasMutatedConstraints=!!s,s&&(a=lD(s))}return a}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:i,dragTransition:o,dragSnapToOrigin:a,onDragTransitionEnd:s}=this.getProps(),l=this.constraints||{},d=wl(p=>{var g;if(!ry(p,n,this.currentDirection))return;let m=(g=l?.[p])!==null&&g!==void 0?g:{};a&&(m={min:0,max:0});const y=i?200:1e6,b=i?40:1e7,S={type:"inertia",velocity:r?t[p]:0,bounceStiffness:y,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...o,...m};return this.startAxisValueAnimation(p,S)});return Promise.all(d).then(s)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return G8(t,r,0,n)}stopAnimation(){wl(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const i="_drag"+t.toUpperCase(),o=this.visualElement.getProps()[i];return o||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){wl(n=>{const{drag:r}=this.getProps();if(!ry(n,r,this.currentDirection))return;const{projection:i}=this.visualElement,o=this.getAxisMotionValue(n);if(i&&i.layout){const{min:a,max:s}=i.layout.actual[n];o.set(t[n]-Ir(a,s,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:i}=this.visualElement;if(!Yp(r)||!i||!this.constraints)return;this.stopAnimation();const o={x:0,y:0};wl(s=>{const l=this.getAxisMotionValue(s);if(l){const d=l.get();o[s]=Xne({min:d,max:d},this.constraints[s])}});const{transformTemplate:a}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=a?a({},""):"none",(t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout(),this.resolveConstraints(),wl(s=>{if(!ry(s,n,null))return;const l=this.getAxisMotionValue(s),{min:d,max:p}=this.constraints[s];l.set(Ir(d,p,o[s]))})}addListeners(){var t;are.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=s0(n,"pointerdown",d=>{const{drag:p,dragListener:g=!0}=this.getProps();p&&g&&this.start(d)}),i=()=>{const{dragConstraints:d}=this.getProps();Yp(d)&&(this.constraints=this.resolveRefConstraints())},{projection:o}=this.visualElement,a=o.addEventListener("measure",i);o&&!o.layout&&((t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout()),i();const s=H4(window,"resize",()=>this.scalePositionWithinConstraints()),l=o.addEventListener("didUpdate",({delta:d,hasLayoutChanged:p})=>{this.isDragging&&p&&(wl(g=>{const m=this.getAxisMotionValue(g);!m||(this.originPoint[g]+=d[g].translate,m.set(m.get()+d[g].translate))}),this.visualElement.syncRender())});return()=>{s(),r(),a(),l?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:i=!1,dragConstraints:o=!1,dragElastic:a=R6,dragMomentum:s=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:i,dragConstraints:o,dragElastic:a,dragMomentum:s}}}function ry(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function lre(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function ure(e){const{dragControls:t,visualElement:n}=e,r=B4(()=>new sre(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function cre({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:i}){const o=e||t||n||r,a=C.exports.useRef(null),{transformPagePoint:s}=C.exports.useContext(_8),l={onSessionStart:r,onStart:t,onMove:e,onEnd:(p,g)=>{a.current=null,n&&n(p,g)}};C.exports.useEffect(()=>{a.current!==null&&a.current.updateHandlers(l)});function d(p){a.current=new aD(p,l,{transformPagePoint:s})}p3(i,"pointerdown",o&&d),M8(()=>a.current&&a.current.end())}const dre={pan:id(cre),drag:id(ure)},O6={current:null},fD={current:!1};function fre(){if(fD.current=!0,!!bh)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>O6.current=e.matches;e.addListener(t),t()}else O6.current=!1}const iy=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function hre(){const e=iy.map(()=>new tm),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{iy.forEach(i=>{var o;const a="on"+i,s=r[a];(o=t[i])===null||o===void 0||o.call(t),s&&(t[i]=n[a](s))})}};return e.forEach((r,i)=>{n["on"+iy[i]]=o=>r.add(o),n["notify"+iy[i]]=(...o)=>r.notify(...o)}),n}function pre(e,t,n){const{willChange:r}=t;for(const i in t){const o=t[i],a=n[i];if(Hl(o))e.addValue(i,o),x3(r)&&r.add(i);else if(Hl(a))e.addValue(i,A0(o)),x3(r)&&r.remove(i);else if(a!==o)if(e.hasValue(i)){const s=e.getValue(i);!s.hasAnimated&&s.set(o)}else{const s=e.getStaticValue(i);e.addValue(i,A0(s!==void 0?s:o))}}for(const i in n)t[i]===void 0&&e.removeValue(i);return t}const hD=Object.keys(Hm),gre=hD.length,pD=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:i,render:o,readValueFromInstance:a,removeValueFromRenderState:s,sortNodePosition:l,scrapeMotionValuesFromProps:d})=>({parent:p,props:g,presenceId:m,blockInitialAnimation:y,visualState:b,reducedMotionConfig:S},E={})=>{let P=!1;const{latestValues:k,renderState:L}=b;let R;const N=hre(),z=new Map,$=new Map;let F={};const q={...k};let j;function Y(){!R||!P||(ve(),o(R,L,g.style,te.projection))}function ve(){t(te,L,k,E,g)}function ge(){N.notifyUpdate(k)}function Se(Q,W){const se=W.onChange(xe=>{k[Q]=xe,g.onUpdate&&Dl.update(ge,!1,!0)}),de=W.onRenderRequest(te.scheduleRender);$.set(Q,()=>{se(),de()})}const{willChange:_e,...we}=d(g);for(const Q in we){const W=we[Q];k[Q]!==void 0&&Hl(W)&&(W.set(k[Q],!1),x3(_e)&&_e.add(Q))}const J=F4(g),G=tN(g),te={treeType:e,current:null,depth:p?p.depth+1:0,parent:p,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:G?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(p?.isMounted()),blockInitialAnimation:y,isMounted:()=>Boolean(R),mount(Q){P=!0,R=te.current=Q,te.projection&&te.projection.mount(Q),G&&p&&!J&&(j=p?.addVariantChild(te)),z.forEach((W,se)=>Se(se,W)),fD.current||fre(),te.shouldReduceMotion=S==="never"?!1:S==="always"?!0:O6.current,p?.children.add(te),te.setProps(g)},unmount(){var Q;(Q=te.projection)===null||Q===void 0||Q.unmount(),qm.update(ge),qm.render(Y),$.forEach(W=>W()),j?.(),p?.children.delete(te),N.clearAllListeners(),R=void 0,P=!1},loadFeatures(Q,W,se,de,xe,ze){const Me=[];for(let Ue=0;Uete.scheduleRender(),animationType:typeof Ee=="string"?Ee:"both",initialPromotionConfig:ze,layoutScroll:pt})}return Me},addVariantChild(Q){var W;const se=te.getClosestVariantNode();if(se)return(W=se.variantChildren)===null||W===void 0||W.add(Q),()=>se.variantChildren.delete(Q)},sortNodePosition(Q){return!l||e!==Q.treeType?0:l(te.getInstance(),Q.getInstance())},getClosestVariantNode:()=>G?te:p?.getClosestVariantNode(),getLayoutId:()=>g.layoutId,getInstance:()=>R,getStaticValue:Q=>k[Q],setStaticValue:(Q,W)=>k[Q]=W,getLatestValues:()=>k,setVisibility(Q){te.isVisible!==Q&&(te.isVisible=Q,te.scheduleRender())},makeTargetAnimatable(Q,W=!0){return r(te,Q,g,W)},measureViewportBox(){return i(R,g)},addValue(Q,W){te.hasValue(Q)&&te.removeValue(Q),z.set(Q,W),k[Q]=W.get(),Se(Q,W)},removeValue(Q){var W;z.delete(Q),(W=$.get(Q))===null||W===void 0||W(),$.delete(Q),delete k[Q],s(Q,L)},hasValue:Q=>z.has(Q),getValue(Q,W){let se=z.get(Q);return se===void 0&&W!==void 0&&(se=A0(W),te.addValue(Q,se)),se},forEachValue:Q=>z.forEach(Q),readValue:Q=>k[Q]!==void 0?k[Q]:a(R,Q,E),setBaseTarget(Q,W){q[Q]=W},getBaseTarget(Q){if(n){const W=n(g,Q);if(W!==void 0&&!Hl(W))return W}return q[Q]},...N,build(){return ve(),L},scheduleRender(){Dl.render(Y,!1,!0)},syncRender:Y,setProps(Q){(Q.transformTemplate||g.transformTemplate)&&te.scheduleRender(),g=Q,N.updatePropListeners(Q),F=pre(te,d(g),F)},getProps:()=>g,getVariant:Q=>{var W;return(W=g.variants)===null||W===void 0?void 0:W[Q]},getDefaultTransition:()=>g.transition,getTransformPagePoint:()=>g.transformPagePoint,getVariantContext(Q=!1){if(Q)return p?.getVariantContext();if(!J){const se=p?.getVariantContext()||{};return g.initial!==void 0&&(se.initial=g.initial),se}const W={};for(let se=0;se{const o=i.get();if(!N6(o))return;const a=D6(o,r);a&&i.set(a)});for(const i in t){const o=t[i];if(!N6(o))continue;const a=D6(o,r);!a||(t[i]=a,n&&n[i]===void 0&&(n[i]=o))}return{target:t,transitionEnd:n}}const bre=new Set(["width","height","top","left","right","bottom","x","y"]),vD=e=>bre.has(e),xre=e=>Object.keys(e).some(vD),yD=(e,t)=>{e.set(t,!1),e.set(t)},QP=e=>e===xh||e===wt;var JP;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(JP||(JP={}));const eT=(e,t)=>parseFloat(e.split(", ")[t]),tT=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const i=r.match(/^matrix3d\((.+)\)$/);if(i)return eT(i[1],t);{const o=r.match(/^matrix\((.+)\)$/);return o?eT(o[1],e):0}},Sre=new Set(["x","y","z"]),wre=f3.filter(e=>!Sre.has(e));function Cre(e){const t=[];return wre.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const nT={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:tT(4,13),y:tT(5,14)},_re=(e,t,n)=>{const r=t.measureViewportBox(),i=t.getInstance(),o=getComputedStyle(i),{display:a}=o,s={};a==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{s[d]=nT[d](r,o)}),t.syncRender();const l=t.measureViewportBox();return n.forEach(d=>{const p=t.getValue(d);yD(p,s[d]),e[d]=nT[d](l,o)}),e},kre=(e,t,n={},r={})=>{t={...t},r={...r};const i=Object.keys(t).filter(vD);let o=[],a=!1;const s=[];if(i.forEach(l=>{const d=e.getValue(l);if(!e.hasValue(l))return;let p=n[l],g=ug(p);const m=t[l];let y;if(Vm(m)){const b=m.length,S=m[0]===null?1:0;p=m[S],g=ug(p);for(let E=S;E=0?window.pageYOffset:null,d=_re(t,e,s);return o.length&&o.forEach(([p,g])=>{e.getValue(p).set(g)}),e.syncRender(),bh&&l!==null&&window.scrollTo({top:l}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function Ere(e,t,n,r){return xre(t)?kre(e,t,n,r):{target:t,transitionEnd:r}}const Pre=(e,t,n,r)=>{const i=yre(e,t,r);return t=i.target,r=i.transitionEnd,Ere(e,t,n,r)};function Tre(e){return window.getComputedStyle(e)}const bD={treeType:"dom",readValueFromInstance(e,t){if(Sv.has(t)){const n=W8(t);return n&&n.default||0}else{const n=Tre(e),r=(iN(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return dD(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:i},o=!0){let a=Mne(r,t||{},e);if(i&&(n&&(n=i(n)),r&&(r=i(r)),a&&(a=i(a))),o){Ine(e,r,a);const s=Pre(e,r,a,n);n=s.transitionEnd,r=s.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:I8,build(e,t,n,r,i){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),T8(t,n,r,i.transformTemplate)},render:vN},Lre=pD(bD),Are=pD({...bD,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return Sv.has(t)?((n=W8(t))===null||n===void 0?void 0:n.default)||0:(t=yN.has(t)?t:mN(t),e.getAttribute(t))},scrapeMotionValuesFromProps:xN,build(e,t,n,r,i){A8(t,n,r,i.transformTemplate)},render:bN}),Ire=(e,t)=>E8(e)?Are(t,{enableHardwareAcceleration:!1}):Lre(t,{enableHardwareAcceleration:!0});function rT(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const cg={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(wt.test(e))e=parseFloat(e);else return e;const n=rT(e,t.target.x),r=rT(e,t.target.y);return`${n}% ${r}%`}},iT="_$css",Rre={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,i=e.includes("var("),o=[];i&&(e=e.replace(mD,y=>(o.push(y),iT)));const a=Hu.parse(e);if(a.length>5)return r;const s=Hu.createTransformer(e),l=typeof a[0]!="number"?1:0,d=n.x.scale*t.x,p=n.y.scale*t.y;a[0+l]/=d,a[1+l]/=p;const g=Ir(d,p,.5);typeof a[2+l]=="number"&&(a[2+l]/=g),typeof a[3+l]=="number"&&(a[3+l]/=g);let m=s(a);if(i){let y=0;m=m.replace(iT,()=>{const b=o[y];return y++,b})}return m}};class Mre extends re.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:i}=this.props,{projection:o}=t;GJ(Nre),o&&(n.group&&n.group.add(o),r&&r.register&&i&&r.register(o),o.root.didUpdate(),o.addEventListener("animationComplete",()=>{this.safeToRemove()}),o.setOptions({...o.options,onExitComplete:()=>this.safeToRemove()})),Qg.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:i,isPresent:o}=this.props,a=r.projection;return a&&(a.isPresent=o,i||t.layoutDependency!==n||n===void 0?a.willUpdate():this.safeToRemove(),t.isPresent!==o&&(o?a.promote():a.relegate()||Dl.postRender(()=>{var s;!((s=a.getStack())===null||s===void 0)&&s.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:i}=t;i&&(i.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(i),r?.deregister&&r.deregister(i))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function Ore(e){const[t,n]=H8(),r=C.exports.useContext(k8);return w(Mre,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(nN),isPresent:t,safeToRemove:n})}const Nre={borderRadius:{...cg,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:cg,borderTopRightRadius:cg,borderBottomLeftRadius:cg,borderBottomRightRadius:cg,boxShadow:Rre},Dre={measureLayout:Ore};function zre(e,t,n={}){const r=Hl(e)?e:A0(e);return G8("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const xD=["TopLeft","TopRight","BottomLeft","BottomRight"],$re=xD.length,oT=e=>typeof e=="string"?parseFloat(e):e,aT=e=>typeof e=="number"||wt.test(e);function Fre(e,t,n,r,i,o){var a,s,l,d;i?(e.opacity=Ir(0,(a=n.opacity)!==null&&a!==void 0?a:1,Bre(r)),e.opacityExit=Ir((s=t.opacity)!==null&&s!==void 0?s:1,0,Hre(r))):o&&(e.opacity=Ir((l=t.opacity)!==null&&l!==void 0?l:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let p=0;p<$re;p++){const g=`border${xD[p]}Radius`;let m=sT(t,g),y=sT(n,g);if(m===void 0&&y===void 0)continue;m||(m=0),y||(y=0),m===0||y===0||aT(m)===aT(y)?(e[g]=Math.max(Ir(oT(m),oT(y),r),0),(Nl.test(y)||Nl.test(m))&&(e[g]+="%")):e[g]=y}(t.rotate||n.rotate)&&(e.rotate=Ir(t.rotate||0,n.rotate||0,r))}function sT(e,t){var n;return(n=e[t])!==null&&n!==void 0?n:e.borderRadius}const Bre=SD(0,.5,$8),Hre=SD(.5,.95,D8);function SD(e,t,n){return r=>rt?1:n(Um(e,t,r))}function lT(e,t){e.min=t.min,e.max=t.max}function Ls(e,t){lT(e.x,t.x),lT(e.y,t.y)}function uT(e,t,n,r,i){return e-=t,e=S3(e,1/n,r),i!==void 0&&(e=S3(e,1/i,r)),e}function Wre(e,t=0,n=1,r=.5,i,o=e,a=e){if(Nl.test(t)&&(t=parseFloat(t),t=Ir(a.min,a.max,t/100)-a.min),typeof t!="number")return;let s=Ir(o.min,o.max,r);e===o&&(s-=t),e.min=uT(e.min,t,n,s,i),e.max=uT(e.max,t,n,s,i)}function cT(e,t,[n,r,i],o,a){Wre(e,t[n],t[r],t[i],t.scale,o,a)}const Vre=["x","scaleX","originX"],Ure=["y","scaleY","originY"];function dT(e,t,n,r){cT(e.x,t,Vre,n?.x,r?.x),cT(e.y,t,Ure,n?.y,r?.y)}function fT(e){return e.translate===0&&e.scale===1}function wD(e){return fT(e.x)&&fT(e.y)}function CD(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function hT(e){return Ca(e.x)/Ca(e.y)}function Gre(e,t,n=.01){return B8(e,t)<=n}class jre{constructor(){this.members=[]}add(t){j8(this.members,t),t.scheduleRender()}remove(t){if(q8(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(i=>t===i);if(n===0)return!1;let r;for(let i=n;i>=0;i--){const o=this.members[i];if(o.isPresent!==!1){r=o;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,n&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:o}=t.options;o===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,i,o,a;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(a=(i=t.resumingFrom)===null||i===void 0?void 0:(o=i.options).onExitComplete)===null||a===void 0||a.call(o)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const qre="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function pT(e,t,n){const r=e.x.translate/t.x,i=e.y.translate/t.y;let o=`translate3d(${r}px, ${i}px, 0) `;if(o+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:l,rotateX:d,rotateY:p}=n;l&&(o+=`rotate(${l}deg) `),d&&(o+=`rotateX(${d}deg) `),p&&(o+=`rotateY(${p}deg) `)}const a=e.x.scale*t.x,s=e.y.scale*t.y;return o+=`scale(${a}, ${s})`,o===qre?"none":o}const Kre=(e,t)=>e.depth-t.depth;class Yre{constructor(){this.children=[],this.isDirty=!1}add(t){j8(this.children,t),this.isDirty=!0}remove(t){q8(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(Kre),this.isDirty=!1,this.children.forEach(t)}}const gT=["","X","Y","Z"],mT=1e3;function _D({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:i}){return class{constructor(a,s={},l=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(tie),this.nodes.forEach(nie)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=a,this.latestValues=s,this.root=l?l.root||l:this,this.path=l?[...l.path,l]:[],this.parent=l,this.depth=l?l.depth+1:0,a&&this.root.registerPotentialNode(a,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(a,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(y,250),Qg.hasAnimatedSinceResize&&(Qg.hasAnimatedSinceResize=!1,this.nodes.forEach(eie))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&g&&(d||p)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:y,hasRelativeTargetChanged:b,layout:S})=>{var E,P,k,L,R;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const N=(P=(E=this.options.transition)!==null&&E!==void 0?E:g.getDefaultTransition())!==null&&P!==void 0?P:sie,{onLayoutAnimationStart:z,onLayoutAnimationComplete:$}=g.getProps(),F=!this.targetLayout||!CD(this.targetLayout,S)||b,q=!y&&b;if(((k=this.resumeFrom)===null||k===void 0?void 0:k.instance)||q||y&&(F||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,q);const j={...U8(N,"layout"),onPlay:z,onComplete:$};g.shouldReduceMotion&&(j.delay=0,j.type=!1),this.startAnimation(j)}else!y&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((R=(L=this.options).onExitComplete)===null||R===void 0||R.call(L));this.targetLayout=S})}unmount(){var a,s;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(a=this.getStack())===null||a===void 0||a.remove(this),(s=this.parent)===null||s===void 0||s.children.delete(this),this.instance=void 0,qm.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var a;return this.isAnimationBlocked||((a=this.parent)===null||a===void 0?void 0:a.isTreeAnimationBlocked())||!1}startUpdate(){var a;this.isUpdateBlocked()||(this.isUpdating=!0,(a=this.nodes)===null||a===void 0||a.forEach(rie))}willUpdate(a=!0){var s,l,d;if(this.root.isUpdateBlocked()){(l=(s=this.options).onExitComplete)===null||l===void 0||l.call(s);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let y=0;y{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const a=this.measure(),s=this.removeTransform(this.removeElementScroll(a));ST(s),this.snapshot={measured:a,layout:s,latestValues:{}}}updateLayout(){var a;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var k;const L=P/1e3;yT(m.x,a.x,L),yT(m.y,a.y,L),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((k=this.relativeParent)===null||k===void 0?void 0:k.layout)&&(rm(y,this.layout.actual,this.relativeParent.layout.actual),oie(this.relativeTarget,this.relativeTargetOrigin,y,L)),b&&(this.animationValues=g,Fre(g,p,this.latestValues,L,E,S)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=L},this.mixTargetDelta(0)}startAnimation(a){var s,l;this.notifyListeners("animationStart"),(s=this.currentAnimation)===null||s===void 0||s.stop(),this.resumingFrom&&((l=this.resumingFrom.currentAnimation)===null||l===void 0||l.stop()),this.pendingAnimation&&(qm.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Dl.update(()=>{Qg.hasAnimatedSinceResize=!0,this.currentAnimation=zre(0,mT,{...a,onUpdate:d=>{var p;this.mixTargetDelta(d),(p=a.onUpdate)===null||p===void 0||p.call(a,d)},onComplete:()=>{var d;(d=a.onComplete)===null||d===void 0||d.call(a),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var a;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(a=this.getStack())===null||a===void 0||a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var a;this.currentAnimation&&((a=this.mixTargetDelta)===null||a===void 0||a.call(this,mT),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const a=this.getLead();let{targetWithTransforms:s,target:l,layout:d,latestValues:p}=a;if(!(!s||!l||!d)){if(this!==a&&this.layout&&d&&kD(this.options.animationType,this.layout.actual,d.actual)){l=this.target||Di();const g=Ca(this.layout.actual.x);l.x.min=a.target.x.min,l.x.max=l.x.min+g;const m=Ca(this.layout.actual.y);l.y.min=a.target.y.min,l.y.max=l.y.min+m}Ls(s,l),Zp(s,p),nm(this.projectionDeltaWithTransform,this.layoutCorrected,s,p)}}registerSharedNode(a,s){var l,d,p;this.sharedNodes.has(a)||this.sharedNodes.set(a,new jre),this.sharedNodes.get(a).add(s),s.promote({transition:(l=s.options.initialPromotionConfig)===null||l===void 0?void 0:l.transition,preserveFollowOpacity:(p=(d=s.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||p===void 0?void 0:p.call(d,s)})}isLead(){const a=this.getStack();return a?a.lead===this:!0}getLead(){var a;const{layoutId:s}=this.options;return s?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this}getPrevLead(){var a;const{layoutId:s}=this.options;return s?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0}getStack(){const{layoutId:a}=this.options;if(a)return this.root.sharedNodes.get(a)}promote({needsReset:a,transition:s,preserveFollowOpacity:l}={}){const d=this.getStack();d&&d.promote(this,l),a&&(this.projectionDelta=void 0,this.needsReset=!0),s&&this.setOptions({transition:s})}relegate(){const a=this.getStack();return a?a.relegate(this):!1}resetRotation(){const{visualElement:a}=this.options;if(!a)return;let s=!1;const l={};for(let d=0;d{var s;return(s=a.currentAnimation)===null||s===void 0?void 0:s.stop()}),this.root.nodes.forEach(vT),this.root.sharedNodes.clear()}}}function Zre(e){e.updateLayout()}function Xre(e){var t,n,r;const i=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&i&&e.hasListeners("didUpdate")){const{actual:o,measured:a}=e.layout,{animationType:s}=e.options;s==="size"?wl(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=Ca(y);y.min=o[m].min,y.max=y.min+b}):kD(s,i.layout,o)&&wl(m=>{const y=i.isShared?i.measured[m]:i.layout[m],b=Ca(o[m]);y.max=y.min+b});const l=im();nm(l,o,i.layout);const d=im();i.isShared?nm(d,e.applyTransform(a,!0),i.measured):nm(d,o,i.layout);const p=!wD(l);let g=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:y}=e.relativeParent;if(m&&y){const b=Di();rm(b,i.layout,m.layout);const S=Di();rm(S,o,y.actual),CD(b,S)||(g=!0)}}e.notifyListeners("didUpdate",{layout:o,snapshot:i,delta:d,layoutDelta:l,hasLayoutChanged:p,hasRelativeTargetChanged:g})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function Qre(e){e.clearSnapshot()}function vT(e){e.clearMeasurements()}function Jre(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function eie(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function tie(e){e.resolveTargetDelta()}function nie(e){e.calcProjection()}function rie(e){e.resetRotation()}function iie(e){e.removeLeadSnapshot()}function yT(e,t,n){e.translate=Ir(t.translate,0,n),e.scale=Ir(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function bT(e,t,n,r){e.min=Ir(t.min,n.min,r),e.max=Ir(t.max,n.max,r)}function oie(e,t,n,r){bT(e.x,t.x,n.x,r),bT(e.y,t.y,n.y,r)}function aie(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const sie={duration:.45,ease:[.4,0,.1,1]};function lie(e,t){let n=e.root;for(let o=e.path.length-1;o>=0;o--)if(Boolean(e.path[o].instance)){n=e.path[o];break}const i=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);i&&e.mount(i,!0)}function xT(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function ST(e){xT(e.x),xT(e.y)}function kD(e,t,n){return e==="position"||e==="preserve-aspect"&&!Gre(hT(t),hT(n))}const uie=_D({attachResizeListener:(e,t)=>H4(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),aS={current:void 0},cie=_D({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!aS.current){const e=new uie(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),aS.current=e}return aS.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),die={...Une,...ene,...dre,...Dre},ls=VJ((e,t)=>Tee(e,t,die,Ire,cie));function ED(){const e=C.exports.useRef(!1);return c3(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function fie(){const e=ED(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>Dl.postRender(r),[r]),t]}class hie extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function pie({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),i=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:o,height:a,top:s,left:l}=i.current;if(t||!r.current||!o||!a)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` - [data-motion-pop-id="${n}"] { - position: absolute !important; - width: ${o}px !important; - height: ${a}px !important; - top: ${s}px !important; - left: ${l}px !important; - } - `),()=>{document.head.removeChild(d)}},[t]),w(hie,{isPresent:t,childRef:r,sizeRef:i,children:C.exports.cloneElement(e,{ref:r})})}const sS=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:i,presenceAffectsLayout:o,mode:a})=>{const s=B4(gie),l=C.exports.useId(),d=C.exports.useMemo(()=>({id:l,initial:t,isPresent:n,custom:i,onExitComplete:p=>{s.set(p,!0);for(const g of s.values())if(!g)return;r&&r()},register:p=>(s.set(p,!1),()=>s.delete(p))}),o?void 0:[n]);return C.exports.useMemo(()=>{s.forEach((p,g)=>s.set(g,!1))},[n]),C.exports.useEffect(()=>{!n&&!s.size&&r&&r()},[n]),a==="popLayout"&&(e=w(pie,{isPresent:n,children:e})),w(K0.Provider,{value:d,children:e})};function gie(){return new Map}const Rp=e=>e.key||"";function mie(e,t){e.forEach(n=>{const r=Rp(n);t.set(r,n)})}function vie(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const Yu=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:i,presenceAffectsLayout:o=!0,mode:a="sync"})=>{i&&(a="wait",QN(!1,"Replace exitBeforeEnter with mode='wait'"));let[s]=fie();const l=C.exports.useContext(k8).forceRender;l&&(s=l);const d=ED(),p=vie(e);let g=p;const m=new Set,y=C.exports.useRef(g),b=C.exports.useRef(new Map).current,S=C.exports.useRef(!0);if(c3(()=>{S.current=!1,mie(p,b),y.current=g}),M8(()=>{S.current=!0,b.clear(),m.clear()}),S.current)return w(Un,{children:g.map(L=>w(sS,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:o,mode:a,children:L},Rp(L)))});g=[...g];const E=y.current.map(Rp),P=p.map(Rp),k=E.length;for(let L=0;L{if(P.indexOf(L)!==-1)return;const R=b.get(L);if(!R)return;const N=E.indexOf(L),z=()=>{b.delete(L),m.delete(L);const $=y.current.findIndex(F=>F.key===L);if(y.current.splice($,1),!m.size){if(y.current=p,d.current===!1)return;s(),r&&r()}};g.splice(N,0,w(sS,{isPresent:!1,onExitComplete:z,custom:t,presenceAffectsLayout:o,mode:a,children:R},Rp(R)))}),g=g.map(L=>{const R=L.key;return m.has(R)?L:w(sS,{isPresent:!0,presenceAffectsLayout:o,mode:a,children:L},Rp(L))}),XN!=="production"&&a==="wait"&&g.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),w(Un,{children:m.size?g:g.map(L=>C.exports.cloneElement(L))})};var Ev=(...e)=>e.filter(Boolean).join(" ");function yie(){return!1}var bie=e=>{const{condition:t,message:n}=e;t&&yie()&&console.warn(n)},Yf={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},dg={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function z6(e){switch(e?.direction??"right"){case"right":return dg.slideRight;case"left":return dg.slideLeft;case"bottom":return dg.slideDown;case"top":return dg.slideUp;default:return dg.slideRight}}var ih={enter:{duration:.2,ease:Yf.easeOut},exit:{duration:.1,ease:Yf.easeIn}},Hs={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},xie=e=>e!=null&&parseInt(e.toString(),10)>0,wT={exit:{height:{duration:.2,ease:Yf.ease},opacity:{duration:.3,ease:Yf.ease}},enter:{height:{duration:.3,ease:Yf.ease},opacity:{duration:.4,ease:Yf.ease}}},Sie={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:xie(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Hs.exit(wT.exit,i)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:i})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Hs.enter(wT.enter,i)})},PD=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:i=!0,startingHeight:o=0,endingHeight:a="auto",style:s,className:l,transition:d,transitionEnd:p,...g}=e,[m,y]=C.exports.useState(!1);C.exports.useEffect(()=>{const k=setTimeout(()=>{y(!0)});return()=>clearTimeout(k)},[]),bie({condition:Boolean(o>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(o.toString())>0,S={startingHeight:o,endingHeight:a,animateOpacity:i,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:p?.enter,exit:r?p?.exit:{...p?.exit,display:b?"block":"none"}}},E=r?n:!0,P=n||r?"enter":"exit";return w(Yu,{initial:!1,custom:S,children:E&&re.createElement(ls.div,{ref:t,...g,className:Ev("chakra-collapse",l),style:{overflow:"hidden",display:"block",...s},custom:S,variants:Sie,initial:r?"exit":!1,animate:P,exit:"exit"})})});PD.displayName="Collapse";var wie={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Hs.enter(ih.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Hs.exit(ih.exit,n),transitionEnd:t?.exit})},TD={initial:"exit",animate:"enter",exit:"exit",variants:wie},Cie=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,className:o,transition:a,transitionEnd:s,delay:l,...d}=t,p=i||r?"enter":"exit",g=r?i&&r:!0,m={transition:a,transitionEnd:s,delay:l};return w(Yu,{custom:m,children:g&&re.createElement(ls.div,{ref:n,className:Ev("chakra-fade",o),custom:m,...TD,animate:p,...d})})});Cie.displayName="Fade";var _ie={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Hs.exit(ih.exit,i)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Hs.enter(ih.enter,n),transitionEnd:e?.enter})},LD={initial:"exit",animate:"enter",exit:"exit",variants:_ie},kie=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,initialScale:a=.95,className:s,transition:l,transitionEnd:d,delay:p,...g}=t,m=r?i&&r:!0,y=i||r?"enter":"exit",b={initialScale:a,reverse:o,transition:l,transitionEnd:d,delay:p};return w(Yu,{custom:b,children:m&&re.createElement(ls.div,{ref:n,className:Ev("chakra-offset-slide",s),...LD,animate:y,custom:b,...g})})});kie.displayName="ScaleFade";var CT={exit:{duration:.15,ease:Yf.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},Eie={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:i}=z6({direction:e});return{...i,transition:t?.exit??Hs.exit(CT.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:i}=z6({direction:e});return{...i,transition:n?.enter??Hs.enter(CT.enter,r),transitionEnd:t?.enter}}},AD=C.exports.forwardRef(function(t,n){const{direction:r="right",style:i,unmountOnExit:o,in:a,className:s,transition:l,transitionEnd:d,delay:p,...g}=t,m=z6({direction:r}),y=Object.assign({position:"fixed"},m.position,i),b=o?a&&o:!0,S=a||o?"enter":"exit",E={transitionEnd:d,transition:l,direction:r,delay:p};return w(Yu,{custom:E,children:b&&re.createElement(ls.div,{...g,ref:n,initial:"exit",className:Ev("chakra-slide",s),animate:S,exit:"exit",custom:E,variants:Eie,style:y})})});AD.displayName="Slide";var Pie={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:i})=>({opacity:0,x:e,y:t,transition:n?.exit??Hs.exit(ih.exit,i),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Hs.enter(ih.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:i,delay:o})=>{const a={x:t,y:e};return{opacity:0,transition:n?.exit??Hs.exit(ih.exit,o),...i?{...a,transitionEnd:r?.exit}:{transitionEnd:{...a,...r?.exit}}}}},$6={initial:"initial",animate:"enter",exit:"exit",variants:Pie},Tie=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:i,reverse:o=!0,className:a,offsetX:s=0,offsetY:l=8,transition:d,transitionEnd:p,delay:g,...m}=t,y=r?i&&r:!0,b=i||r?"enter":"exit",S={offsetX:s,offsetY:l,reverse:o,transition:d,transitionEnd:p,delay:g};return w(Yu,{custom:S,children:y&&re.createElement(ls.div,{ref:n,className:Ev("chakra-offset-slide",a),custom:S,...$6,animate:b,...m})})});Tie.displayName="SlideFade";var Pv=(...e)=>e.filter(Boolean).join(" ");function Lie(){return!1}var K4=e=>{const{condition:t,message:n}=e;t&&Lie()&&console.warn(n)};function lS(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Aie,Y4]=Tn({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Iie,Y8]=Tn({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[Rie,a7e,Mie,Oie]=QO(),Zf=Le(function(t,n){const{getButtonProps:r}=Y8(),i=r(t,n),o=Y4(),a={display:"flex",alignItems:"center",width:"100%",outline:0,...o.button};return re.createElement(Ce.button,{...i,className:Pv("chakra-accordion__button",t.className),__css:a})});Zf.displayName="AccordionButton";function Nie(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:i,allowToggle:o,...a}=e;$ie(e),Fie(e);const s=Mie(),[l,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[p,g]=D4({value:r,defaultValue(){return i?n??[]:n??-1},onChange:t});return{index:p,setIndex:g,htmlProps:a,getAccordionItemProps:y=>{let b=!1;return y!==null&&(b=Array.isArray(p)?p.includes(y):p===y),{isOpen:b,onChange:E=>{if(y!==null)if(i&&Array.isArray(p)){const P=E?p.concat(y):p.filter(k=>k!==y);g(P)}else E?g(y):o&&g(-1)}}},focusedIndex:l,setFocusedIndex:d,descendants:s}}var[Die,Z8]=Tn({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function zie(e){const{isDisabled:t,isFocusable:n,id:r,...i}=e,{getAccordionItemProps:o,setFocusedIndex:a}=Z8(),s=C.exports.useRef(null),l=C.exports.useId(),d=r??l,p=`accordion-button-${d}`,g=`accordion-panel-${d}`;Bie(e);const{register:m,index:y,descendants:b}=Oie({disabled:t&&!n}),{isOpen:S,onChange:E}=o(y===-1?null:y);Hie({isOpen:S,isDisabled:t});const P=()=>{E?.(!0)},k=()=>{E?.(!1)},L=C.exports.useCallback(()=>{E?.(!S),a(y)},[y,a,S,E]),R=C.exports.useCallback(F=>{const j={ArrowDown:()=>{const Y=b.nextEnabled(y);Y?.node.focus()},ArrowUp:()=>{const Y=b.prevEnabled(y);Y?.node.focus()},Home:()=>{const Y=b.firstEnabled();Y?.node.focus()},End:()=>{const Y=b.lastEnabled();Y?.node.focus()}}[F.key];j&&(F.preventDefault(),j(F))},[b,y]),N=C.exports.useCallback(()=>{a(y)},[a,y]),z=C.exports.useCallback(function(q={},j=null){return{...q,type:"button",ref:Vn(m,s,j),id:p,disabled:!!t,"aria-expanded":!!S,"aria-controls":g,onClick:lS(q.onClick,L),onFocus:lS(q.onFocus,N),onKeyDown:lS(q.onKeyDown,R)}},[p,t,S,L,N,R,g,m]),$=C.exports.useCallback(function(q={},j=null){return{...q,ref:j,role:"region",id:g,"aria-labelledby":p,hidden:!S}},[p,S,g]);return{isOpen:S,isDisabled:t,isFocusable:n,onOpen:P,onClose:k,getButtonProps:z,getPanelProps:$,htmlProps:i}}function $ie(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;K4({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function Fie(e){K4({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function Bie(e){K4({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. - `})}function Hie(e){K4({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function Xf(e){const{isOpen:t,isDisabled:n}=Y8(),{reduceMotion:r}=Z8(),i=Pv("chakra-accordion__icon",e.className),o=Y4(),a={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...o.icon};return w(JO,{viewBox:"0 0 24 24","aria-hidden":!0,className:i,__css:a,...e,children:w("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}Xf.displayName="AccordionIcon";var Qf=Le(function(t,n){const{children:r,className:i}=t,{htmlProps:o,...a}=zie(t),l={...Y4().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>a,[a]);return re.createElement(Iie,{value:d},re.createElement(Ce.div,{ref:n,...o,className:Pv("chakra-accordion__item",i),__css:l},typeof r=="function"?r({isExpanded:!!a.isOpen,isDisabled:!!a.isDisabled}):r))});Qf.displayName="AccordionItem";var Jf=Le(function(t,n){const{reduceMotion:r}=Z8(),{getPanelProps:i,isOpen:o}=Y8(),a=i(t,n),s=Pv("chakra-accordion__panel",t.className),l=Y4();r||delete a.hidden;const d=re.createElement(Ce.div,{...a,__css:l.panel,className:s});return r?d:w(PD,{in:o,children:d})});Jf.displayName="AccordionPanel";var Z4=Le(function({children:t,reduceMotion:n,...r},i){const o=Ui("Accordion",r),a=_n(r),{htmlProps:s,descendants:l,...d}=Nie(a),p=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return re.createElement(Rie,{value:l},re.createElement(Die,{value:p},re.createElement(Aie,{value:o},re.createElement(Ce.div,{ref:i,...s,className:Pv("chakra-accordion",r.className),__css:o.root},t))))});Z4.displayName="Accordion";var _T={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},X4=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??_T.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??_T.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});X4.displayName="Icon";var Wie=(...e)=>e.filter(Boolean).join(" "),Vie=yv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),X0=Le((e,t)=>{const n=Eo("Spinner",e),{label:r="Loading...",thickness:i="2px",speed:o="0.45s",emptyColor:a="transparent",className:s,...l}=_n(e),d=Wie("chakra-spinner",s),p={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:i,borderBottomColor:a,borderLeftColor:a,animation:`${Vie} ${o} linear infinite`,...n};return re.createElement(Ce.div,{ref:t,__css:p,className:d,...l},r&&re.createElement(Ce.span,{srOnly:!0},r))});X0.displayName="Spinner";var Q4=(...e)=>e.filter(Boolean).join(" ");function Uie(e){return w(X4,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function Gie(e){return w(X4,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function kT(e){return w(X4,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[jie,qie]=Tn({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[Kie,X8]=Tn({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),ID={info:{icon:Gie,colorScheme:"blue"},warning:{icon:kT,colorScheme:"orange"},success:{icon:Uie,colorScheme:"green"},error:{icon:kT,colorScheme:"red"},loading:{icon:X0,colorScheme:"blue"}};function Yie(e){return ID[e].colorScheme}function Zie(e){return ID[e].icon}var RD=Le(function(t,n){const{status:r="info",addRole:i=!0,...o}=_n(t),a=t.colorScheme??Yie(r),s=Ui("Alert",{...t,colorScheme:a}),l={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...s.container};return re.createElement(jie,{value:{status:r}},re.createElement(Kie,{value:s},re.createElement(Ce.div,{role:i?"alert":void 0,ref:n,...o,className:Q4("chakra-alert",t.className),__css:l})))});RD.displayName="Alert";var MD=Le(function(t,n){const r=X8(),i={display:"inline",...r.description};return re.createElement(Ce.div,{ref:n,...t,className:Q4("chakra-alert__desc",t.className),__css:i})});MD.displayName="AlertDescription";function OD(e){const{status:t}=qie(),n=Zie(t),r=X8(),i=t==="loading"?r.spinner:r.icon;return re.createElement(Ce.span,{display:"inherit",...e,className:Q4("chakra-alert__icon",e.className),__css:i},e.children||w(n,{h:"100%",w:"100%"}))}OD.displayName="AlertIcon";var ND=Le(function(t,n){const r=X8();return re.createElement(Ce.div,{ref:n,...t,className:Q4("chakra-alert__title",t.className),__css:r.title})});ND.displayName="AlertTitle";function Xie(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function Qie(e){const{loading:t,src:n,srcSet:r,onLoad:i,onError:o,crossOrigin:a,sizes:s,ignoreFallback:l}=e,[d,p]=C.exports.useState("pending");C.exports.useEffect(()=>{p(n?"loading":"pending")},[n]);const g=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;y();const b=new Image;b.src=n,a&&(b.crossOrigin=a),r&&(b.srcset=r),s&&(b.sizes=s),t&&(b.loading=t),b.onload=S=>{y(),p("loaded"),i?.(S)},b.onerror=S=>{y(),p("failed"),o?.(S)},g.current=b},[n,a,r,s,i,o,t]),y=()=>{g.current&&(g.current.onload=null,g.current.onerror=null,g.current=null)};return Ml(()=>{if(!l)return d==="loading"&&m(),()=>{y()}},[d,m,l]),l?"loaded":d}var Jie=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",w3=Le(function(t,n){const{htmlWidth:r,htmlHeight:i,alt:o,...a}=t;return w("img",{width:r,height:i,ref:n,alt:o,...a})});w3.displayName="NativeImage";var J4=Le(function(t,n){const{fallbackSrc:r,fallback:i,src:o,srcSet:a,align:s,fit:l,loading:d,ignoreFallback:p,crossOrigin:g,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:y,...b}=t,S=r!==void 0||i!==void 0,E=d!=null||p||!S,P=Qie({...t,ignoreFallback:E}),k=Jie(P,m),L={ref:n,objectFit:l,objectPosition:s,...E?b:Xie(b,["onError","onLoad"])};return k?i||re.createElement(Ce.img,{as:w3,className:"chakra-image__placeholder",src:r,...L}):re.createElement(Ce.img,{as:w3,src:o,srcSet:a,crossOrigin:g,loading:d,referrerPolicy:y,className:"chakra-image",...L})});J4.displayName="Image";Le((e,t)=>re.createElement(Ce.img,{ref:t,as:w3,className:"chakra-image",...e}));var eoe=Object.create,DD=Object.defineProperty,toe=Object.getOwnPropertyDescriptor,zD=Object.getOwnPropertyNames,noe=Object.getPrototypeOf,roe=Object.prototype.hasOwnProperty,$D=(e,t)=>function(){return t||(0,e[zD(e)[0]])((t={exports:{}}).exports,t),t.exports},ioe=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of zD(t))!roe.call(e,i)&&i!==n&&DD(e,i,{get:()=>t[i],enumerable:!(r=toe(t,i))||r.enumerable});return e},ooe=(e,t,n)=>(n=e!=null?eoe(noe(e)):{},ioe(t||!e||!e.__esModule?DD(n,"default",{value:e,enumerable:!0}):n,e)),aoe=$D({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),a=Symbol.for("react.provider"),s=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),p=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),m=Symbol.iterator;function y(W){return W===null||typeof W!="object"?null:(W=m&&W[m]||W["@@iterator"],typeof W=="function"?W:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},S=Object.assign,E={};function P(W,se,de){this.props=W,this.context=se,this.refs=E,this.updater=de||b}P.prototype.isReactComponent={},P.prototype.setState=function(W,se){if(typeof W!="object"&&typeof W!="function"&&W!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,W,se,"setState")},P.prototype.forceUpdate=function(W){this.updater.enqueueForceUpdate(this,W,"forceUpdate")};function k(){}k.prototype=P.prototype;function L(W,se,de){this.props=W,this.context=se,this.refs=E,this.updater=de||b}var R=L.prototype=new k;R.constructor=L,S(R,P.prototype),R.isPureReactComponent=!0;var N=Array.isArray,z=Object.prototype.hasOwnProperty,$={current:null},F={key:!0,ref:!0,__self:!0,__source:!0};function q(W,se,de){var xe,ze={},Me=null,Ue=null;if(se!=null)for(xe in se.ref!==void 0&&(Ue=se.ref),se.key!==void 0&&(Me=""+se.key),se)z.call(se,xe)&&!F.hasOwnProperty(xe)&&(ze[xe]=se[xe]);var Ee=arguments.length-2;if(Ee===1)ze.children=de;else if(1(0,ET.isValidElement)(t))}/** - * @license React - * react.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - *//** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var tb=(...e)=>e.filter(Boolean).join(" "),PT=e=>e?"":void 0,[loe,uoe]=Tn({strict:!1,name:"ButtonGroupContext"});function F6(e){const{children:t,className:n,...r}=e,i=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,o=tb("chakra-button__icon",n);return re.createElement(Ce.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:o},i)}F6.displayName="ButtonIcon";function B6(e){const{label:t,placement:n,spacing:r="0.5rem",children:i=w(X0,{color:"currentColor",width:"1em",height:"1em"}),className:o,__css:a,...s}=e,l=tb("chakra-button__spinner",o),d=n==="start"?"marginEnd":"marginStart",p=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...a}),[a,t,d,r]);return re.createElement(Ce.div,{className:l,...s,__css:p},i)}B6.displayName="ButtonSpinner";function coe(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(o=>{!o||n(o.tagName==="BUTTON")},[]),type:t?"button":void 0}}var ts=Le((e,t)=>{const n=uoe(),r=Eo("Button",{...n,...e}),{isDisabled:i=n?.isDisabled,isLoading:o,isActive:a,children:s,leftIcon:l,rightIcon:d,loadingText:p,iconSpacing:g="0.5rem",type:m,spinner:y,spinnerPlacement:b="start",className:S,as:E,...P}=_n(e),k=C.exports.useMemo(()=>{const z={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:z}}},[r,n]),{ref:L,type:R}=coe(E),N={rightIcon:d,leftIcon:l,iconSpacing:g,children:s};return re.createElement(Ce.button,{disabled:i||o,ref:_J(t,L),as:E,type:m??R,"data-active":PT(a),"data-loading":PT(o),__css:k,className:tb("chakra-button",S),...P},o&&b==="start"&&w(B6,{className:"chakra-button__spinner--start",label:p,placement:"start",spacing:g,children:y}),o?p||re.createElement(Ce.span,{opacity:0},w(TT,{...N})):w(TT,{...N}),o&&b==="end"&&w(B6,{className:"chakra-button__spinner--end",label:p,placement:"end",spacing:g,children:y}))});ts.displayName="Button";function TT(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:i}=e;return ne(Un,{children:[t&&w(F6,{marginEnd:i,children:t}),r,n&&w(F6,{marginStart:i,children:n})]})}var FD=Le(function(t,n){const{size:r,colorScheme:i,variant:o,className:a,spacing:s="0.5rem",isAttached:l,isDisabled:d,...p}=t,g=tb("chakra-button__group",a),m=C.exports.useMemo(()=>({size:r,colorScheme:i,variant:o,isDisabled:d}),[r,i,o,d]);let y={display:"inline-flex"};return l?y={...y,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:y={...y,"& > *:not(style) ~ *:not(style)":{marginStart:s}},re.createElement(loe,{value:m},re.createElement(Ce.div,{ref:n,role:"group",__css:y,className:g,"data-attached":l?"":void 0,...p}))});FD.displayName="ButtonGroup";var no=Le((e,t)=>{const{icon:n,children:r,isRound:i,"aria-label":o,...a}=e,s=n||r,l=C.exports.isValidElement(s)?C.exports.cloneElement(s,{"aria-hidden":!0,focusable:!1}):null;return w(ts,{padding:"0",borderRadius:i?"full":void 0,ref:t,"aria-label":o,...a,children:l})});no.displayName="IconButton";var LT={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},BD=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??LT.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??LT.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});BD.displayName="Icon";var Q0=(...e)=>e.filter(Boolean).join(" "),oy=e=>e?"":void 0,uS=e=>e?!0:void 0;function AT(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[doe,HD]=Tn({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[foe,J0]=Tn({strict:!1,name:"FormControlContext"});function hoe(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:i,isReadOnly:o,...a}=e,s=C.exports.useId(),l=t||`field-${s}`,d=`${l}-label`,p=`${l}-feedback`,g=`${l}-helptext`,[m,y]=C.exports.useState(!1),[b,S]=C.exports.useState(!1),[E,P]=C.exports.useState(!1),k=C.exports.useCallback(($={},F=null)=>({id:g,...$,ref:Vn(F,q=>{!q||S(!0)})}),[g]),L=C.exports.useCallback(($={},F=null)=>({...$,ref:F,"data-focus":oy(E),"data-disabled":oy(i),"data-invalid":oy(r),"data-readonly":oy(o),id:$.id??d,htmlFor:$.htmlFor??l}),[l,i,E,r,o,d]),R=C.exports.useCallback(($={},F=null)=>({id:p,...$,ref:Vn(F,q=>{!q||y(!0)}),"aria-live":"polite"}),[p]),N=C.exports.useCallback(($={},F=null)=>({...$,...a,ref:F,role:"group"}),[a]),z=C.exports.useCallback(($={},F=null)=>({...$,ref:F,role:"presentation","aria-hidden":!0,children:$.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!o,isDisabled:!!i,isFocused:!!E,onFocus:()=>P(!0),onBlur:()=>P(!1),hasFeedbackText:m,setHasFeedbackText:y,hasHelpText:b,setHasHelpText:S,id:l,labelId:d,feedbackId:p,helpTextId:g,htmlProps:a,getHelpTextProps:k,getErrorMessageProps:R,getRootProps:N,getLabelProps:L,getRequiredIndicatorProps:z}}var Td=Le(function(t,n){const r=Ui("Form",t),i=_n(t),{getRootProps:o,htmlProps:a,...s}=hoe(i),l=Q0("chakra-form-control",t.className);return re.createElement(foe,{value:s},re.createElement(doe,{value:r},re.createElement(Ce.div,{...o({},n),className:l,__css:r.container})))});Td.displayName="FormControl";var poe=Le(function(t,n){const r=J0(),i=HD(),o=Q0("chakra-form__helper-text",t.className);return re.createElement(Ce.div,{...r?.getHelpTextProps(t,n),__css:i.helperText,className:o})});poe.displayName="FormHelperText";function Q8(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:i,...o}=J8(e);return{...o,disabled:t,readOnly:r,required:i,"aria-invalid":uS(n),"aria-required":uS(i),"aria-readonly":uS(r)}}function J8(e){const t=J0(),{id:n,disabled:r,readOnly:i,required:o,isRequired:a,isInvalid:s,isReadOnly:l,isDisabled:d,onFocus:p,onBlur:g,...m}=e,y=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&y.push(t.feedbackId),t?.hasHelpText&&y.push(t.helpTextId),{...m,"aria-describedby":y.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:i??l??t?.isReadOnly,isRequired:o??a??t?.isRequired,isInvalid:s??t?.isInvalid,onFocus:AT(t?.onFocus,p),onBlur:AT(t?.onBlur,g)}}var[goe,moe]=Tn({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),voe=Le((e,t)=>{const n=Ui("FormError",e),r=_n(e),i=J0();return i?.isInvalid?re.createElement(goe,{value:n},re.createElement(Ce.div,{...i?.getErrorMessageProps(r,t),className:Q0("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});voe.displayName="FormErrorMessage";var yoe=Le((e,t)=>{const n=moe(),r=J0();if(!r?.isInvalid)return null;const i=Q0("chakra-form__error-icon",e.className);return w(BD,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:i,children:w("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});yoe.displayName="FormErrorIcon";var Sh=Le(function(t,n){const r=Eo("FormLabel",t),i=_n(t),{className:o,children:a,requiredIndicator:s=w(WD,{}),optionalIndicator:l=null,...d}=i,p=J0(),g=p?.getLabelProps(d,n)??{ref:n,...d};return re.createElement(Ce.label,{...g,className:Q0("chakra-form__label",i.className),__css:{display:"block",textAlign:"start",...r}},a,p?.isRequired?s:l)});Sh.displayName="FormLabel";var WD=Le(function(t,n){const r=J0(),i=HD();if(!r?.isRequired)return null;const o=Q0("chakra-form__required-indicator",t.className);return re.createElement(Ce.span,{...r?.getRequiredIndicatorProps(t,n),__css:i.requiredIndicator,className:o})});WD.displayName="RequiredIndicator";function I0(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var e_={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},boe=Ce("span",{baseStyle:e_});boe.displayName="VisuallyHidden";var xoe=Ce("input",{baseStyle:e_});xoe.displayName="VisuallyHiddenInput";var IT=!1,nb=null,R0=!1,H6=new Set,Soe=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function woe(e){return!(e.metaKey||!Soe&&e.altKey||e.ctrlKey)}function t_(e,t){H6.forEach(n=>n(e,t))}function RT(e){R0=!0,woe(e)&&(nb="keyboard",t_("keyboard",e))}function xp(e){nb="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(R0=!0,t_("pointer",e))}function Coe(e){e.target===window||e.target===document||(R0||(nb="keyboard",t_("keyboard",e)),R0=!1)}function _oe(){R0=!1}function MT(){return nb!=="pointer"}function koe(){if(typeof window>"u"||IT)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){R0=!0,e.apply(this,n)},document.addEventListener("keydown",RT,!0),document.addEventListener("keyup",RT,!0),window.addEventListener("focus",Coe,!0),window.addEventListener("blur",_oe,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",xp,!0),document.addEventListener("pointermove",xp,!0),document.addEventListener("pointerup",xp,!0)):(document.addEventListener("mousedown",xp,!0),document.addEventListener("mousemove",xp,!0),document.addEventListener("mouseup",xp,!0)),IT=!0}function Eoe(e){koe(),e(MT());const t=()=>e(MT());return H6.add(t),()=>{H6.delete(t)}}var[s7e,Poe]=Tn({name:"CheckboxGroupContext",strict:!1}),Toe=(...e)=>e.filter(Boolean).join(" "),vo=e=>e?"":void 0;function Ua(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Loe(...e){return function(n){e.forEach(r=>{r?.(n)})}}function Aoe(e){const t=ls;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var VD=Aoe(Ce.svg);function Ioe(e){return w(VD,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:w("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function Roe(e){return w(VD,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:w("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function Moe({open:e,children:t}){return w(Yu,{initial:!1,children:e&&re.createElement(ls.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function Ooe(e){const{isIndeterminate:t,isChecked:n,...r}=e;return w(Moe,{open:n||t,children:w(t?Roe:Ioe,{...r})})}function Noe(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function UD(e={}){const t=J8(e),{isDisabled:n,isReadOnly:r,isRequired:i,isInvalid:o,id:a,onBlur:s,onFocus:l,"aria-describedby":d}=t,{defaultChecked:p,isChecked:g,isFocusable:m,onChange:y,isIndeterminate:b,name:S,value:E,tabIndex:P=void 0,"aria-label":k,"aria-labelledby":L,"aria-invalid":R,...N}=e,z=Noe(N,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),$=Ar(y),F=Ar(s),q=Ar(l),[j,Y]=C.exports.useState(!1),[ve,ge]=C.exports.useState(!1),[Se,_e]=C.exports.useState(!1),[we,J]=C.exports.useState(!1);C.exports.useEffect(()=>Eoe(Y),[]);const G=C.exports.useRef(null),[te,Q]=C.exports.useState(!0),[W,se]=C.exports.useState(!!p),de=g!==void 0,xe=de?g:W,ze=C.exports.useCallback(Oe=>{if(r||n){Oe.preventDefault();return}de||se(xe?Oe.target.checked:b?!0:Oe.target.checked),$?.(Oe)},[r,n,xe,de,b,$]);Ml(()=>{G.current&&(G.current.indeterminate=Boolean(b))},[b]),I0(()=>{n&&ge(!1)},[n,ge]),Ml(()=>{const Oe=G.current;!Oe?.form||(Oe.form.onreset=()=>{se(!!p)})},[]);const Me=n&&!m,Ue=C.exports.useCallback(Oe=>{Oe.key===" "&&J(!0)},[J]),Ee=C.exports.useCallback(Oe=>{Oe.key===" "&&J(!1)},[J]);Ml(()=>{if(!G.current)return;G.current.checked!==xe&&se(G.current.checked)},[G.current]);const Ve=C.exports.useCallback((Oe={},nt=null)=>{const mt=st=>{ve&&st.preventDefault(),J(!0)};return{...Oe,ref:nt,"data-active":vo(we),"data-hover":vo(Se),"data-checked":vo(xe),"data-focus":vo(ve),"data-focus-visible":vo(ve&&j),"data-indeterminate":vo(b),"data-disabled":vo(n),"data-invalid":vo(o),"data-readonly":vo(r),"aria-hidden":!0,onMouseDown:Ua(Oe.onMouseDown,mt),onMouseUp:Ua(Oe.onMouseUp,()=>J(!1)),onMouseEnter:Ua(Oe.onMouseEnter,()=>_e(!0)),onMouseLeave:Ua(Oe.onMouseLeave,()=>_e(!1))}},[we,xe,n,ve,j,Se,b,o,r]),ot=C.exports.useCallback((Oe={},nt=null)=>({...z,...Oe,ref:Vn(nt,mt=>{!mt||Q(mt.tagName==="LABEL")}),onClick:Ua(Oe.onClick,()=>{var mt;te||((mt=G.current)==null||mt.click(),requestAnimationFrame(()=>{var st;(st=G.current)==null||st.focus()}))}),"data-disabled":vo(n),"data-checked":vo(xe),"data-invalid":vo(o)}),[z,n,xe,o,te]),pt=C.exports.useCallback((Oe={},nt=null)=>({...Oe,ref:Vn(G,nt),type:"checkbox",name:S,value:E,id:a,tabIndex:P,onChange:Ua(Oe.onChange,ze),onBlur:Ua(Oe.onBlur,F,()=>ge(!1)),onFocus:Ua(Oe.onFocus,q,()=>ge(!0)),onKeyDown:Ua(Oe.onKeyDown,Ue),onKeyUp:Ua(Oe.onKeyUp,Ee),required:i,checked:xe,disabled:Me,readOnly:r,"aria-label":k,"aria-labelledby":L,"aria-invalid":R?Boolean(R):o,"aria-describedby":d,"aria-disabled":n,style:e_}),[S,E,a,ze,F,q,Ue,Ee,i,xe,Me,r,k,L,R,o,d,n,P]),Wt=C.exports.useCallback((Oe={},nt=null)=>({...Oe,ref:nt,onMouseDown:Ua(Oe.onMouseDown,OT),onTouchStart:Ua(Oe.onTouchStart,OT),"data-disabled":vo(n),"data-checked":vo(xe),"data-invalid":vo(o)}),[xe,n,o]);return{state:{isInvalid:o,isFocused:ve,isChecked:xe,isActive:we,isHovered:Se,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:i},getRootProps:ot,getCheckboxProps:Ve,getInputProps:pt,getLabelProps:Wt,htmlProps:z}}function OT(e){e.preventDefault(),e.stopPropagation()}var Doe=Ce("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),zoe=Ce("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),GD=Le(function(t,n){const r=Poe(),i={...r,...t},o=Ui("Checkbox",i),a=_n(t),{spacing:s="0.5rem",className:l,children:d,iconColor:p,iconSize:g,icon:m=w(Ooe,{}),isChecked:y,isDisabled:b=r?.isDisabled,onChange:S,inputProps:E,...P}=a;let k=y;r?.value&&a.value&&(k=r.value.includes(a.value));let L=S;r?.onChange&&a.value&&(L=Loe(r.onChange,S));const{state:R,getInputProps:N,getCheckboxProps:z,getLabelProps:$,getRootProps:F}=UD({...P,isDisabled:b,isChecked:k,onChange:L}),q=C.exports.useMemo(()=>({opacity:R.isChecked||R.isIndeterminate?1:0,transform:R.isChecked||R.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:g,color:p,...o.icon}),[p,g,R.isChecked,R.isIndeterminate,o.icon]),j=C.exports.cloneElement(m,{__css:q,isIndeterminate:R.isIndeterminate,isChecked:R.isChecked});return ne(zoe,{__css:o.container,className:Toe("chakra-checkbox",l),...F(),children:[w("input",{className:"chakra-checkbox__input",...N(E,n)}),w(Doe,{__css:o.control,className:"chakra-checkbox__control",...z(),children:j}),d&&re.createElement(Ce.span,{className:"chakra-checkbox__label",...$(),__css:{marginStart:s,...o.label}},d)]})});GD.displayName="Checkbox";var NT={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},jD=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??NT.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??NT.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});jD.displayName="Icon";function $oe(e){return w(jD,{focusable:"false","aria-hidden":!0,...e,children:w("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var rb=Le(function(t,n){const r=Eo("CloseButton",t),{children:i,isDisabled:o,__css:a,...s}=_n(t),l={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return re.createElement(Ce.button,{type:"button","aria-label":"Close",ref:n,disabled:o,__css:{...l,...r,...a},...s},i||w($oe,{width:"1em",height:"1em"}))});rb.displayName="CloseButton";function Foe(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function n_(e,t){let n=Foe(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function W6(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function C3(e,t,n){return(e-t)*100/(n-t)}function qD(e,t,n){return(n-t)*e+t}function V6(e,t,n){const r=Math.round((e-t)/n)*n+t,i=W6(n);return n_(r,i)}function c0(e,t,n){return e==null?e:(nr==null?"":cS(r,o,n)??""),m=typeof i<"u",y=m?i:p,b=KD(jc(y),o),S=n??b,E=C.exports.useCallback(j=>{j!==y&&(m||g(j.toString()),d?.(j.toString(),jc(j)))},[d,m,y]),P=C.exports.useCallback(j=>{let Y=j;return l&&(Y=c0(Y,a,s)),n_(Y,S)},[S,l,s,a]),k=C.exports.useCallback((j=o)=>{let Y;y===""?Y=jc(j):Y=jc(y)+j,Y=P(Y),E(Y)},[P,o,E,y]),L=C.exports.useCallback((j=o)=>{let Y;y===""?Y=jc(-j):Y=jc(y)-j,Y=P(Y),E(Y)},[P,o,E,y]),R=C.exports.useCallback(()=>{let j;r==null?j="":j=cS(r,o,n)??a,E(j)},[r,n,o,E,a]),N=C.exports.useCallback(j=>{const Y=cS(j,o,S)??a;E(Y)},[S,o,E,a]),z=jc(y);return{isOutOfRange:z>s||zw(M4,{styles:YD}),Woe=()=>w(M4,{styles:` - html { - line-height: 1.5; - -webkit-text-size-adjust: 100%; - font-family: system-ui, sans-serif; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; - -moz-osx-font-smoothing: grayscale; - touch-action: manipulation; - } - - body { - position: relative; - min-height: 100%; - font-feature-settings: 'kern'; - } - - *, - *::before, - *::after { - border-width: 0; - border-style: solid; - box-sizing: border-box; - } - - main { - display: block; - } - - hr { - border-top-width: 1px; - box-sizing: content-box; - height: 0; - overflow: visible; - } - - pre, - code, - kbd, - samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; - font-size: 1em; - } - - a { - background-color: transparent; - color: inherit; - text-decoration: inherit; - } - - abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - - b, - strong { - font-weight: bold; - } - - small { - font-size: 80%; - } - - sub, - sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - } - - sub { - bottom: -0.25em; - } - - sup { - top: -0.5em; - } - - img { - border-style: none; - } - - button, - input, - optgroup, - select, - textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; - } - - button, - input { - overflow: visible; - } - - button, - select { - text-transform: none; - } - - button::-moz-focus-inner, - [type="button"]::-moz-focus-inner, - [type="reset"]::-moz-focus-inner, - [type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; - } - - fieldset { - padding: 0.35em 0.75em 0.625em; - } - - legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - } - - progress { - vertical-align: baseline; - } - - textarea { - overflow: auto; - } - - [type="checkbox"], - [type="radio"] { - box-sizing: border-box; - padding: 0; - } - - [type="number"]::-webkit-inner-spin-button, - [type="number"]::-webkit-outer-spin-button { - -webkit-appearance: none !important; - } - - input[type="number"] { - -moz-appearance: textfield; - } - - [type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; - } - - [type="search"]::-webkit-search-decoration { - -webkit-appearance: none !important; - } - - ::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; - } - - details { - display: block; - } - - summary { - display: list-item; - } - - template { - display: none; - } - - [hidden] { - display: none !important; - } - - body, - blockquote, - dl, - dd, - h1, - h2, - h3, - h4, - h5, - h6, - hr, - figure, - p, - pre { - margin: 0; - } - - button { - background: transparent; - padding: 0; - } - - fieldset { - margin: 0; - padding: 0; - } - - ol, - ul { - margin: 0; - padding: 0; - } - - textarea { - resize: vertical; - } - - button, - [role="button"] { - cursor: pointer; - } - - button::-moz-focus-inner { - border: 0 !important; - } - - table { - border-collapse: collapse; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - font-size: inherit; - font-weight: inherit; - } - - button, - input, - optgroup, - select, - textarea { - padding: 0; - line-height: inherit; - color: inherit; - } - - img, - svg, - video, - canvas, - audio, - iframe, - embed, - object { - display: block; - } - - img, - video { - max-width: 100%; - height: auto; - } - - [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { - outline: none; - box-shadow: none; - } - - select::-ms-expand { - display: none; - } - - ${YD} - `});function U6(e,t,n,r){const i=Ar(n);return C.exports.useEffect(()=>{const o=typeof e=="function"?e():e??document;if(!(!n||!o))return o.addEventListener(t,i,r),()=>{o.removeEventListener(t,i,r)}},[t,e,r,i,n]),()=>{const o=typeof e=="function"?e():e??document;o?.removeEventListener(t,i,r)}}var Voe=xv?C.exports.useLayoutEffect:C.exports.useEffect;function G6(e,t=[]){const n=C.exports.useRef(e);return Voe(()=>{n.current=e}),C.exports.useCallback((...r)=>{var i;return(i=n.current)==null?void 0:i.call(n,...r)},t)}function r_(e,t,n,r){const i=G6(t);return C.exports.useEffect(()=>{const o=s3(n)??document;if(!!t)return o.addEventListener(e,i,r),()=>{o.removeEventListener(e,i,r)}},[e,n,r,i,t]),()=>{(s3(n)??document).removeEventListener(e,i,r)}}function Uoe(e){const{isOpen:t,ref:n}=e,[r,i]=C.exports.useState(t),[o,a]=C.exports.useState(!1);return C.exports.useEffect(()=>{o||(i(t),a(!0))},[t,o,r]),r_("animationend",()=>{i(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var l;const d=vQ(n.current),p=new d.CustomEvent("animationend",{bubbles:!0});(l=n.current)==null||l.dispatchEvent(p)}}}function Goe(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function joe(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function _3(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=G6(n),a=G6(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),[d,p]=Goe(r,s),g=joe(i,"disclosure"),m=C.exports.useCallback(()=>{d||l(!1),a?.()},[d,a]),y=C.exports.useCallback(()=>{d||l(!0),o?.()},[d,o]),b=C.exports.useCallback(()=>{(p?m:y)()},[p,y,m]);return{isOpen:!!p,onOpen:y,onClose:m,onToggle:b,isControlled:d,getButtonProps:(S={})=>({...S,"aria-expanded":p,"aria-controls":g,onClick:AQ(S.onClick,b)}),getDisclosureProps:(S={})=>({...S,hidden:!p,id:g})}}var ZD=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function qoe(e){const t=e.current;if(!t)return!1;const n=xQ(t);return!n||C8(t,n)?!1:!!kQ(n)}function Koe(e,t){const{shouldFocus:n,visible:r,focusRef:i}=t,o=n&&!r;ZD(()=>{if(!o||qoe(e))return;const a=i?.current||e.current;a&&l3(a,{nextTick:!0})},[o,e,i])}function Yoe(e,t,n,r){return r_(YQ(t),VQ(n,t==="pointerdown"),e,r)}function Zoe(e){const{ref:t,elements:n,enabled:r}=e,i=XQ("Safari");Yoe(()=>bv(t.current),"pointerdown",a=>{if(!i||!r)return;const s=a.target,d=(n??[t]).some(p=>{const g=HO(p)?p.current:p;return C8(g,s)});!jO(s)&&d&&(a.preventDefault(),l3(s))})}var Xoe={preventScroll:!0,shouldFocus:!1};function Qoe(e,t=Xoe){const{focusRef:n,preventScroll:r,shouldFocus:i,visible:o}=t,a=HO(e)?e.current:e,s=i&&o,l=C.exports.useCallback(()=>{if(!(!a||!s)&&!C8(a,document.activeElement))if(n?.current)l3(n.current,{preventScroll:r,nextTick:!0});else{const d=LQ(a);d.length>0&&l3(d[0],{preventScroll:r,nextTick:!0})}},[s,r,a,n]);ZD(()=>{l()},[l]),r_("transitionend",l,a)}var DT={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},ib=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??DT.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??DT.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});ib.displayName="Icon";function e1(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:i={}}=e,o=C.exports.Children.toArray(e.path),a=Le((s,l)=>w(ib,{ref:l,viewBox:t,...i,...s,children:o.length?o:w("path",{fill:"currentColor",d:n})}));return a.displayName=r,a}function i_(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var o_=Le(function(t,n){const{htmlSize:r,...i}=t,o=Ui("Input",i),a=_n(i),s=Q8(a),l=$n("chakra-input",t.className);return re.createElement(Ce.input,{size:r,...s,__css:o.field,ref:n,className:l})});o_.displayName="Input";o_.id="Input";var[Joe,XD]=Tn({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),eae=Le(function(t,n){const r=Ui("Input",t),{children:i,className:o,...a}=_n(t),s=$n("chakra-input__group",o),l={},d=eb(i),p=r.field;d.forEach(m=>{!r||(p&&m.type.id==="InputLeftElement"&&(l.paddingStart=p.height??p.h),p&&m.type.id==="InputRightElement"&&(l.paddingEnd=p.height??p.h),m.type.id==="InputRightAddon"&&(l.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(l.borderStartRadius=0))});const g=d.map(m=>{var y,b;const S=i_({size:((y=m.props)==null?void 0:y.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,S):C.exports.cloneElement(m,Object.assign(S,l,m.props))});return re.createElement(Ce.div,{className:s,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...a},w(Joe,{value:r,children:g}))});eae.displayName="InputGroup";var tae={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},nae=Ce("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),a_=Le(function(t,n){const{placement:r="left",...i}=t,o=tae[r]??{},a=XD();return w(nae,{ref:n,...i,__css:{...a.addon,...o}})});a_.displayName="InputAddon";var QD=Le(function(t,n){return w(a_,{ref:n,placement:"left",...t,className:$n("chakra-input__left-addon",t.className)})});QD.displayName="InputLeftAddon";QD.id="InputLeftAddon";var JD=Le(function(t,n){return w(a_,{ref:n,placement:"right",...t,className:$n("chakra-input__right-addon",t.className)})});JD.displayName="InputRightAddon";JD.id="InputRightAddon";var rae=Ce("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),ob=Le(function(t,n){const{placement:r="left",...i}=t,o=XD(),a=o.field,l={[r==="left"?"insetStart":"insetEnd"]:"0",width:a?.height??a?.h,height:a?.height??a?.h,fontSize:a?.fontSize,...o.element};return w(rae,{ref:n,__css:l,...i})});ob.id="InputElement";ob.displayName="InputElement";var ez=Le(function(t,n){const{className:r,...i}=t,o=$n("chakra-input__left-element",r);return w(ob,{ref:n,placement:"left",className:o,...i})});ez.id="InputLeftElement";ez.displayName="InputLeftElement";var tz=Le(function(t,n){const{className:r,...i}=t,o=$n("chakra-input__right-element",r);return w(ob,{ref:n,placement:"right",className:o,...i})});tz.id="InputRightElement";tz.displayName="InputRightElement";function iae(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function bd(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):iae(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var zT={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},nz=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??zT.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??zT.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});nz.displayName="Icon";var oae=Le(function(e,t){const{ratio:n=4/3,children:r,className:i,...o}=e,a=C.exports.Children.only(r),s=$n("chakra-aspect-ratio",i);return re.createElement(Ce.div,{ref:t,position:"relative",className:s,_before:{height:0,content:'""',display:"block",paddingBottom:bd(n,l=>`${1/l*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...o},a)});oae.displayName="AspectRatio";var aae=Le(function(t,n){const r=Eo("Badge",t),{className:i,...o}=_n(t);return re.createElement(Ce.span,{ref:n,className:$n("chakra-badge",t.className),...o,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});aae.displayName="Badge";var ql=Ce("div");ql.displayName="Box";var rz=Le(function(t,n){const{size:r,centerContent:i=!0,...o}=t;return w(ql,{ref:n,boxSize:r,__css:{...i?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...o})});rz.displayName="Square";var sae=Le(function(t,n){const{size:r,...i}=t;return w(rz,{size:r,ref:n,borderRadius:"9999px",...i})});sae.displayName="Circle";var iz=Ce("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});iz.displayName="Center";var lae={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};Le(function(t,n){const{axis:r="both",...i}=t;return re.createElement(Ce.div,{ref:n,__css:lae[r],...i,position:"absolute"})});var uae=Le(function(t,n){const r=Eo("Code",t),{className:i,...o}=_n(t);return re.createElement(Ce.code,{ref:n,className:$n("chakra-code",t.className),...o,__css:{display:"inline-block",...r}})});uae.displayName="Code";var cae=Le(function(t,n){const{className:r,centerContent:i,...o}=_n(t),a=Eo("Container",t);return re.createElement(Ce.div,{ref:n,className:$n("chakra-container",r),...o,__css:{...a,...i&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});cae.displayName="Container";var dae=Le(function(t,n){const{borderLeftWidth:r,borderBottomWidth:i,borderTopWidth:o,borderRightWidth:a,borderWidth:s,borderStyle:l,borderColor:d,...p}=Eo("Divider",t),{className:g,orientation:m="horizontal",__css:y,...b}=_n(t),S={vertical:{borderLeftWidth:r||a||s||"1px",height:"100%"},horizontal:{borderBottomWidth:i||o||s||"1px",width:"100%"}};return re.createElement(Ce.hr,{ref:n,"aria-orientation":m,...b,__css:{...p,border:"0",borderColor:d,borderStyle:l,...S[m],...y},className:$n("chakra-divider",g)})});dae.displayName="Divider";var Wn=Le(function(t,n){const{direction:r,align:i,justify:o,wrap:a,basis:s,grow:l,shrink:d,...p}=t,g={display:"flex",flexDirection:r,alignItems:i,justifyContent:o,flexWrap:a,flexBasis:s,flexGrow:l,flexShrink:d};return re.createElement(Ce.div,{ref:n,__css:g,...p})});Wn.displayName="Flex";var oz=Le(function(t,n){const{templateAreas:r,gap:i,rowGap:o,columnGap:a,column:s,row:l,autoFlow:d,autoRows:p,templateRows:g,autoColumns:m,templateColumns:y,...b}=t,S={display:"grid",gridTemplateAreas:r,gridGap:i,gridRowGap:o,gridColumnGap:a,gridAutoColumns:m,gridColumn:s,gridRow:l,gridAutoFlow:d,gridAutoRows:p,gridTemplateRows:g,gridTemplateColumns:y};return re.createElement(Ce.div,{ref:n,__css:S,...b})});oz.displayName="Grid";function $T(e){return bd(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var fae=Le(function(t,n){const{area:r,colSpan:i,colStart:o,colEnd:a,rowEnd:s,rowSpan:l,rowStart:d,...p}=t,g=i_({gridArea:r,gridColumn:$T(i),gridRow:$T(l),gridColumnStart:o,gridColumnEnd:a,gridRowStart:d,gridRowEnd:s});return re.createElement(Ce.div,{ref:n,__css:g,...p})});fae.displayName="GridItem";var oh=Le(function(t,n){const r=Eo("Heading",t),{className:i,...o}=_n(t);return re.createElement(Ce.h2,{ref:n,className:$n("chakra-heading",t.className),...o,__css:r})});oh.displayName="Heading";Le(function(t,n){const r=Eo("Mark",t),i=_n(t);return w(ql,{ref:n,...i,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var hae=Le(function(t,n){const r=Eo("Kbd",t),{className:i,...o}=_n(t);return re.createElement(Ce.kbd,{ref:n,className:$n("chakra-kbd",i),...o,__css:{fontFamily:"mono",...r}})});hae.displayName="Kbd";var d0=Le(function(t,n){const r=Eo("Link",t),{className:i,isExternal:o,...a}=_n(t);return re.createElement(Ce.a,{target:o?"_blank":void 0,rel:o?"noopener":void 0,ref:n,className:$n("chakra-link",i),...a,__css:r})});d0.displayName="Link";Le(function(t,n){const{isExternal:r,target:i,rel:o,className:a,...s}=t;return re.createElement(Ce.a,{...s,ref:n,className:$n("chakra-linkbox__overlay",a),rel:r?"noopener noreferrer":o,target:r?"_blank":i,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});Le(function(t,n){const{className:r,...i}=t;return re.createElement(Ce.div,{ref:n,position:"relative",...i,className:$n("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[pae,az]=Tn({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),s_=Le(function(t,n){const r=Ui("List",t),{children:i,styleType:o="none",stylePosition:a,spacing:s,...l}=_n(t),d=eb(i),g=s?{["& > *:not(style) ~ *:not(style)"]:{mt:s}}:{};return re.createElement(pae,{value:r},re.createElement(Ce.ul,{ref:n,listStyleType:o,listStylePosition:a,role:"list",__css:{...r.container,...g},...l},d))});s_.displayName="List";var gae=Le((e,t)=>{const{as:n,...r}=e;return w(s_,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});gae.displayName="OrderedList";var mae=Le(function(t,n){const{as:r,...i}=t;return w(s_,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...i})});mae.displayName="UnorderedList";var vae=Le(function(t,n){const r=az();return re.createElement(Ce.li,{ref:n,...t,__css:r.item})});vae.displayName="ListItem";var yae=Le(function(t,n){const r=az();return w(nz,{ref:n,role:"presentation",...t,__css:r.icon})});yae.displayName="ListIcon";var bae=Le(function(t,n){const{columns:r,spacingX:i,spacingY:o,spacing:a,minChildWidth:s,...l}=t,d=q0(),p=s?Sae(s,d):wae(r);return w(oz,{ref:n,gap:a,columnGap:i,rowGap:o,templateColumns:p,...l})});bae.displayName="SimpleGrid";function xae(e){return typeof e=="number"?`${e}px`:e}function Sae(e,t){return bd(e,n=>{const r=hJ("sizes",n,xae(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function wae(e){return bd(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var sz=Ce("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});sz.displayName="Spacer";var j6="& > *:not(style) ~ *:not(style)";function Cae(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[j6]:bd(n,i=>r[i])}}function _ae(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":bd(n,i=>r[i])}}var lz=e=>re.createElement(Ce.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});lz.displayName="StackItem";var l_=Le((e,t)=>{const{isInline:n,direction:r,align:i,justify:o,spacing:a="0.5rem",wrap:s,children:l,divider:d,className:p,shouldWrapChildren:g,...m}=e,y=n?"row":r??"column",b=C.exports.useMemo(()=>Cae({direction:y,spacing:a}),[y,a]),S=C.exports.useMemo(()=>_ae({spacing:a,direction:y}),[a,y]),E=!!d,P=!g&&!E,k=eb(l),L=P?k:k.map((N,z)=>{const $=typeof N.key<"u"?N.key:z,F=z+1===k.length,j=g?w(lz,{children:N},$):N;if(!E)return j;const Y=C.exports.cloneElement(d,{__css:S}),ve=F?null:Y;return ne(C.exports.Fragment,{children:[j,ve]},$)}),R=$n("chakra-stack",p);return re.createElement(Ce.div,{ref:t,display:"flex",alignItems:i,justifyContent:o,flexDirection:b.flexDirection,flexWrap:s,className:R,__css:E?{}:{[j6]:b[j6]},...m},L)});l_.displayName="Stack";var kae=Le((e,t)=>w(l_,{align:"center",...e,direction:"row",ref:t}));kae.displayName="HStack";var Eae=Le((e,t)=>w(l_,{align:"center",...e,direction:"column",ref:t}));Eae.displayName="VStack";var Wo=Le(function(t,n){const r=Eo("Text",t),{className:i,align:o,decoration:a,casing:s,...l}=_n(t),d=i_({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return re.createElement(Ce.p,{ref:n,className:$n("chakra-text",t.className),...d,...l,__css:r})});Wo.displayName="Text";function FT(e){return typeof e=="number"?`${e}px`:e}var Pae=Le(function(t,n){const{spacing:r="0.5rem",spacingX:i,spacingY:o,children:a,justify:s,direction:l,align:d,className:p,shouldWrapChildren:g,...m}=t,y=C.exports.useMemo(()=>{const{spacingX:S=r,spacingY:E=r}={spacingX:i,spacingY:o};return{"--chakra-wrap-x-spacing":P=>bd(S,k=>FT(o6("space",k)(P))),"--chakra-wrap-y-spacing":P=>bd(E,k=>FT(o6("space",k)(P))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:s,alignItems:d,flexDirection:l,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,i,o,s,d,l]),b=g?C.exports.Children.map(a,(S,E)=>w(uz,{children:S},E)):a;return re.createElement(Ce.div,{ref:n,className:$n("chakra-wrap",p),overflow:"hidden",...m},re.createElement(Ce.ul,{className:"chakra-wrap__list",__css:y},b))});Pae.displayName="Wrap";var uz=Le(function(t,n){const{className:r,...i}=t;return re.createElement(Ce.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:$n("chakra-wrap__listitem",r),...i})});uz.displayName="WrapItem";var Tae={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},cz=Tae,Sp=()=>{},Lae={document:cz,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:Sp,removeEventListener:Sp,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:Sp,removeListener:Sp}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:Sp,setInterval:()=>0,clearInterval:Sp},Aae=Lae,Iae={window:Aae,document:cz},dz=typeof window<"u"?{window,document}:Iae,fz=C.exports.createContext(dz);fz.displayName="EnvironmentContext";function hz(e){const{children:t,environment:n}=e,[r,i]=C.exports.useState(null),[o,a]=C.exports.useState(!1);C.exports.useEffect(()=>a(!0),[]);const s=C.exports.useMemo(()=>{if(n)return n;const l=r?.ownerDocument,d=r?.ownerDocument.defaultView;return l?{document:l,window:d}:dz},[r,n]);return ne(fz.Provider,{value:s,children:[t,!n&&o&&w("span",{id:"__chakra_env",hidden:!0,ref:l=>{C.exports.startTransition(()=>{l&&i(l)})}})]})}hz.displayName="EnvironmentProvider";var Rae=e=>e?"":void 0;function Mae(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((i,o,a,s)=>{e.current.set(a,{type:o,el:i,options:s}),i.addEventListener(o,a,s)},[]),r=C.exports.useCallback((i,o,a,s)=>{i.removeEventListener(o,a,s),e.current.delete(a)},[]);return C.exports.useEffect(()=>()=>{t.forEach((i,o)=>{r(i.el,i.type,o,i.options)})},[r,t]),{add:n,remove:r}}function dS(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function Oae(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:i=!0,clickOnSpace:o=!0,onMouseDown:a,onMouseUp:s,onClick:l,onKeyDown:d,onKeyUp:p,tabIndex:g,onMouseOver:m,onMouseLeave:y,...b}=e,[S,E]=C.exports.useState(!0),[P,k]=C.exports.useState(!1),L=Mae(),R=J=>{!J||J.tagName!=="BUTTON"&&E(!1)},N=S?g:g||0,z=n&&!r,$=C.exports.useCallback(J=>{if(n){J.stopPropagation(),J.preventDefault();return}J.currentTarget.focus(),l?.(J)},[n,l]),F=C.exports.useCallback(J=>{P&&dS(J)&&(J.preventDefault(),J.stopPropagation(),k(!1),L.remove(document,"keyup",F,!1))},[P,L]),q=C.exports.useCallback(J=>{if(d?.(J),n||J.defaultPrevented||J.metaKey||!dS(J.nativeEvent)||S)return;const G=i&&J.key==="Enter";o&&J.key===" "&&(J.preventDefault(),k(!0)),G&&(J.preventDefault(),J.currentTarget.click()),L.add(document,"keyup",F,!1)},[n,S,d,i,o,L,F]),j=C.exports.useCallback(J=>{if(p?.(J),n||J.defaultPrevented||J.metaKey||!dS(J.nativeEvent)||S)return;o&&J.key===" "&&(J.preventDefault(),k(!1),J.currentTarget.click())},[o,S,n,p]),Y=C.exports.useCallback(J=>{J.button===0&&(k(!1),L.remove(document,"mouseup",Y,!1))},[L]),ve=C.exports.useCallback(J=>{if(J.button!==0)return;if(n){J.stopPropagation(),J.preventDefault();return}S||k(!0),J.currentTarget.focus({preventScroll:!0}),L.add(document,"mouseup",Y,!1),a?.(J)},[n,S,a,L,Y]),ge=C.exports.useCallback(J=>{J.button===0&&(S||k(!1),s?.(J))},[s,S]),Se=C.exports.useCallback(J=>{if(n){J.preventDefault();return}m?.(J)},[n,m]),_e=C.exports.useCallback(J=>{P&&(J.preventDefault(),k(!1)),y?.(J)},[P,y]),we=Vn(t,R);return S?{...b,ref:we,type:"button","aria-disabled":z?void 0:n,disabled:z,onClick:$,onMouseDown:a,onMouseUp:s,onKeyUp:p,onKeyDown:d,onMouseOver:m,onMouseLeave:y}:{...b,ref:we,role:"button","data-active":Rae(P),"aria-disabled":n?"true":void 0,tabIndex:z?void 0:N,onClick:$,onMouseDown:ve,onMouseUp:ge,onKeyUp:j,onKeyDown:q,onMouseOver:Se,onMouseLeave:_e}}function Nae(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function Dae(e){if(!Nae(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var zae=e=>e.hasAttribute("tabindex");function $ae(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function pz(e){return e.parentElement&&pz(e.parentElement)?!0:e.hidden}function Fae(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function Bae(e){if(!Dae(e)||pz(e)||$ae(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():Fae(e)?!0:zae(e)}var Hae=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],Wae=Hae.join(),Vae=e=>e.offsetWidth>0&&e.offsetHeight>0;function Uae(e){const t=Array.from(e.querySelectorAll(Wae));return t.unshift(e),t.filter(n=>Bae(n)&&Vae(n))}var qo="top",os="bottom",as="right",Ko="left",u_="auto",Tv=[qo,os,as,Ko],M0="start",Km="end",Gae="clippingParents",gz="viewport",fg="popper",jae="reference",BT=Tv.reduce(function(e,t){return e.concat([t+"-"+M0,t+"-"+Km])},[]),mz=[].concat(Tv,[u_]).reduce(function(e,t){return e.concat([t,t+"-"+M0,t+"-"+Km])},[]),qae="beforeRead",Kae="read",Yae="afterRead",Zae="beforeMain",Xae="main",Qae="afterMain",Jae="beforeWrite",ese="write",tse="afterWrite",nse=[qae,Kae,Yae,Zae,Xae,Qae,Jae,ese,tse];function Wl(e){return e?(e.nodeName||"").toLowerCase():null}function us(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function ph(e){var t=us(e).Element;return e instanceof t||e instanceof Element}function ns(e){var t=us(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function c_(e){if(typeof ShadowRoot>"u")return!1;var t=us(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function rse(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},i=t.attributes[n]||{},o=t.elements[n];!ns(o)||!Wl(o)||(Object.assign(o.style,r),Object.keys(i).forEach(function(a){var s=i[a];s===!1?o.removeAttribute(a):o.setAttribute(a,s===!0?"":s)}))})}function ise(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var i=t.elements[r],o=t.attributes[r]||{},a=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),s=a.reduce(function(l,d){return l[d]="",l},{});!ns(i)||!Wl(i)||(Object.assign(i.style,s),Object.keys(o).forEach(function(l){i.removeAttribute(l)}))})}}const ose={name:"applyStyles",enabled:!0,phase:"write",fn:rse,effect:ise,requires:["computeStyles"]};function zl(e){return e.split("-")[0]}var ah=Math.max,k3=Math.min,O0=Math.round;function q6(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function vz(){return!/^((?!chrome|android).)*safari/i.test(q6())}function N0(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),i=1,o=1;t&&ns(e)&&(i=e.offsetWidth>0&&O0(r.width)/e.offsetWidth||1,o=e.offsetHeight>0&&O0(r.height)/e.offsetHeight||1);var a=ph(e)?us(e):window,s=a.visualViewport,l=!vz()&&n,d=(r.left+(l&&s?s.offsetLeft:0))/i,p=(r.top+(l&&s?s.offsetTop:0))/o,g=r.width/i,m=r.height/o;return{width:g,height:m,top:p,right:d+g,bottom:p+m,left:d,x:d,y:p}}function d_(e){var t=N0(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function yz(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&c_(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Wu(e){return us(e).getComputedStyle(e)}function ase(e){return["table","td","th"].indexOf(Wl(e))>=0}function Ld(e){return((ph(e)?e.ownerDocument:e.document)||window.document).documentElement}function ab(e){return Wl(e)==="html"?e:e.assignedSlot||e.parentNode||(c_(e)?e.host:null)||Ld(e)}function HT(e){return!ns(e)||Wu(e).position==="fixed"?null:e.offsetParent}function sse(e){var t=/firefox/i.test(q6()),n=/Trident/i.test(q6());if(n&&ns(e)){var r=Wu(e);if(r.position==="fixed")return null}var i=ab(e);for(c_(i)&&(i=i.host);ns(i)&&["html","body"].indexOf(Wl(i))<0;){var o=Wu(i);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return i;i=i.parentNode}return null}function Lv(e){for(var t=us(e),n=HT(e);n&&ase(n)&&Wu(n).position==="static";)n=HT(n);return n&&(Wl(n)==="html"||Wl(n)==="body"&&Wu(n).position==="static")?t:n||sse(e)||t}function f_(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function om(e,t,n){return ah(e,k3(t,n))}function lse(e,t,n){var r=om(e,t,n);return r>n?n:r}function bz(){return{top:0,right:0,bottom:0,left:0}}function xz(e){return Object.assign({},bz(),e)}function Sz(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var use=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,xz(typeof t!="number"?t:Sz(t,Tv))};function cse(e){var t,n=e.state,r=e.name,i=e.options,o=n.elements.arrow,a=n.modifiersData.popperOffsets,s=zl(n.placement),l=f_(s),d=[Ko,as].indexOf(s)>=0,p=d?"height":"width";if(!(!o||!a)){var g=use(i.padding,n),m=d_(o),y=l==="y"?qo:Ko,b=l==="y"?os:as,S=n.rects.reference[p]+n.rects.reference[l]-a[l]-n.rects.popper[p],E=a[l]-n.rects.reference[l],P=Lv(o),k=P?l==="y"?P.clientHeight||0:P.clientWidth||0:0,L=S/2-E/2,R=g[y],N=k-m[p]-g[b],z=k/2-m[p]/2+L,$=om(R,z,N),F=l;n.modifiersData[r]=(t={},t[F]=$,t.centerOffset=$-z,t)}}function dse(e){var t=e.state,n=e.options,r=n.element,i=r===void 0?"[data-popper-arrow]":r;i!=null&&(typeof i=="string"&&(i=t.elements.popper.querySelector(i),!i)||!yz(t.elements.popper,i)||(t.elements.arrow=i))}const fse={name:"arrow",enabled:!0,phase:"main",fn:cse,effect:dse,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function D0(e){return e.split("-")[1]}var hse={top:"auto",right:"auto",bottom:"auto",left:"auto"};function pse(e){var t=e.x,n=e.y,r=window,i=r.devicePixelRatio||1;return{x:O0(t*i)/i||0,y:O0(n*i)/i||0}}function WT(e){var t,n=e.popper,r=e.popperRect,i=e.placement,o=e.variation,a=e.offsets,s=e.position,l=e.gpuAcceleration,d=e.adaptive,p=e.roundOffsets,g=e.isFixed,m=a.x,y=m===void 0?0:m,b=a.y,S=b===void 0?0:b,E=typeof p=="function"?p({x:y,y:S}):{x:y,y:S};y=E.x,S=E.y;var P=a.hasOwnProperty("x"),k=a.hasOwnProperty("y"),L=Ko,R=qo,N=window;if(d){var z=Lv(n),$="clientHeight",F="clientWidth";if(z===us(n)&&(z=Ld(n),Wu(z).position!=="static"&&s==="absolute"&&($="scrollHeight",F="scrollWidth")),z=z,i===qo||(i===Ko||i===as)&&o===Km){R=os;var q=g&&z===N&&N.visualViewport?N.visualViewport.height:z[$];S-=q-r.height,S*=l?1:-1}if(i===Ko||(i===qo||i===os)&&o===Km){L=as;var j=g&&z===N&&N.visualViewport?N.visualViewport.width:z[F];y-=j-r.width,y*=l?1:-1}}var Y=Object.assign({position:s},d&&hse),ve=p===!0?pse({x:y,y:S}):{x:y,y:S};if(y=ve.x,S=ve.y,l){var ge;return Object.assign({},Y,(ge={},ge[R]=k?"0":"",ge[L]=P?"0":"",ge.transform=(N.devicePixelRatio||1)<=1?"translate("+y+"px, "+S+"px)":"translate3d("+y+"px, "+S+"px, 0)",ge))}return Object.assign({},Y,(t={},t[R]=k?S+"px":"",t[L]=P?y+"px":"",t.transform="",t))}function gse(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=r===void 0?!0:r,o=n.adaptive,a=o===void 0?!0:o,s=n.roundOffsets,l=s===void 0?!0:s,d={placement:zl(t.placement),variation:D0(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,WT(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:l})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,WT(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const mse={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:gse,data:{}};var ay={passive:!0};function vse(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,o=i===void 0?!0:i,a=r.resize,s=a===void 0?!0:a,l=us(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&d.forEach(function(p){p.addEventListener("scroll",n.update,ay)}),s&&l.addEventListener("resize",n.update,ay),function(){o&&d.forEach(function(p){p.removeEventListener("scroll",n.update,ay)}),s&&l.removeEventListener("resize",n.update,ay)}}const yse={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:vse,data:{}};var bse={left:"right",right:"left",bottom:"top",top:"bottom"};function u5(e){return e.replace(/left|right|bottom|top/g,function(t){return bse[t]})}var xse={start:"end",end:"start"};function VT(e){return e.replace(/start|end/g,function(t){return xse[t]})}function h_(e){var t=us(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function p_(e){return N0(Ld(e)).left+h_(e).scrollLeft}function Sse(e,t){var n=us(e),r=Ld(e),i=n.visualViewport,o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;var d=vz();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s+p_(e),y:l}}function wse(e){var t,n=Ld(e),r=h_(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=ah(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=ah(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),s=-r.scrollLeft+p_(e),l=-r.scrollTop;return Wu(i||n).direction==="rtl"&&(s+=ah(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function g_(e){var t=Wu(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}function wz(e){return["html","body","#document"].indexOf(Wl(e))>=0?e.ownerDocument.body:ns(e)&&g_(e)?e:wz(ab(e))}function am(e,t){var n;t===void 0&&(t=[]);var r=wz(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=us(r),a=i?[o].concat(o.visualViewport||[],g_(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(am(ab(a)))}function K6(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Cse(e,t){var n=N0(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function UT(e,t,n){return t===gz?K6(Sse(e,n)):ph(t)?Cse(t,n):K6(wse(Ld(e)))}function _se(e){var t=am(ab(e)),n=["absolute","fixed"].indexOf(Wu(e).position)>=0,r=n&&ns(e)?Lv(e):e;return ph(r)?t.filter(function(i){return ph(i)&&yz(i,r)&&Wl(i)!=="body"}):[]}function kse(e,t,n,r){var i=t==="clippingParents"?_se(e):[].concat(t),o=[].concat(i,[n]),a=o[0],s=o.reduce(function(l,d){var p=UT(e,d,r);return l.top=ah(p.top,l.top),l.right=k3(p.right,l.right),l.bottom=k3(p.bottom,l.bottom),l.left=ah(p.left,l.left),l},UT(e,a,r));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}function Cz(e){var t=e.reference,n=e.element,r=e.placement,i=r?zl(r):null,o=r?D0(r):null,a=t.x+t.width/2-n.width/2,s=t.y+t.height/2-n.height/2,l;switch(i){case qo:l={x:a,y:t.y-n.height};break;case os:l={x:a,y:t.y+t.height};break;case as:l={x:t.x+t.width,y:s};break;case Ko:l={x:t.x-n.width,y:s};break;default:l={x:t.x,y:t.y}}var d=i?f_(i):null;if(d!=null){var p=d==="y"?"height":"width";switch(o){case M0:l[d]=l[d]-(t[p]/2-n[p]/2);break;case Km:l[d]=l[d]+(t[p]/2-n[p]/2);break}}return l}function Ym(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=r===void 0?e.placement:r,o=n.strategy,a=o===void 0?e.strategy:o,s=n.boundary,l=s===void 0?Gae:s,d=n.rootBoundary,p=d===void 0?gz:d,g=n.elementContext,m=g===void 0?fg:g,y=n.altBoundary,b=y===void 0?!1:y,S=n.padding,E=S===void 0?0:S,P=xz(typeof E!="number"?E:Sz(E,Tv)),k=m===fg?jae:fg,L=e.rects.popper,R=e.elements[b?k:m],N=kse(ph(R)?R:R.contextElement||Ld(e.elements.popper),l,p,a),z=N0(e.elements.reference),$=Cz({reference:z,element:L,strategy:"absolute",placement:i}),F=K6(Object.assign({},L,$)),q=m===fg?F:z,j={top:N.top-q.top+P.top,bottom:q.bottom-N.bottom+P.bottom,left:N.left-q.left+P.left,right:q.right-N.right+P.right},Y=e.modifiersData.offset;if(m===fg&&Y){var ve=Y[i];Object.keys(j).forEach(function(ge){var Se=[as,os].indexOf(ge)>=0?1:-1,_e=[qo,os].indexOf(ge)>=0?"y":"x";j[ge]+=ve[_e]*Se})}return j}function Ese(e,t){t===void 0&&(t={});var n=t,r=n.placement,i=n.boundary,o=n.rootBoundary,a=n.padding,s=n.flipVariations,l=n.allowedAutoPlacements,d=l===void 0?mz:l,p=D0(r),g=p?s?BT:BT.filter(function(b){return D0(b)===p}):Tv,m=g.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=g);var y=m.reduce(function(b,S){return b[S]=Ym(e,{placement:S,boundary:i,rootBoundary:o,padding:a})[zl(S)],b},{});return Object.keys(y).sort(function(b,S){return y[b]-y[S]})}function Pse(e){if(zl(e)===u_)return[];var t=u5(e);return[VT(e),t,VT(t)]}function Tse(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!0:a,l=n.fallbackPlacements,d=n.padding,p=n.boundary,g=n.rootBoundary,m=n.altBoundary,y=n.flipVariations,b=y===void 0?!0:y,S=n.allowedAutoPlacements,E=t.options.placement,P=zl(E),k=P===E,L=l||(k||!b?[u5(E)]:Pse(E)),R=[E].concat(L).reduce(function(xe,ze){return xe.concat(zl(ze)===u_?Ese(t,{placement:ze,boundary:p,rootBoundary:g,padding:d,flipVariations:b,allowedAutoPlacements:S}):ze)},[]),N=t.rects.reference,z=t.rects.popper,$=new Map,F=!0,q=R[0],j=0;j=0,_e=Se?"width":"height",we=Ym(t,{placement:Y,boundary:p,rootBoundary:g,altBoundary:m,padding:d}),J=Se?ge?as:Ko:ge?os:qo;N[_e]>z[_e]&&(J=u5(J));var G=u5(J),te=[];if(o&&te.push(we[ve]<=0),s&&te.push(we[J]<=0,we[G]<=0),te.every(function(xe){return xe})){q=Y,F=!1;break}$.set(Y,te)}if(F)for(var Q=b?3:1,W=function(ze){var Me=R.find(function(Ue){var Ee=$.get(Ue);if(Ee)return Ee.slice(0,ze).every(function(Ve){return Ve})});if(Me)return q=Me,"break"},se=Q;se>0;se--){var de=W(se);if(de==="break")break}t.placement!==q&&(t.modifiersData[r]._skip=!0,t.placement=q,t.reset=!0)}}const Lse={name:"flip",enabled:!0,phase:"main",fn:Tse,requiresIfExists:["offset"],data:{_skip:!1}};function GT(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function jT(e){return[qo,as,os,Ko].some(function(t){return e[t]>=0})}function Ase(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,o=t.modifiersData.preventOverflow,a=Ym(t,{elementContext:"reference"}),s=Ym(t,{altBoundary:!0}),l=GT(a,r),d=GT(s,i,o),p=jT(l),g=jT(d);t.modifiersData[n]={referenceClippingOffsets:l,popperEscapeOffsets:d,isReferenceHidden:p,hasPopperEscaped:g},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":g})}const Ise={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Ase};function Rse(e,t,n){var r=zl(e),i=[Ko,qo].indexOf(r)>=0?-1:1,o=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,a=o[0],s=o[1];return a=a||0,s=(s||0)*i,[Ko,as].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}function Mse(e){var t=e.state,n=e.options,r=e.name,i=n.offset,o=i===void 0?[0,0]:i,a=mz.reduce(function(p,g){return p[g]=Rse(g,t.rects,o),p},{}),s=a[t.placement],l=s.x,d=s.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=a}const Ose={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:Mse};function Nse(e){var t=e.state,n=e.name;t.modifiersData[n]=Cz({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const Dse={name:"popperOffsets",enabled:!0,phase:"read",fn:Nse,data:{}};function zse(e){return e==="x"?"y":"x"}function $se(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,o=i===void 0?!0:i,a=n.altAxis,s=a===void 0?!1:a,l=n.boundary,d=n.rootBoundary,p=n.altBoundary,g=n.padding,m=n.tether,y=m===void 0?!0:m,b=n.tetherOffset,S=b===void 0?0:b,E=Ym(t,{boundary:l,rootBoundary:d,padding:g,altBoundary:p}),P=zl(t.placement),k=D0(t.placement),L=!k,R=f_(P),N=zse(R),z=t.modifiersData.popperOffsets,$=t.rects.reference,F=t.rects.popper,q=typeof S=="function"?S(Object.assign({},t.rects,{placement:t.placement})):S,j=typeof q=="number"?{mainAxis:q,altAxis:q}:Object.assign({mainAxis:0,altAxis:0},q),Y=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ve={x:0,y:0};if(!!z){if(o){var ge,Se=R==="y"?qo:Ko,_e=R==="y"?os:as,we=R==="y"?"height":"width",J=z[R],G=J+E[Se],te=J-E[_e],Q=y?-F[we]/2:0,W=k===M0?$[we]:F[we],se=k===M0?-F[we]:-$[we],de=t.elements.arrow,xe=y&&de?d_(de):{width:0,height:0},ze=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:bz(),Me=ze[Se],Ue=ze[_e],Ee=om(0,$[we],xe[we]),Ve=L?$[we]/2-Q-Ee-Me-j.mainAxis:W-Ee-Me-j.mainAxis,ot=L?-$[we]/2+Q+Ee+Ue+j.mainAxis:se+Ee+Ue+j.mainAxis,pt=t.elements.arrow&&Lv(t.elements.arrow),Wt=pt?R==="y"?pt.clientTop||0:pt.clientLeft||0:0,Dt=(ge=Y?.[R])!=null?ge:0,Oe=J+Ve-Dt-Wt,nt=J+ot-Dt,mt=om(y?k3(G,Oe):G,J,y?ah(te,nt):te);z[R]=mt,ve[R]=mt-J}if(s){var st,vt=R==="x"?qo:Ko,yn=R==="x"?os:as,yt=z[N],Vt=N==="y"?"height":"width",on=yt+E[vt],zt=yt-E[yn],Ne=[qo,Ko].indexOf(P)!==-1,tt=(st=Y?.[N])!=null?st:0,jt=Ne?on:yt-$[Vt]-F[Vt]-tt+j.altAxis,Ut=Ne?yt+$[Vt]+F[Vt]-tt-j.altAxis:zt,Pe=y&&Ne?lse(jt,yt,Ut):om(y?jt:on,yt,y?Ut:zt);z[N]=Pe,ve[N]=Pe-yt}t.modifiersData[r]=ve}}const Fse={name:"preventOverflow",enabled:!0,phase:"main",fn:$se,requiresIfExists:["offset"]};function Bse(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function Hse(e){return e===us(e)||!ns(e)?h_(e):Bse(e)}function Wse(e){var t=e.getBoundingClientRect(),n=O0(t.width)/e.offsetWidth||1,r=O0(t.height)/e.offsetHeight||1;return n!==1||r!==1}function Vse(e,t,n){n===void 0&&(n=!1);var r=ns(t),i=ns(t)&&Wse(t),o=Ld(t),a=N0(e,i,n),s={scrollLeft:0,scrollTop:0},l={x:0,y:0};return(r||!r&&!n)&&((Wl(t)!=="body"||g_(o))&&(s=Hse(t)),ns(t)?(l=N0(t,!0),l.x+=t.clientLeft,l.y+=t.clientTop):o&&(l.x=p_(o))),{x:a.left+s.scrollLeft-l.x,y:a.top+s.scrollTop-l.y,width:a.width,height:a.height}}function Use(e){var t=new Map,n=new Set,r=[];e.forEach(function(o){t.set(o.name,o)});function i(o){n.add(o.name);var a=[].concat(o.requires||[],o.requiresIfExists||[]);a.forEach(function(s){if(!n.has(s)){var l=t.get(s);l&&i(l)}}),r.push(o)}return e.forEach(function(o){n.has(o.name)||i(o)}),r}function Gse(e){var t=Use(e);return nse.reduce(function(n,r){return n.concat(t.filter(function(i){return i.phase===r}))},[])}function jse(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function qse(e){var t=e.reduce(function(n,r){var i=n[r.name];return n[r.name]=i?Object.assign({},i,r,{options:Object.assign({},i.options,r.options),data:Object.assign({},i.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var qT={placement:"bottom",modifiers:[],strategy:"absolute"};function KT(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),Qr={arrowShadowColor:wp("--popper-arrow-shadow-color"),arrowSize:wp("--popper-arrow-size","8px"),arrowSizeHalf:wp("--popper-arrow-size-half"),arrowBg:wp("--popper-arrow-bg"),transformOrigin:wp("--popper-transform-origin"),arrowOffset:wp("--popper-arrow-offset")};function Xse(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var Qse={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},Jse=e=>Qse[e],YT={scroll:!0,resize:!0};function ele(e){let t;return typeof e=="object"?t={enabled:!0,options:{...YT,...e}}:t={enabled:e,options:YT},t}var tle={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},nle={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{ZT(e)},effect:({state:e})=>()=>{ZT(e)}},ZT=e=>{e.elements.popper.style.setProperty(Qr.transformOrigin.var,Jse(e.placement))},rle={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{ile(e)}},ile=e=>{var t;if(!e.placement)return;const n=ole(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:Qr.arrowSize.varRef,height:Qr.arrowSize.varRef,zIndex:-1});const r={[Qr.arrowSizeHalf.var]:`calc(${Qr.arrowSize.varRef} / 2)`,[Qr.arrowOffset.var]:`calc(${Qr.arrowSizeHalf.varRef} * -1)`};for(const i in r)e.elements.arrow.style.setProperty(i,r[i])}},ole=e=>{if(e.startsWith("top"))return{property:"bottom",value:Qr.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:Qr.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:Qr.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:Qr.arrowOffset.varRef}},ale={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{XT(e)},effect:({state:e})=>()=>{XT(e)}},XT=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:Qr.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:Xse(e.placement)})},sle={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},lle={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function ule(e,t="ltr"){var n;const r=((n=sle[e])==null?void 0:n[t])||e;return t==="ltr"?r:lle[e]??r}function _z(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:i="absolute",arrowPadding:o=8,eventListeners:a=!0,offset:s,gutter:l=8,flip:d=!0,boundary:p="clippingParents",preventOverflow:g=!0,matchWidth:m,direction:y="ltr"}=e,b=C.exports.useRef(null),S=C.exports.useRef(null),E=C.exports.useRef(null),P=ule(r,y),k=C.exports.useRef(()=>{}),L=C.exports.useCallback(()=>{var j;!t||!b.current||!S.current||((j=k.current)==null||j.call(k),E.current=Zse(b.current,S.current,{placement:P,modifiers:[ale,rle,nle,{...tle,enabled:!!m},{name:"eventListeners",...ele(a)},{name:"arrow",options:{padding:o}},{name:"offset",options:{offset:s??[0,l]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!g,options:{boundary:p}},...n??[]],strategy:i}),E.current.forceUpdate(),k.current=E.current.destroy)},[P,t,n,m,a,o,s,l,d,g,p,i]);C.exports.useEffect(()=>()=>{var j;!b.current&&!S.current&&((j=E.current)==null||j.destroy(),E.current=null)},[]);const R=C.exports.useCallback(j=>{b.current=j,L()},[L]),N=C.exports.useCallback((j={},Y=null)=>({...j,ref:Vn(R,Y)}),[R]),z=C.exports.useCallback(j=>{S.current=j,L()},[L]),$=C.exports.useCallback((j={},Y=null)=>({...j,ref:Vn(z,Y),style:{...j.style,position:i,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[i,z,m]),F=C.exports.useCallback((j={},Y=null)=>{const{size:ve,shadowColor:ge,bg:Se,style:_e,...we}=j;return{...we,ref:Y,"data-popper-arrow":"",style:cle(j)}},[]),q=C.exports.useCallback((j={},Y=null)=>({...j,ref:Y,"data-popper-arrow-inner":""}),[]);return{update(){var j;(j=E.current)==null||j.update()},forceUpdate(){var j;(j=E.current)==null||j.forceUpdate()},transformOrigin:Qr.transformOrigin.varRef,referenceRef:R,popperRef:z,getPopperProps:$,getArrowProps:F,getArrowInnerProps:q,getReferenceProps:N}}function cle(e){const{size:t,shadowColor:n,bg:r,style:i}=e,o={...i,position:"absolute"};return t&&(o["--popper-arrow-size"]=t),n&&(o["--popper-arrow-shadow-color"]=n),r&&(o["--popper-arrow-bg"]=r),o}function kz(e={}){const{onClose:t,onOpen:n,isOpen:r,id:i}=e,o=Ar(n),a=Ar(t),[s,l]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:s,p=r!==void 0,g=i??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{p||l(!1),a?.()},[p,a]),y=C.exports.useCallback(()=>{p||l(!0),o?.()},[p,o]),b=C.exports.useCallback(()=>{d?m():y()},[d,y,m]);function S(P={}){return{...P,"aria-expanded":d,"aria-controls":g,onClick(k){var L;(L=P.onClick)==null||L.call(P,k),b()}}}function E(P={}){return{...P,hidden:!d,id:g}}return{isOpen:d,onOpen:y,onClose:m,onToggle:b,isControlled:p,getButtonProps:S,getDisclosureProps:E}}function Ez(e){const{wasSelected:t,enabled:n,isSelected:r,mode:i="unmount"}=e;return!!(!n||r||i==="keepMounted"&&t)}var[dle,fle]=Tn({strict:!1,name:"PortalManagerContext"});function Pz(e){const{children:t,zIndex:n}=e;return w(dle,{value:{zIndex:n},children:t})}Pz.displayName="PortalManager";var[Tz,hle]=Tn({strict:!1,name:"PortalContext"}),m_="chakra-portal",ple=".chakra-portal",gle=e=>w("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),mle=e=>{const{appendToParentPortal:t,children:n}=e,[r,i]=C.exports.useState(null),o=C.exports.useRef(null),[,a]=C.exports.useState({});C.exports.useEffect(()=>a({}),[]);const s=hle(),l=fle();Ml(()=>{if(!r)return;const p=r.ownerDocument,g=t?s??p.body:p.body;if(!g)return;o.current=p.createElement("div"),o.current.className=m_,g.appendChild(o.current),a({});const m=o.current;return()=>{g.contains(m)&&g.removeChild(m)}},[r]);const d=l?.zIndex?w(gle,{zIndex:l?.zIndex,children:n}):n;return o.current?jl.exports.createPortal(w(Tz,{value:o.current,children:d}),o.current):w("span",{ref:p=>{p&&i(p)}})},vle=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,i=n.current,o=i??(typeof window<"u"?document.body:void 0),a=C.exports.useMemo(()=>{const l=i?.ownerDocument.createElement("div");return l&&(l.className=m_),l},[i]),[,s]=C.exports.useState({});return Ml(()=>s({}),[]),Ml(()=>{if(!(!a||!o))return o.appendChild(a),()=>{o.removeChild(a)}},[a,o]),o&&a?jl.exports.createPortal(w(Tz,{value:r?a:null,children:t}),a):null};function wh(e){const{containerRef:t,...n}=e;return t?w(vle,{containerRef:t,...n}):w(mle,{...n})}wh.defaultProps={appendToParentPortal:!0};wh.className=m_;wh.selector=ple;wh.displayName="Portal";var yle=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},Cp=new WeakMap,sy=new WeakMap,ly={},fS=0,ble=function(e,t,n,r){var i=Array.isArray(e)?e:[e];ly[n]||(ly[n]=new WeakMap);var o=ly[n],a=[],s=new Set,l=new Set(i),d=function(g){!g||s.has(g)||(s.add(g),d(g.parentNode))};i.forEach(d);var p=function(g){!g||l.has(g)||Array.prototype.forEach.call(g.children,function(m){if(s.has(m))p(m);else{var y=m.getAttribute(r),b=y!==null&&y!=="false",S=(Cp.get(m)||0)+1,E=(o.get(m)||0)+1;Cp.set(m,S),o.set(m,E),a.push(m),S===1&&b&&sy.set(m,!0),E===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return p(t),s.clear(),fS++,function(){a.forEach(function(g){var m=Cp.get(g)-1,y=o.get(g)-1;Cp.set(g,m),o.set(g,y),m||(sy.has(g)||g.removeAttribute(r),sy.delete(g)),y||g.removeAttribute(n)}),fS--,fS||(Cp=new WeakMap,Cp=new WeakMap,sy=new WeakMap,ly={})}},Lz=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),i=t||yle(e);return i?(r.push.apply(r,Array.from(i.querySelectorAll("[aria-live]"))),ble(r,i,n,"aria-hidden")):function(){return null}};function v_(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var Dn={exports:{}},xle="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",Sle=xle,wle=Sle;function Az(){}function Iz(){}Iz.resetWarningCache=Az;var Cle=function(){function e(r,i,o,a,s,l){if(l!==wle){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:Iz,resetWarningCache:Az};return n.PropTypes=n,n};Dn.exports=Cle();var Y6="data-focus-lock",Rz="data-focus-lock-disabled",_le="data-no-focus-lock",kle="data-autofocus-inside",Ele="data-no-autofocus";function Ple(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function Tle(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var i=n.value;i!==r&&(n.value=r,n.callback(r,i))}}}})[0];return n.callback=t,n.facade}function Mz(e,t){return Tle(t||null,function(n){return e.forEach(function(r){return Ple(r,n)})})}var hS={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function Oz(e){return e}function Nz(e,t){t===void 0&&(t=Oz);var n=[],r=!1,i={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(o){var a=t(o,r);return n.push(a),function(){n=n.filter(function(s){return s!==a})}},assignSyncMedium:function(o){for(r=!0;n.length;){var a=n;n=[],a.forEach(o)}n={push:function(s){return o(s)},filter:function(){return n}}},assignMedium:function(o){r=!0;var a=[];if(n.length){var s=n;n=[],s.forEach(o),a=n}var l=function(){var p=a;a=[],p.forEach(o)},d=function(){return Promise.resolve().then(l)};d(),n={push:function(p){a.push(p),d()},filter:function(p){return a=a.filter(p),n}}}};return i}function y_(e,t){return t===void 0&&(t=Oz),Nz(e,t)}function Dz(e){e===void 0&&(e={});var t=Nz(null);return t.options=Tl({async:!0,ssr:!1},e),t}var zz=function(e){var t=e.sideCar,n=W4(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return w(r,{...Tl({},n)})};zz.isSideCarExport=!0;function Lle(e,t){return e.useMedium(t),zz}var $z=y_({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),Fz=y_(),Ale=y_(),Ile=Dz({async:!0}),Rle=[],b_=C.exports.forwardRef(function(t,n){var r,i=C.exports.useState(),o=i[0],a=i[1],s=C.exports.useRef(),l=C.exports.useRef(!1),d=C.exports.useRef(null),p=t.children,g=t.disabled,m=t.noFocusGuards,y=t.persistentFocus,b=t.crossFrame,S=t.autoFocus;t.allowTextSelection;var E=t.group,P=t.className,k=t.whiteList,L=t.hasPositiveIndices,R=t.shards,N=R===void 0?Rle:R,z=t.as,$=z===void 0?"div":z,F=t.lockProps,q=F===void 0?{}:F,j=t.sideCar,Y=t.returnFocus,ve=t.focusOptions,ge=t.onActivation,Se=t.onDeactivation,_e=C.exports.useState({}),we=_e[0],J=C.exports.useCallback(function(){d.current=d.current||document&&document.activeElement,s.current&&ge&&ge(s.current),l.current=!0},[ge]),G=C.exports.useCallback(function(){l.current=!1,Se&&Se(s.current)},[Se]);C.exports.useEffect(function(){g||(d.current=null)},[]);var te=C.exports.useCallback(function(Ue){var Ee=d.current;if(Ee&&Ee.focus){var Ve=typeof Y=="function"?Y(Ee):Y;if(Ve){var ot=typeof Ve=="object"?Ve:void 0;d.current=null,Ue?Promise.resolve().then(function(){return Ee.focus(ot)}):Ee.focus(ot)}}},[Y]),Q=C.exports.useCallback(function(Ue){l.current&&$z.useMedium(Ue)},[]),W=Fz.useMedium,se=C.exports.useCallback(function(Ue){s.current!==Ue&&(s.current=Ue,a(Ue))},[]),de=Rn((r={},r[Rz]=g&&"disabled",r[Y6]=E,r),q),xe=m!==!0,ze=xe&&m!=="tail",Me=Mz([n,se]);return ne(Un,{children:[xe&&[w("div",{"data-focus-guard":!0,tabIndex:g?-1:0,style:hS},"guard-first"),L?w("div",{"data-focus-guard":!0,tabIndex:g?-1:1,style:hS},"guard-nearest"):null],!g&&w(j,{id:we,sideCar:Ile,observed:o,disabled:g,persistentFocus:y,crossFrame:b,autoFocus:S,whiteList:k,shards:N,onActivation:J,onDeactivation:G,returnFocus:te,focusOptions:ve}),w($,{ref:Me,...de,className:P,onBlur:W,onFocus:Q,children:p}),ze&&w("div",{"data-focus-guard":!0,tabIndex:g?-1:0,style:hS})]})});b_.propTypes={};b_.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const Bz=b_;function Z6(e,t){return Z6=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,i){return r.__proto__=i,r},Z6(e,t)}function x_(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Z6(e,t)}function Hz(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Mle(e,t){function n(r){return r.displayName||r.name||"Component"}return function(i){var o=[],a;function s(){a=e(o.map(function(d){return d.props})),t(a)}var l=function(d){x_(p,d);function p(){return d.apply(this,arguments)||this}p.peek=function(){return a};var g=p.prototype;return g.componentDidMount=function(){o.push(this),s()},g.componentDidUpdate=function(){s()},g.componentWillUnmount=function(){var y=o.indexOf(this);o.splice(y,1),s()},g.render=function(){return w(i,{...this.props})},p}(C.exports.PureComponent);return Hz(l,"displayName","SideEffect("+n(i)+")"),l}}var Kl=function(e){for(var t=Array(e.length),n=0;n=0}).sort(Hle)},Wle=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],w_=Wle.join(","),Vle="".concat(w_,", [data-focus-guard]"),Zz=function(e,t){var n;return Kl(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,i){return r.concat(i.matches(t?Vle:w_)?[i]:[],Zz(i))},[])},C_=function(e,t){return e.reduce(function(n,r){return n.concat(Zz(r,t),r.parentNode?Kl(r.parentNode.querySelectorAll(w_)).filter(function(i){return i===r}):[])},[])},Ule=function(e){var t=e.querySelectorAll("[".concat(kle,"]"));return Kl(t).map(function(n){return C_([n])}).reduce(function(n,r){return n.concat(r)},[])},__=function(e,t){return Kl(e).filter(function(n){return Uz(t,n)}).filter(function(n){return $le(n)})},QT=function(e,t){return t===void 0&&(t=new Map),Kl(e).filter(function(n){return Gz(t,n)})},Q6=function(e,t,n){return Yz(__(C_(e,n),t),!0,n)},JT=function(e,t){return Yz(__(C_(e),t),!1)},Gle=function(e,t){return __(Ule(e),t)},Zm=function(e,t){return(e.shadowRoot?Zm(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||Kl(e.children).some(function(n){return Zm(n,t)})},jle=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(i),(o&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(a,s){return!t.has(s)})},Xz=function(e){return e.parentNode?Xz(e.parentNode):e},k_=function(e){var t=X6(e);return t.filter(Boolean).reduce(function(n,r){var i=r.getAttribute(Y6);return n.push.apply(n,i?jle(Kl(Xz(r).querySelectorAll("[".concat(Y6,'="').concat(i,'"]:not([').concat(Rz,'="disabled"])')))):[r]),n},[])},Qz=function(e){return e.activeElement?e.activeElement.shadowRoot?Qz(e.activeElement.shadowRoot):e.activeElement:void 0},E_=function(){return document.activeElement?document.activeElement.shadowRoot?Qz(document.activeElement.shadowRoot):document.activeElement:void 0},qle=function(e){return e===document.activeElement},Kle=function(e){return Boolean(Kl(e.querySelectorAll("iframe")).some(function(t){return qle(t)}))},Jz=function(e){var t=document&&E_();return!t||t.dataset&&t.dataset.focusGuard?!1:k_(e).some(function(n){return Zm(n,t)||Kle(n)})},Yle=function(){var e=document&&E_();return e?Kl(document.querySelectorAll("[".concat(_le,"]"))).some(function(t){return Zm(t,e)}):!1},Zle=function(e,t){return t.filter(Kz).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},P_=function(e,t){return Kz(e)&&e.name?Zle(e,t):e},Xle=function(e){var t=new Set;return e.forEach(function(n){return t.add(P_(n,e))}),e.filter(function(n){return t.has(n)})},eL=function(e){return e[0]&&e.length>1?P_(e[0],e):e[0]},tL=function(e,t){return e.length>1?e.indexOf(P_(e[t],e)):t},e$="NEW_FOCUS",Qle=function(e,t,n,r){var i=e.length,o=e[0],a=e[i-1],s=S_(n);if(!(n&&e.indexOf(n)>=0)){var l=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):l,p=r?e.indexOf(r):-1,g=l-d,m=t.indexOf(o),y=t.indexOf(a),b=Xle(t),S=n!==void 0?b.indexOf(n):-1,E=S-(r?b.indexOf(r):l),P=tL(e,0),k=tL(e,i-1);if(l===-1||p===-1)return e$;if(!g&&p>=0)return p;if(l<=m&&s&&Math.abs(g)>1)return k;if(l>=y&&s&&Math.abs(g)>1)return P;if(g&&Math.abs(E)>1)return p;if(l<=m)return k;if(l>y)return P;if(g)return Math.abs(g)>1?p:(i+p+g)%i}},J6=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&J6(e.parentNode.host||e.parentNode,t),t},pS=function(e,t){for(var n=J6(e),r=J6(t),i=0;i=0)return o}return!1},t$=function(e,t,n){var r=X6(e),i=X6(t),o=r[0],a=!1;return i.filter(Boolean).forEach(function(s){a=pS(a||s,s)||a,n.filter(Boolean).forEach(function(l){var d=pS(o,l);d&&(!a||Zm(d,a)?a=d:a=pS(d,a))})}),a},Jle=function(e,t){return e.reduce(function(n,r){return n.concat(Gle(r,t))},[])},eue=function(e){return function(t){var n;return t.autofocus||!!(!((n=jz(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},tue=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(Ble)},nue=function(e,t){var n=document&&E_(),r=k_(e).filter(E3),i=t$(n||e,e,r),o=new Map,a=JT(r,o),s=Q6(r,o).filter(function(y){var b=y.node;return E3(b)});if(!(!s[0]&&(s=a,!s[0]))){var l=JT([i],o).map(function(y){var b=y.node;return b}),d=tue(l,s),p=d.map(function(y){var b=y.node;return b}),g=Qle(p,l,n,t);if(g===e$){var m=QT(a.map(function(y){var b=y.node;return b})).filter(eue(Jle(r,o)));return{node:m&&m.length?eL(m):eL(QT(p))}}return g===void 0?g:d[g]}},rue=function(e){var t=k_(e).filter(E3),n=t$(e,e,t),r=new Map,i=Q6([n],r,!0),o=Q6(t,r).filter(function(a){var s=a.node;return E3(s)}).map(function(a){var s=a.node;return s});return i.map(function(a){var s=a.node,l=a.index;return{node:s,index:l,lockItem:o.indexOf(s)>=0,guard:S_(s)}})},iue=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},gS=0,mS=!1,oue=function(e,t,n){n===void 0&&(n={});var r=nue(e,t);if(!mS&&r){if(gS>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),mS=!0,setTimeout(function(){mS=!1},1);return}gS++,iue(r.node,n.focusOptions),gS--}};const n$=oue;function r$(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var aue=function(){return document&&document.activeElement===document.body},sue=function(){return aue()||Yle()},f0=null,Xp=null,h0=null,Xm=!1,lue=function(){return!0},uue=function(t){return(f0.whiteList||lue)(t)},cue=function(t,n){h0={observerNode:t,portaledElement:n}},due=function(t){return h0&&h0.portaledElement===t};function nL(e,t,n,r){var i=null,o=e;do{var a=r[o];if(a.guard)a.node.dataset.focusAutoGuard&&(i=a);else if(a.lockItem){if(o!==e)return;i=null}else break}while((o+=n)!==t);i&&(i.node.tabIndex=0)}var fue=function(t){return t&&"current"in t?t.current:t},hue=function(t){return t?Boolean(Xm):Xm==="meanwhile"},pue=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},gue=function(t,n){return n.some(function(r){return pue(t,r,r)})},P3=function(){var t=!1;if(f0){var n=f0,r=n.observed,i=n.persistentFocus,o=n.autoFocus,a=n.shards,s=n.crossFrame,l=n.focusOptions,d=r||h0&&h0.portaledElement,p=document&&document.activeElement;if(d){var g=[d].concat(a.map(fue).filter(Boolean));if((!p||uue(p))&&(i||hue(s)||!sue()||!Xp&&o)&&(d&&!(Jz(g)||p&&gue(p,g)||due(p))&&(document&&!Xp&&p&&!o?(p.blur&&p.blur(),document.body.focus()):(t=n$(g,Xp,{focusOptions:l}),h0={})),Xm=!1,Xp=document&&document.activeElement),document){var m=document&&document.activeElement,y=rue(g),b=y.map(function(S){var E=S.node;return E}).indexOf(m);b>-1&&(y.filter(function(S){var E=S.guard,P=S.node;return E&&P.dataset.focusAutoGuard}).forEach(function(S){var E=S.node;return E.removeAttribute("tabIndex")}),nL(b,y.length,1,y),nL(b,-1,-1,y))}}}return t},i$=function(t){P3()&&t&&(t.stopPropagation(),t.preventDefault())},T_=function(){return r$(P3)},mue=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||cue(r,n)},vue=function(){return null},o$=function(){Xm="just",setTimeout(function(){Xm="meanwhile"},0)},yue=function(){document.addEventListener("focusin",i$),document.addEventListener("focusout",T_),window.addEventListener("blur",o$)},bue=function(){document.removeEventListener("focusin",i$),document.removeEventListener("focusout",T_),window.removeEventListener("blur",o$)};function xue(e){return e.filter(function(t){var n=t.disabled;return!n})}function Sue(e){var t=e.slice(-1)[0];t&&!f0&&yue();var n=f0,r=n&&t&&t.id===n.id;f0=t,n&&!r&&(n.onDeactivation(),e.filter(function(i){var o=i.id;return o===n.id}).length||n.returnFocus(!t)),t?(Xp=null,(!r||n.observed!==t.observed)&&t.onActivation(),P3(),r$(P3)):(bue(),Xp=null)}$z.assignSyncMedium(mue);Fz.assignMedium(T_);Ale.assignMedium(function(e){return e({moveFocusInside:n$,focusInside:Jz})});const wue=Mle(xue,Sue)(vue);var a$=C.exports.forwardRef(function(t,n){return w(Bz,{sideCar:wue,ref:n,...t})}),s$=Bz.propTypes||{};s$.sideCar;v_(s$,["sideCar"]);a$.propTypes={};const Cue=a$;var l$=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:i,children:o,isDisabled:a,autoFocus:s,persistentFocus:l,lockFocusAcrossFrames:d}=e,p=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&Uae(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),g=C.exports.useCallback(()=>{var y;(y=n?.current)==null||y.focus()},[n]);return w(Cue,{crossFrame:d,persistentFocus:l,autoFocus:s,disabled:a,onActivation:p,onDeactivation:g,returnFocus:i&&!n,children:o})};l$.displayName="FocusLock";var c5="right-scroll-bar-position",d5="width-before-scroll-bar",_ue="with-scroll-bars-hidden",kue="--removed-body-scroll-bar-size",u$=Dz(),vS=function(){},sb=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:vS,onWheelCapture:vS,onTouchMoveCapture:vS}),i=r[0],o=r[1],a=e.forwardProps,s=e.children,l=e.className,d=e.removeScrollBar,p=e.enabled,g=e.shards,m=e.sideCar,y=e.noIsolation,b=e.inert,S=e.allowPinchZoom,E=e.as,P=E===void 0?"div":E,k=W4(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),L=m,R=Mz([n,t]),N=Tl(Tl({},k),i);return ne(Un,{children:[p&&w(L,{sideCar:u$,removeScrollBar:d,shards:g,noIsolation:y,inert:b,setCallbacks:o,allowPinchZoom:!!S,lockRef:n}),a?C.exports.cloneElement(C.exports.Children.only(s),Tl(Tl({},N),{ref:R})):w(P,{...Tl({},N,{className:l,ref:R}),children:s})]})});sb.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};sb.classNames={fullWidth:d5,zeroRight:c5};var Eue=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function Pue(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=Eue();return t&&e.setAttribute("nonce",t),e}function Tue(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function Lue(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var Aue=function(){var e=0,t=null;return{add:function(n){e==0&&(t=Pue())&&(Tue(t,n),Lue(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},Iue=function(){var e=Aue();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},c$=function(){var e=Iue(),t=function(n){var r=n.styles,i=n.dynamic;return e(r,i),null};return t},Rue={left:0,top:0,right:0,gap:0},yS=function(e){return parseInt(e||"",10)||0},Mue=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],i=t[e==="padding"?"paddingRight":"marginRight"];return[yS(n),yS(r),yS(i)]},Oue=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return Rue;var t=Mue(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},Nue=c$(),Due=function(e,t,n,r){var i=e.left,o=e.top,a=e.right,s=e.gap;return n===void 0&&(n="margin"),` - .`.concat(_ue,` { - overflow: hidden `).concat(r,`; - padding-right: `).concat(s,"px ").concat(r,`; - } - body { - overflow: hidden `).concat(r,`; - overscroll-behavior: contain; - `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` - padding-left: `.concat(i,`px; - padding-top: `).concat(o,`px; - padding-right: `).concat(a,`px; - margin-left:0; - margin-top:0; - margin-right: `).concat(s,"px ").concat(r,`; - `),n==="padding"&&"padding-right: ".concat(s,"px ").concat(r,";")].filter(Boolean).join(""),` - } - - .`).concat(c5,` { - right: `).concat(s,"px ").concat(r,`; - } - - .`).concat(d5,` { - margin-right: `).concat(s,"px ").concat(r,`; - } - - .`).concat(c5," .").concat(c5,` { - right: 0 `).concat(r,`; - } - - .`).concat(d5," .").concat(d5,` { - margin-right: 0 `).concat(r,`; - } - - body { - `).concat(kue,": ").concat(s,`px; - } -`)},zue=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,i=r===void 0?"margin":r,o=C.exports.useMemo(function(){return Oue(i)},[i]);return w(Nue,{styles:Due(o,!t,i,n?"":"!important")})},eC=!1;if(typeof window<"u")try{var uy=Object.defineProperty({},"passive",{get:function(){return eC=!0,!0}});window.addEventListener("test",uy,uy),window.removeEventListener("test",uy,uy)}catch{eC=!1}var _p=eC?{passive:!1}:!1,$ue=function(e){return e.tagName==="TEXTAREA"},d$=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!$ue(e)&&n[t]==="visible")},Fue=function(e){return d$(e,"overflowY")},Bue=function(e){return d$(e,"overflowX")},rL=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=f$(e,n);if(r){var i=h$(e,n),o=i[1],a=i[2];if(o>a)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},Hue=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},Wue=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},f$=function(e,t){return e==="v"?Fue(t):Bue(t)},h$=function(e,t){return e==="v"?Hue(t):Wue(t)},Vue=function(e,t){return e==="h"&&t==="rtl"?-1:1},Uue=function(e,t,n,r,i){var o=Vue(e,window.getComputedStyle(t).direction),a=o*r,s=n.target,l=t.contains(s),d=!1,p=a>0,g=0,m=0;do{var y=h$(e,s),b=y[0],S=y[1],E=y[2],P=S-E-o*b;(b||P)&&f$(e,s)&&(g+=P,m+=b),s=s.parentNode}while(!l&&s!==document.body||l&&(t.contains(s)||t===s));return(p&&(i&&g===0||!i&&a>g)||!p&&(i&&m===0||!i&&-a>m))&&(d=!0),d},cy=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},iL=function(e){return[e.deltaX,e.deltaY]},oL=function(e){return e&&"current"in e?e.current:e},Gue=function(e,t){return e[0]===t[0]&&e[1]===t[1]},jue=function(e){return` - .block-interactivity-`.concat(e,` {pointer-events: none;} - .allow-interactivity-`).concat(e,` {pointer-events: all;} -`)},que=0,kp=[];function Kue(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),i=C.exports.useState(que++)[0],o=C.exports.useState(function(){return c$()})[0],a=C.exports.useRef(e);C.exports.useEffect(function(){a.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(i));var S=S6([e.lockRef.current],(e.shards||[]).map(oL),!0).filter(Boolean);return S.forEach(function(E){return E.classList.add("allow-interactivity-".concat(i))}),function(){document.body.classList.remove("block-interactivity-".concat(i)),S.forEach(function(E){return E.classList.remove("allow-interactivity-".concat(i))})}}},[e.inert,e.lockRef.current,e.shards]);var s=C.exports.useCallback(function(S,E){if("touches"in S&&S.touches.length===2)return!a.current.allowPinchZoom;var P=cy(S),k=n.current,L="deltaX"in S?S.deltaX:k[0]-P[0],R="deltaY"in S?S.deltaY:k[1]-P[1],N,z=S.target,$=Math.abs(L)>Math.abs(R)?"h":"v";if("touches"in S&&$==="h"&&z.type==="range")return!1;var F=rL($,z);if(!F)return!0;if(F?N=$:(N=$==="v"?"h":"v",F=rL($,z)),!F)return!1;if(!r.current&&"changedTouches"in S&&(L||R)&&(r.current=N),!N)return!0;var q=r.current||N;return Uue(q,E,S,q==="h"?L:R,!0)},[]),l=C.exports.useCallback(function(S){var E=S;if(!(!kp.length||kp[kp.length-1]!==o)){var P="deltaY"in E?iL(E):cy(E),k=t.current.filter(function(N){return N.name===E.type&&N.target===E.target&&Gue(N.delta,P)})[0];if(k&&k.should){E.cancelable&&E.preventDefault();return}if(!k){var L=(a.current.shards||[]).map(oL).filter(Boolean).filter(function(N){return N.contains(E.target)}),R=L.length>0?s(E,L[0]):!a.current.noIsolation;R&&E.cancelable&&E.preventDefault()}}},[]),d=C.exports.useCallback(function(S,E,P,k){var L={name:S,delta:E,target:P,should:k};t.current.push(L),setTimeout(function(){t.current=t.current.filter(function(R){return R!==L})},1)},[]),p=C.exports.useCallback(function(S){n.current=cy(S),r.current=void 0},[]),g=C.exports.useCallback(function(S){d(S.type,iL(S),S.target,s(S,e.lockRef.current))},[]),m=C.exports.useCallback(function(S){d(S.type,cy(S),S.target,s(S,e.lockRef.current))},[]);C.exports.useEffect(function(){return kp.push(o),e.setCallbacks({onScrollCapture:g,onWheelCapture:g,onTouchMoveCapture:m}),document.addEventListener("wheel",l,_p),document.addEventListener("touchmove",l,_p),document.addEventListener("touchstart",p,_p),function(){kp=kp.filter(function(S){return S!==o}),document.removeEventListener("wheel",l,_p),document.removeEventListener("touchmove",l,_p),document.removeEventListener("touchstart",p,_p)}},[]);var y=e.removeScrollBar,b=e.inert;return ne(Un,{children:[b?w(o,{styles:jue(i)}):null,y?w(zue,{gapMode:"margin"}):null]})}const Yue=Lle(u$,Kue);var p$=C.exports.forwardRef(function(e,t){return w(sb,{...Tl({},e,{ref:t,sideCar:Yue})})});p$.classNames=sb.classNames;const g$=p$;var Ch=(...e)=>e.filter(Boolean).join(" ");function Tg(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Zue=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},tC=new Zue;function Xue(e,t){C.exports.useEffect(()=>(t&&tC.add(e),()=>{tC.remove(e)}),[t,e])}function Que(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:i=!0,closeOnEsc:o=!0,useInert:a=!0,onOverlayClick:s,onEsc:l}=e,d=C.exports.useRef(null),p=C.exports.useRef(null),[g,m,y]=ece(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Jue(d,t&&a),Xue(d,t);const b=C.exports.useRef(null),S=C.exports.useCallback(F=>{b.current=F.target},[]),E=C.exports.useCallback(F=>{F.key==="Escape"&&(F.stopPropagation(),o&&n?.(),l?.())},[o,n,l]),[P,k]=C.exports.useState(!1),[L,R]=C.exports.useState(!1),N=C.exports.useCallback((F={},q=null)=>({role:"dialog",...F,ref:Vn(q,d),id:g,tabIndex:-1,"aria-modal":!0,"aria-labelledby":P?m:void 0,"aria-describedby":L?y:void 0,onClick:Tg(F.onClick,j=>j.stopPropagation())}),[y,L,g,m,P]),z=C.exports.useCallback(F=>{F.stopPropagation(),b.current===F.target&&(!tC.isTopModal(d)||(i&&n?.(),s?.()))},[n,i,s]),$=C.exports.useCallback((F={},q=null)=>({...F,ref:Vn(q,p),onClick:Tg(F.onClick,z),onKeyDown:Tg(F.onKeyDown,E),onMouseDown:Tg(F.onMouseDown,S)}),[E,S,z]);return{isOpen:t,onClose:n,headerId:m,bodyId:y,setBodyMounted:R,setHeaderMounted:k,dialogRef:d,overlayRef:p,getDialogProps:N,getDialogContainerProps:$}}function Jue(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return Lz(e.current)},[t,e,n])}function ece(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(i=>`${i}-${r}`),[r,t])}var[tce,_h]=Tn({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[nce,xd]=Tn({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),z0=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m,onCloseComplete:y}=e,b=Ui("Modal",e),E={...Que(e),autoFocus:r,trapFocus:i,initialFocusRef:o,finalFocusRef:a,returnFocusOnClose:s,blockScrollOnMount:l,allowPinchZoom:d,preserveScrollBarGap:p,motionPreset:g,lockFocusAcrossFrames:m};return w(nce,{value:E,children:w(tce,{value:b,children:w(Yu,{onExitComplete:y,children:E.isOpen&&w(wh,{...t,children:n})})})})};z0.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};z0.displayName="Modal";var T3=Le((e,t)=>{const{className:n,...r}=e,{bodyId:i,setBodyMounted:o}=xd();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=Ch("chakra-modal__body",n),s=_h();return re.createElement(Ce.div,{ref:t,className:a,id:i,...r,__css:s.body})});T3.displayName="ModalBody";var L_=Le((e,t)=>{const{onClick:n,className:r,...i}=e,{onClose:o}=xd(),a=Ch("chakra-modal__close-btn",r),s=_h();return w(rb,{ref:t,__css:s.closeButton,className:a,onClick:Tg(n,l=>{l.stopPropagation(),o()}),...i})});L_.displayName="ModalCloseButton";function m$(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:i,blockScrollOnMount:o,allowPinchZoom:a,finalFocusRef:s,returnFocusOnClose:l,preserveScrollBarGap:d,lockFocusAcrossFrames:p}=xd(),[g,m]=H8();return C.exports.useEffect(()=>{!g&&m&&setTimeout(m)},[g,m]),w(l$,{autoFocus:t,isDisabled:!n,initialFocusRef:i,finalFocusRef:s,restoreFocus:l,contentRef:r,lockFocusAcrossFrames:p,children:w(g$,{removeScrollBar:!d,allowPinchZoom:a,enabled:o,forwardProps:!0,children:e.children})})}var rce={slideInBottom:{...$6,custom:{offsetY:16,reverse:!0}},slideInRight:{...$6,custom:{offsetX:16,reverse:!0}},scale:{...LD,custom:{initialScale:.95,reverse:!0}},none:{}},ice=Ce(ls.section),v$=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,i=rce[n];return w(ice,{ref:t,...i,...r})});v$.displayName="ModalTransition";var Qm=Le((e,t)=>{const{className:n,children:r,containerProps:i,...o}=e,{getDialogProps:a,getDialogContainerProps:s}=xd(),l=a(o,t),d=s(i),p=Ch("chakra-modal__content",n),g=_h(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...g.dialog},y={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...g.dialogContainer},{motionPreset:b}=xd();return re.createElement(m$,null,re.createElement(Ce.div,{...d,className:"chakra-modal__content-container",tabIndex:-1,__css:y},w(v$,{preset:b,className:p,...l,__css:m,children:r})))});Qm.displayName="ModalContent";var A_=Le((e,t)=>{const{className:n,...r}=e,i=Ch("chakra-modal__footer",n),o=_h(),a={display:"flex",alignItems:"center",justifyContent:"flex-end",...o.footer};return re.createElement(Ce.footer,{ref:t,...r,__css:a,className:i})});A_.displayName="ModalFooter";var I_=Le((e,t)=>{const{className:n,...r}=e,{headerId:i,setHeaderMounted:o}=xd();C.exports.useEffect(()=>(o(!0),()=>o(!1)),[o]);const a=Ch("chakra-modal__header",n),s=_h(),l={flex:0,...s.header};return re.createElement(Ce.header,{ref:t,className:a,id:i,...r,__css:l})});I_.displayName="ModalHeader";var oce=Ce(ls.div),Jm=Le((e,t)=>{const{className:n,transition:r,...i}=e,o=Ch("chakra-modal__overlay",n),a=_h(),s={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...a.overlay},{motionPreset:l}=xd();return w(oce,{...l==="none"?{}:TD,__css:s,ref:t,className:o,...i})});Jm.displayName="ModalOverlay";function ace(e){const{leastDestructiveRef:t,...n}=e;return w(z0,{...n,initialFocusRef:t})}var sce=Le((e,t)=>w(Qm,{ref:t,role:"alertdialog",...e})),[l7e,lce]=Tn(),uce=Ce(AD),cce=Le((e,t)=>{const{className:n,children:r,...i}=e,{getDialogProps:o,getDialogContainerProps:a,isOpen:s}=xd(),l=o(i,t),d=a(),p=Ch("chakra-modal__content",n),g=_h(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...g.dialog},y={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...g.dialogContainer},{placement:b}=lce();return re.createElement(Ce.div,{...d,className:"chakra-modal__content-container",__css:y},w(m$,{children:w(uce,{direction:b,in:s,className:p,...l,__css:m,children:r})}))});cce.displayName="DrawerContent";var aL={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},R_=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??aL.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??aL.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});R_.displayName="Icon";function dce(e,t){const n=Ar(e);C.exports.useEffect(()=>{let r=null;const i=()=>n();return t!==null&&(r=window.setInterval(i,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var y$=(...e)=>e.filter(Boolean).join(" "),bS=e=>e?!0:void 0;function vl(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var fce=e=>w(R_,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),hce=e=>w(R_,{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function sL(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const i=e.current.ownerDocument.defaultView??window,o=Array.isArray(t)?t:[t],a=new i.MutationObserver(s=>{for(const l of s)l.type==="attributes"&&l.attributeName&&o.includes(l.attributeName)&&n(l)});return a.observe(e.current,{attributes:!0,attributeFilter:o}),()=>a.disconnect()})}var pce=50,lL=300;function gce(e,t){const[n,r]=C.exports.useState(!1),[i,o]=C.exports.useState(null),[a,s]=C.exports.useState(!0),l=C.exports.useRef(null),d=()=>clearTimeout(l.current);dce(()=>{i==="increment"&&e(),i==="decrement"&&t()},n?pce:null);const p=C.exports.useCallback(()=>{a&&e(),l.current=setTimeout(()=>{s(!1),r(!0),o("increment")},lL)},[e,a]),g=C.exports.useCallback(()=>{a&&t(),l.current=setTimeout(()=>{s(!1),r(!0),o("decrement")},lL)},[t,a]),m=C.exports.useCallback(()=>{s(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:p,down:g,stop:m,isSpinning:n}}var mce=/^[Ee0-9+\-.]$/;function vce(e){return mce.test(e)}function yce(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function bce(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:i=Number.MIN_SAFE_INTEGER,max:o=Number.MAX_SAFE_INTEGER,step:a=1,isReadOnly:s,isDisabled:l,isRequired:d,isInvalid:p,pattern:g="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:y,id:b,onChange:S,precision:E,name:P,"aria-describedby":k,"aria-label":L,"aria-labelledby":R,onFocus:N,onBlur:z,onInvalid:$,getAriaValueText:F,isValidCharacter:q,format:j,parse:Y,...ve}=e,ge=Ar(N),Se=Ar(z),_e=Ar($),we=Ar(q??vce),J=Ar(F),G=Boe(e),{update:te,increment:Q,decrement:W}=G,[se,de]=C.exports.useState(!1),xe=!(s||l),ze=C.exports.useRef(null),Me=C.exports.useRef(null),Ue=C.exports.useRef(null),Ee=C.exports.useRef(null),Ve=C.exports.useCallback(Pe=>Pe.split("").filter(we).join(""),[we]),ot=C.exports.useCallback(Pe=>Y?.(Pe)??Pe,[Y]),pt=C.exports.useCallback(Pe=>(j?.(Pe)??Pe).toString(),[j]);I0(()=>{(G.valueAsNumber>o||G.valueAsNumber{if(!ze.current)return;if(ze.current.value!=G.value){const Pt=ot(ze.current.value);G.setValue(Ve(Pt))}},[ot,Ve]);const Wt=C.exports.useCallback((Pe=a)=>{xe&&Q(Pe)},[Q,xe,a]),Dt=C.exports.useCallback((Pe=a)=>{xe&&W(Pe)},[W,xe,a]),Oe=gce(Wt,Dt);sL(Ue,"disabled",Oe.stop,Oe.isSpinning),sL(Ee,"disabled",Oe.stop,Oe.isSpinning);const nt=C.exports.useCallback(Pe=>{if(Pe.nativeEvent.isComposing)return;const en=ot(Pe.currentTarget.value);te(Ve(en)),Me.current={start:Pe.currentTarget.selectionStart,end:Pe.currentTarget.selectionEnd}},[te,Ve,ot]),mt=C.exports.useCallback(Pe=>{var Pt;ge?.(Pe),Me.current&&(Pe.target.selectionStart=Me.current.start??((Pt=Pe.currentTarget.value)==null?void 0:Pt.length),Pe.currentTarget.selectionEnd=Me.current.end??Pe.currentTarget.selectionStart)},[ge]),st=C.exports.useCallback(Pe=>{if(Pe.nativeEvent.isComposing)return;yce(Pe,we)||Pe.preventDefault();const Pt=vt(Pe)*a,en=Pe.key,je={ArrowUp:()=>Wt(Pt),ArrowDown:()=>Dt(Pt),Home:()=>te(i),End:()=>te(o)}[en];je&&(Pe.preventDefault(),je(Pe))},[we,a,Wt,Dt,te,i,o]),vt=Pe=>{let Pt=1;return(Pe.metaKey||Pe.ctrlKey)&&(Pt=.1),Pe.shiftKey&&(Pt=10),Pt},yn=C.exports.useMemo(()=>{const Pe=J?.(G.value);if(Pe!=null)return Pe;const Pt=G.value.toString();return Pt||void 0},[G.value,J]),yt=C.exports.useCallback(()=>{let Pe=G.value;Pe!==""&&(G.valueAsNumbero&&(Pe=o),G.cast(Pe))},[G,o,i]),Vt=C.exports.useCallback(()=>{de(!1),n&&yt()},[n,de,yt]),on=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var Pe;(Pe=ze.current)==null||Pe.focus()})},[t]),zt=C.exports.useCallback(Pe=>{Pe.preventDefault(),Oe.up(),on()},[on,Oe]),Ne=C.exports.useCallback(Pe=>{Pe.preventDefault(),Oe.down(),on()},[on,Oe]);U6(()=>ze.current,"wheel",Pe=>{var Pt;const jn=(((Pt=ze.current)==null?void 0:Pt.ownerDocument)??document).activeElement===ze.current;if(!y||!jn)return;Pe.preventDefault();const je=vt(Pe)*a,At=Math.sign(Pe.deltaY);At===-1?Wt(je):At===1&&Dt(je)},{passive:!1});const tt=C.exports.useCallback((Pe={},Pt=null)=>{const en=l||r&&G.isAtMax;return{...Pe,ref:Vn(Pt,Ue),role:"button",tabIndex:-1,onPointerDown:vl(Pe.onPointerDown,jn=>{en||zt(jn)}),onPointerLeave:vl(Pe.onPointerLeave,Oe.stop),onPointerUp:vl(Pe.onPointerUp,Oe.stop),disabled:en,"aria-disabled":bS(en)}},[G.isAtMax,r,zt,Oe.stop,l]),jt=C.exports.useCallback((Pe={},Pt=null)=>{const en=l||r&&G.isAtMin;return{...Pe,ref:Vn(Pt,Ee),role:"button",tabIndex:-1,onPointerDown:vl(Pe.onPointerDown,jn=>{en||Ne(jn)}),onPointerLeave:vl(Pe.onPointerLeave,Oe.stop),onPointerUp:vl(Pe.onPointerUp,Oe.stop),disabled:en,"aria-disabled":bS(en)}},[G.isAtMin,r,Ne,Oe.stop,l]),Ut=C.exports.useCallback((Pe={},Pt=null)=>({name:P,inputMode:m,type:"text",pattern:g,"aria-labelledby":R,"aria-label":L,"aria-describedby":k,id:b,disabled:l,...Pe,readOnly:Pe.readOnly??s,"aria-readonly":Pe.readOnly??s,"aria-required":Pe.required??d,required:Pe.required??d,ref:Vn(ze,Pt),value:pt(G.value),role:"spinbutton","aria-valuemin":i,"aria-valuemax":o,"aria-valuenow":Number.isNaN(G.valueAsNumber)?void 0:G.valueAsNumber,"aria-invalid":bS(p??G.isOutOfRange),"aria-valuetext":yn,autoComplete:"off",autoCorrect:"off",onChange:vl(Pe.onChange,nt),onKeyDown:vl(Pe.onKeyDown,st),onFocus:vl(Pe.onFocus,mt,()=>de(!0)),onBlur:vl(Pe.onBlur,Se,Vt)}),[P,m,g,R,L,pt,k,b,l,d,s,p,G.value,G.valueAsNumber,G.isOutOfRange,i,o,yn,nt,st,mt,Se,Vt]);return{value:pt(G.value),valueAsNumber:G.valueAsNumber,isFocused:se,isDisabled:l,isReadOnly:s,getIncrementButtonProps:tt,getDecrementButtonProps:jt,getInputProps:Ut,htmlProps:ve}}var[xce,lb]=Tn({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Sce,M_]=Tn({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),b$=Le(function(t,n){const r=Ui("NumberInput",t),i=_n(t),o=J8(i),{htmlProps:a,...s}=bce(o),l=C.exports.useMemo(()=>s,[s]);return re.createElement(Sce,{value:l},re.createElement(xce,{value:r},re.createElement(Ce.div,{...a,ref:n,className:y$("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});b$.displayName="NumberInput";var wce=Le(function(t,n){const r=lb();return re.createElement(Ce.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});wce.displayName="NumberInputStepper";var x$=Le(function(t,n){const{getInputProps:r}=M_(),i=r(t,n),o=lb();return re.createElement(Ce.input,{...i,className:y$("chakra-numberinput__field",t.className),__css:{width:"100%",...o.field}})});x$.displayName="NumberInputField";var S$=Ce("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),w$=Le(function(t,n){const r=lb(),{getDecrementButtonProps:i}=M_(),o=i(t,n);return w(S$,{...o,__css:r.stepper,children:t.children??w(fce,{})})});w$.displayName="NumberDecrementStepper";var C$=Le(function(t,n){const{getIncrementButtonProps:r}=M_(),i=r(t,n),o=lb();return w(S$,{...i,__css:o.stepper,children:t.children??w(hce,{})})});C$.displayName="NumberIncrementStepper";var Av=(...e)=>e.filter(Boolean).join(" ");function Cce(e,...t){return _ce(e)?e(...t):e}var _ce=e=>typeof e=="function";function yl(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function kce(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[Ece,kh]=Tn({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[Pce,Iv]=Tn({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Ep={click:"click",hover:"hover"};function Tce(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:i,returnFocusOnClose:o=!0,autoFocus:a=!0,arrowSize:s,arrowShadowColor:l,trigger:d=Ep.click,openDelay:p=200,closeDelay:g=200,isLazy:m,lazyBehavior:y="unmount",computePositionOnMount:b,...S}=e,{isOpen:E,onClose:P,onOpen:k,onToggle:L}=kz(e),R=C.exports.useRef(null),N=C.exports.useRef(null),z=C.exports.useRef(null),$=C.exports.useRef(!1),F=C.exports.useRef(!1);E&&(F.current=!0);const[q,j]=C.exports.useState(!1),[Y,ve]=C.exports.useState(!1),ge=C.exports.useId(),Se=i??ge,[_e,we,J,G]=["popover-trigger","popover-content","popover-header","popover-body"].map(nt=>`${nt}-${Se}`),{referenceRef:te,getArrowProps:Q,getPopperProps:W,getArrowInnerProps:se,forceUpdate:de}=_z({...S,enabled:E||!!b}),xe=Uoe({isOpen:E,ref:z});Zoe({enabled:E,ref:N}),Koe(z,{focusRef:N,visible:E,shouldFocus:o&&d===Ep.click}),Qoe(z,{focusRef:r,visible:E,shouldFocus:a&&d===Ep.click});const ze=Ez({wasSelected:F.current,enabled:m,mode:y,isSelected:xe.present}),Me=C.exports.useCallback((nt={},mt=null)=>{const st={...nt,style:{...nt.style,transformOrigin:Qr.transformOrigin.varRef,[Qr.arrowSize.var]:s?`${s}px`:void 0,[Qr.arrowShadowColor.var]:l},ref:Vn(z,mt),children:ze?nt.children:null,id:we,tabIndex:-1,role:"dialog",onKeyDown:yl(nt.onKeyDown,vt=>{n&&vt.key==="Escape"&&P()}),onBlur:yl(nt.onBlur,vt=>{const yn=uL(vt),yt=xS(z.current,yn),Vt=xS(N.current,yn);E&&t&&(!yt&&!Vt)&&P()}),"aria-labelledby":q?J:void 0,"aria-describedby":Y?G:void 0};return d===Ep.hover&&(st.role="tooltip",st.onMouseEnter=yl(nt.onMouseEnter,()=>{$.current=!0}),st.onMouseLeave=yl(nt.onMouseLeave,vt=>{vt.nativeEvent.relatedTarget!==null&&($.current=!1,setTimeout(P,g))})),st},[ze,we,q,J,Y,G,d,n,P,E,t,g,l,s]),Ue=C.exports.useCallback((nt={},mt=null)=>W({...nt,style:{visibility:E?"visible":"hidden",...nt.style}},mt),[E,W]),Ee=C.exports.useCallback((nt,mt=null)=>({...nt,ref:Vn(mt,R,te)}),[R,te]),Ve=C.exports.useRef(),ot=C.exports.useRef(),pt=C.exports.useCallback(nt=>{R.current==null&&te(nt)},[te]),Wt=C.exports.useCallback((nt={},mt=null)=>{const st={...nt,ref:Vn(N,mt,pt),id:_e,"aria-haspopup":"dialog","aria-expanded":E,"aria-controls":we};return d===Ep.click&&(st.onClick=yl(nt.onClick,L)),d===Ep.hover&&(st.onFocus=yl(nt.onFocus,()=>{Ve.current===void 0&&k()}),st.onBlur=yl(nt.onBlur,vt=>{const yn=uL(vt),yt=!xS(z.current,yn);E&&t&&yt&&P()}),st.onKeyDown=yl(nt.onKeyDown,vt=>{vt.key==="Escape"&&P()}),st.onMouseEnter=yl(nt.onMouseEnter,()=>{$.current=!0,Ve.current=window.setTimeout(k,p)}),st.onMouseLeave=yl(nt.onMouseLeave,()=>{$.current=!1,Ve.current&&(clearTimeout(Ve.current),Ve.current=void 0),ot.current=window.setTimeout(()=>{$.current===!1&&P()},g)})),st},[_e,E,we,d,pt,L,k,t,P,p,g]);C.exports.useEffect(()=>()=>{Ve.current&&clearTimeout(Ve.current),ot.current&&clearTimeout(ot.current)},[]);const Dt=C.exports.useCallback((nt={},mt=null)=>({...nt,id:J,ref:Vn(mt,st=>{j(!!st)})}),[J]),Oe=C.exports.useCallback((nt={},mt=null)=>({...nt,id:G,ref:Vn(mt,st=>{ve(!!st)})}),[G]);return{forceUpdate:de,isOpen:E,onAnimationComplete:xe.onComplete,onClose:P,getAnchorProps:Ee,getArrowProps:Q,getArrowInnerProps:se,getPopoverPositionerProps:Ue,getPopoverProps:Me,getTriggerProps:Wt,getHeaderProps:Dt,getBodyProps:Oe}}function xS(e,t){return e===t||e?.contains(t)}function uL(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function ub(e){const t=Ui("Popover",e),{children:n,...r}=_n(e),i=q0(),o=Tce({...r,direction:i.direction});return w(Ece,{value:o,children:w(Pce,{value:t,children:Cce(n,{isOpen:o.isOpen,onClose:o.onClose,forceUpdate:o.forceUpdate})})})}ub.displayName="Popover";function cb(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:i,getArrowInnerProps:o}=kh(),a=Iv(),s=t??n??r;return re.createElement(Ce.div,{...i(),className:"chakra-popover__arrow-positioner"},re.createElement(Ce.div,{className:Av("chakra-popover__arrow",e.className),...o(e),__css:{...a.arrow,"--popper-arrow-bg":s?`colors.${s}, ${s}`:void 0}}))}cb.displayName="PopoverArrow";var Lce=Le(function(t,n){const{getBodyProps:r}=kh(),i=Iv();return re.createElement(Ce.div,{...r(t,n),className:Av("chakra-popover__body",t.className),__css:i.body})});Lce.displayName="PopoverBody";var Ace=Le(function(t,n){const{onClose:r}=kh(),i=Iv();return w(rb,{size:"sm",onClick:r,className:Av("chakra-popover__close-btn",t.className),__css:i.closeButton,ref:n,...t})});Ace.displayName="PopoverCloseButton";function Ice(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var Rce={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},Mce=ls(Ce.section),O_=Le(function(t,n){const{isOpen:r}=kh();return re.createElement(Mce,{ref:n,variants:Ice(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});O_.defaultProps={variants:Rce};O_.displayName="PopoverTransition";var db=Le(function(t,n){const{rootProps:r,...i}=t,{getPopoverProps:o,getPopoverPositionerProps:a,onAnimationComplete:s}=kh(),l=Iv(),d={position:"relative",display:"flex",flexDirection:"column",...l.content};return re.createElement(Ce.div,{...a(r),__css:l.popper,className:"chakra-popover__popper"},w(O_,{...o(i,n),onAnimationComplete:kce(s,i.onAnimationComplete),className:Av("chakra-popover__content",t.className),__css:d}))});db.displayName="PopoverContent";var _$=Le(function(t,n){const{getHeaderProps:r}=kh(),i=Iv();return re.createElement(Ce.header,{...r(t,n),className:Av("chakra-popover__header",t.className),__css:i.header})});_$.displayName="PopoverHeader";function fb(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=kh();return C.exports.cloneElement(t,n(t.props,t.ref))}fb.displayName="PopoverTrigger";function Oce(e,t,n){return(e-t)*100/(n-t)}yv({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});yv({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var Nce=yv({"0%":{left:"-40%"},"100%":{left:"100%"}}),Dce=yv({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function zce(e){const{value:t=0,min:n,max:r,valueText:i,getValueText:o,isIndeterminate:a}=e,s=Oce(t,n,r);return{bind:{"data-indeterminate":a?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":a?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof o=="function"?o(t,s):i})(),role:"progressbar"},percent:s,value:t}}var[$ce,Fce]=Tn({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Bce=e=>{const{min:t,max:n,value:r,isIndeterminate:i,...o}=e,a=zce({value:r,min:t,max:n,isIndeterminate:i}),s=Fce(),l={height:"100%",...s.filledTrack};return re.createElement(Ce.div,{style:{width:`${a.percent}%`,...o.style},...a.bind,...o,__css:l})},k$=e=>{var t;const{value:n,min:r=0,max:i=100,hasStripe:o,isAnimated:a,children:s,borderRadius:l,isIndeterminate:d,"aria-label":p,"aria-labelledby":g,...m}=_n(e),y=Ui("Progress",e),b=l??((t=y.track)==null?void 0:t.borderRadius),S={animation:`${Dce} 1s linear infinite`},k={...!d&&o&&a&&S,...d&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${Nce} 1s ease infinite normal none running`}},L={overflow:"hidden",position:"relative",...y.track};return re.createElement(Ce.div,{borderRadius:b,__css:L,...m},ne($ce,{value:y,children:[w(Bce,{"aria-label":p,"aria-labelledby":g,min:r,max:i,value:n,isIndeterminate:d,css:k,borderRadius:b}),s]}))};k$.displayName="Progress";var Hce=Ce("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});Hce.displayName="CircularProgressLabel";var Wce=(...e)=>e.filter(Boolean).join(" "),Vce=e=>e?"":void 0;function Uce(e,t){const n={},r={};for(const[i,o]of Object.entries(e))t.includes(i)?n[i]=o:r[i]=o;return[n,r]}var E$=Le(function(t,n){const{children:r,placeholder:i,className:o,...a}=t;return re.createElement(Ce.select,{...a,ref:n,className:Wce("chakra-select",o)},i&&w("option",{value:"",children:i}),r)});E$.displayName="SelectField";var P$=Le((e,t)=>{var n;const r=Ui("Select",e),{rootProps:i,placeholder:o,icon:a,color:s,height:l,h:d,minH:p,minHeight:g,iconColor:m,iconSize:y,...b}=_n(e),[S,E]=Uce(b,JZ),P=Q8(E),k={width:"100%",height:"fit-content",position:"relative",color:s},L={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return re.createElement(Ce.div,{className:"chakra-select__wrapper",__css:k,...S,...i},w(E$,{ref:t,height:d??l,minH:p??g,placeholder:o,...P,__css:L,children:e.children}),w(T$,{"data-disabled":Vce(P.disabled),...(m||s)&&{color:m||s},__css:r.icon,...y&&{fontSize:y},children:a}))});P$.displayName="Select";var Gce=e=>w("svg",{viewBox:"0 0 24 24",...e,children:w("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),jce=Ce("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),T$=e=>{const{children:t=w(Gce,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return w(jce,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};T$.displayName="SelectIcon";function qce(e,t,n,r){return e.addEventListener(t,n,r),()=>{e.removeEventListener(t,n,r)}}function Kce(e){const t=Zce(e);return typeof t.PointerEvent<"u"&&e instanceof t.PointerEvent?e.pointerType==="mouse":e instanceof t.MouseEvent}function L$(e){return!!e.touches}function Yce(e){return L$(e)&&e.touches.length>1}function Zce(e){return e.view??window}function Xce(e,t="page"){const n=e.touches[0]||e.changedTouches[0];return{x:n[`${t}X`],y:n[`${t}Y`]}}function Qce(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function A$(e,t="page"){return L$(e)?Xce(e,t):Qce(e,t)}function Jce(e){return t=>{const n=Kce(t);(!n||n&&t.button===0)&&e(t)}}function ede(e,t=!1){function n(i){e(i,{point:A$(i)})}return t?Jce(n):n}function f5(e,t,n,r){return qce(e,t,ede(n,t==="pointerdown"),r)}var tde=class{history=[];startEvent=null;lastEvent=null;lastEventInfo=null;handlers={};removeListeners=()=>{};threshold=3;win;constructor(e,t,n){if(this.win=e.view??window,Yce(e))return;this.handlers=t,n&&(this.threshold=n),e.stopPropagation(),e.preventDefault();const r={point:A$(e)},{timestamp:i}=uP();this.history=[{...r.point,timestamp:i}];const{onSessionStart:o}=t;o?.(e,SS(r,this.history)),this.removeListeners=ide(f5(this.win,"pointermove",this.onPointerMove),f5(this.win,"pointerup",this.onPointerUp),f5(this.win,"pointercancel",this.onPointerUp))}updatePoint=()=>{if(!(this.lastEvent&&this.lastEventInfo))return;const e=SS(this.lastEventInfo,this.history),t=this.startEvent!==null,n=ode(e.offset,{x:0,y:0})>=this.threshold;if(!t&&!n)return;const{timestamp:r}=uP();this.history.push({...e.point,timestamp:r});const{onStart:i,onMove:o}=this.handlers;t||(i?.(this.lastEvent,e),this.startEvent=this.lastEvent),o?.(this.lastEvent,e)};onPointerMove=(e,t)=>{this.lastEvent=e,this.lastEventInfo=t,uQ.update(this.updatePoint,!0)};onPointerUp=(e,t)=>{const n=SS(t,this.history),{onEnd:r,onSessionEnd:i}=this.handlers;i?.(e,n),this.end(),!(!r||!this.startEvent)&&r?.(e,n)};updateHandlers(e){this.handlers=e}end(){var e;(e=this.removeListeners)==null||e.call(this),cQ.update(this.updatePoint)}};function cL(e,t){return{x:e.x-t.x,y:e.y-t.y}}function SS(e,t){return{point:e.point,delta:cL(e.point,t[t.length-1]),offset:cL(e.point,t[0]),velocity:rde(t,.1)}}var nde=e=>e*1e3;function rde(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const i=e[e.length-1];for(;n>=0&&(r=e[n],!(i.timestamp-r.timestamp>nde(t)));)n--;if(!r)return{x:0,y:0};const o=(i.timestamp-r.timestamp)/1e3;if(o===0)return{x:0,y:0};const a={x:(i.x-r.x)/o,y:(i.y-r.y)/o};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}function ide(...e){return t=>e.reduce((n,r)=>r(n),t)}function wS(e,t){return Math.abs(e-t)}function dL(e){return"x"in e&&"y"in e}function ode(e,t){if(typeof e=="number"&&typeof t=="number")return wS(e,t);if(dL(e)&&dL(t)){const n=wS(e.x,t.x),r=wS(e.y,t.y);return Math.sqrt(n**2+r**2)}return 0}function I$(e,t){const{onPan:n,onPanStart:r,onPanEnd:i,onPanSessionStart:o,onPanSessionEnd:a,threshold:s}=t,l=Boolean(n||r||i||o||a),d=C.exports.useRef(null),p={onSessionStart:o,onSessionEnd:a,onStart:r,onMove:n,onEnd(m,y){d.current=null,i?.(m,y)}};C.exports.useEffect(()=>{var m;(m=d.current)==null||m.updateHandlers(p)});function g(m){d.current=new tde(m,p,s)}C.exports.useEffect(()=>{const m=e.current;if(!(!m||!l))return f5(m,"pointerdown",g)},[l]),C.exports.useEffect(()=>()=>{var m;(m=d.current)==null||m.end(),d.current=null},[])}function ade(e,t){if(!e){t(void 0);return}t({width:e.offsetWidth,height:e.offsetHeight});const n=e.ownerDocument.defaultView??window,r=new n.ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const[o]=i;let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;t({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}var sde=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect;function lde(e,t){var n;if(!e||!e.parentElement)return;const r=((n=e.ownerDocument)==null?void 0:n.defaultView)??window,i=new r.MutationObserver(()=>{t()});return i.observe(e.parentElement,{childList:!0}),()=>{i.disconnect()}}function R$({getNodes:e,observeMutation:t=!0}){const[n,r]=C.exports.useState([]),[i,o]=C.exports.useState(0);return sde(()=>{const a=e(),s=a.map((l,d)=>ade(l,p=>{r(g=>[...g.slice(0,d),p,...g.slice(d+1)])}));if(t){const l=a[0];s.push(lde(l,()=>{o(d=>d+1)}))}return()=>{s.forEach(l=>{l?.()})}},[i]),n}function ude(e){return typeof e=="object"&&e!==null&&"current"in e}function cde(e){const[t]=R$({observeMutation:!1,getNodes(){return[ude(e)?e.current:e]}});return t}var dde=Object.create,M$=Object.defineProperty,fde=Object.getOwnPropertyDescriptor,N_=Object.getOwnPropertyNames,hde=Object.getPrototypeOf,pde=Object.prototype.hasOwnProperty,gde=(e,t)=>function(){return e&&(t=(0,e[N_(e)[0]])(e=0)),t},mde=(e,t)=>function(){return t||(0,e[N_(e)[0]])((t={exports:{}}).exports,t),t.exports},vde=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of N_(t))!pde.call(e,i)&&i!==n&&M$(e,i,{get:()=>t[i],enumerable:!(r=fde(t,i))||r.enumerable});return e},yde=(e,t,n)=>(n=e!=null?dde(hde(e)):{},vde(t||!e||!e.__esModule?M$(n,"default",{value:e,enumerable:!0}):n,e)),Vs=gde({"../../../react-shim.js"(){}}),bde=mde({"../../../node_modules/.pnpm/lodash.mergewith@4.6.2/node_modules/lodash.mergewith/index.js"(e,t){Vs();var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",l="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",g="[object Date]",m="[object Error]",y="[object Function]",b="[object GeneratorFunction]",S="[object Map]",E="[object Number]",P="[object Null]",k="[object Object]",L="[object Proxy]",R="[object RegExp]",N="[object Set]",z="[object String]",$="[object Undefined]",F="[object WeakMap]",q="[object ArrayBuffer]",j="[object DataView]",Y="[object Float32Array]",ve="[object Float64Array]",ge="[object Int8Array]",Se="[object Int16Array]",_e="[object Int32Array]",we="[object Uint8Array]",J="[object Uint8ClampedArray]",G="[object Uint16Array]",te="[object Uint32Array]",Q=/[\\^$.*+?()[\]{}|]/g,W=/^\[object .+?Constructor\]$/,se=/^(?:0|[1-9]\d*)$/,de={};de[Y]=de[ve]=de[ge]=de[Se]=de[_e]=de[we]=de[J]=de[G]=de[te]=!0,de[s]=de[l]=de[q]=de[p]=de[j]=de[g]=de[m]=de[y]=de[S]=de[E]=de[k]=de[R]=de[N]=de[z]=de[F]=!1;var xe=typeof global=="object"&&global&&global.Object===Object&&global,ze=typeof self=="object"&&self&&self.Object===Object&&self,Me=xe||ze||Function("return this")(),Ue=typeof e=="object"&&e&&!e.nodeType&&e,Ee=Ue&&typeof t=="object"&&t&&!t.nodeType&&t,Ve=Ee&&Ee.exports===Ue,ot=Ve&&xe.process,pt=function(){try{var I=Ee&&Ee.require&&Ee.require("util").types;return I||ot&&ot.binding&&ot.binding("util")}catch{}}(),Wt=pt&&pt.isTypedArray;function Dt(I,D,U){switch(U.length){case 0:return I.call(D);case 1:return I.call(D,U[0]);case 2:return I.call(D,U[0],U[1]);case 3:return I.call(D,U[0],U[1],U[2])}return I.apply(D,U)}function Oe(I,D){for(var U=-1,me=Array(I);++U-1}function Bd(I,D){var U=this.__data__,me=ji(U,I);return me<0?(++this.size,U.push([I,D])):U[me][1]=D,this}cr.prototype.clear=Zl,cr.prototype.delete=Fd,cr.prototype.get=qs,cr.prototype.has=Xl,cr.prototype.set=Bd;function Ci(I){var D=-1,U=I==null?0:I.length;for(this.clear();++D1?U[Xe-1]:void 0,Ke=Xe>2?U[2]:void 0;for(ft=I.length>3&&typeof ft=="function"?(Xe--,ft):void 0,Ke&&ac(U[0],U[1],Ke)&&(ft=Xe<3?void 0:ft,Xe=1),D=Object(D);++me-1&&I%1==0&&I0){if(++D>=i)return arguments[0]}else D=0;return I.apply(void 0,arguments)}}function Xs(I){if(I!=null){try{return on.call(I)}catch{}try{return I+""}catch{}}return""}function ki(I,D){return I===D||I!==I&&D!==D}var ps=La(function(){return arguments}())?La:function(I){return pn(I)&&zt.call(I,"callee")&&!Be.call(I,"callee")},Jo=Array.isArray;function It(I){return I!=null&&ru(I.length)&&!Na(I)}function sc(I){return pn(I)&&It(I)}var gs=tn||Jd;function Na(I){if(!Or(I))return!1;var D=oo(I);return D==y||D==b||D==d||D==L}function ru(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=a}function Or(I){var D=typeof I;return I!=null&&(D=="object"||D=="function")}function pn(I){return I!=null&&typeof I=="object"}function iu(I){if(!pn(I)||oo(I)!=k)return!1;var D=je(I);if(D===null)return!0;var U=zt.call(D,"constructor")&&D.constructor;return typeof U=="function"&&U instanceof U&&on.call(U)==jt}var ou=Wt?nt(Wt):Ys;function au(I){return Mr(I,su(I))}function su(I){return It(I)?Zd(I,!0):Aa(I)}var an=Qo(function(I,D,U,me){qi(I,D,U,me)});function Ot(I){return function(){return I}}function lu(I){return I}function Jd(){return!1}t.exports=an}});Vs();Vs();Vs();yde(bde());Vs();Vs();Vs();var Xa=e=>e?"":void 0,p0=e=>e?!0:void 0,Ad=(...e)=>e.filter(Boolean).join(" ");function g0(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}Object.freeze(["base","sm","md","lg","xl","2xl"]);Vs();Vs();function xde(e){return{root:`slider-root-${e}`,getThumb:t=>`slider-thumb-${e}-${t}`,getInput:t=>`slider-input-${e}-${t}`,track:`slider-track-${e}`,innerTrack:`slider-filled-track-${e}`,getMarker:t=>`slider-marker-${e}-${t}`,output:`slider-output-${e}`}}function Lg(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}var h5={width:0,height:0},dy=e=>e||h5;function O$(e){const{orientation:t,thumbPercents:n,thumbRects:r,isReversed:i}=e,o=S=>{const E=r[S]??h5;return{position:"absolute",userSelect:"none",WebkitUserSelect:"none",MozUserSelect:"none",msUserSelect:"none",touchAction:"none",...Lg({orientation:t,vertical:{bottom:`calc(${n[S]}% - ${E.height/2}px)`},horizontal:{left:`calc(${n[S]}% - ${E.width/2}px)`}})}},a=t==="vertical"?r.reduce((S,E)=>dy(S).height>dy(E).height?S:E,h5):r.reduce((S,E)=>dy(S).width>dy(E).width?S:E,h5),s={position:"relative",touchAction:"none",WebkitTapHighlightColor:"rgba(0,0,0,0)",userSelect:"none",outline:0,...Lg({orientation:t,vertical:a?{paddingLeft:a.width/2,paddingRight:a.width/2}:{},horizontal:a?{paddingTop:a.height/2,paddingBottom:a.height/2}:{}})},l={position:"absolute",...Lg({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",height:"100%"},horizontal:{top:"50%",transform:"translateY(-50%)",width:"100%"}})},d=n.length===1,p=[0,i?100-n[0]:n[0]],g=d?p:n;let m=g[0];!d&&i&&(m=100-m);const y=Math.abs(g[g.length-1]-g[0]),b={...l,...Lg({orientation:t,vertical:i?{height:`${y}%`,top:`${m}%`}:{height:`${y}%`,bottom:`${m}%`},horizontal:i?{width:`${y}%`,right:`${m}%`}:{width:`${y}%`,left:`${m}%`}})};return{trackStyle:l,innerTrackStyle:b,rootStyle:s,getThumbStyle:o}}function N$(e){const{isReversed:t,direction:n,orientation:r}=e;return n==="ltr"||r==="vertical"?t:!t}function Sde(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:S,"aria-valuetext":E,"aria-label":P,"aria-labelledby":k,name:L,focusThumbOnChange:R=!0,minStepsBetweenThumbs:N=0,...z}=e,$=Ar(m),F=Ar(y),q=Ar(S),j=N$({isReversed:a,direction:s,orientation:l}),[Y,ve]=D4({value:i,defaultValue:o??[25,75],onChange:r});if(!Array.isArray(Y))throw new TypeError(`[range-slider] You passed an invalid value for \`value\` or \`defaultValue\`, expected \`Array\` but got \`${typeof Y}\``);const[ge,Se]=C.exports.useState(!1),[_e,we]=C.exports.useState(!1),[J,G]=C.exports.useState(-1),te=!(p||g),Q=C.exports.useRef(Y),W=Y.map(Be=>c0(Be,t,n)),se=N*b,de=wde(W,t,n,se),xe=C.exports.useRef({eventSource:null,value:[],valueBounds:[]});xe.current.value=W,xe.current.valueBounds=de;const ze=W.map(Be=>n-Be+t),Ue=(j?ze:W).map(Be=>C3(Be,t,n)),Ee=l==="vertical",Ve=C.exports.useRef(null),ot=C.exports.useRef(null),pt=R$({getNodes(){const Be=ot.current,ct=Be?.querySelectorAll("[role=slider]");return ct?Array.from(ct):[]}}),Wt=C.exports.useId(),Oe=xde(d??Wt),nt=C.exports.useCallback(Be=>{var ct;if(!Ve.current)return;xe.current.eventSource="pointer";const qe=Ve.current.getBoundingClientRect(),{clientX:St,clientY:tn}=((ct=Be.touches)==null?void 0:ct[0])??Be,Qn=Ee?qe.bottom-tn:St-qe.left,Cr=Ee?qe.height:qe.width;let Gr=Qn/Cr;return j&&(Gr=1-Gr),qD(Gr,t,n)},[Ee,j,n,t]),mt=(n-t)/10,st=b||(n-t)/100,vt=C.exports.useMemo(()=>({setValueAtIndex(Be,ct){if(!te)return;const qe=xe.current.valueBounds[Be];ct=parseFloat(V6(ct,qe.min,st)),ct=c0(ct,qe.min,qe.max);const St=[...xe.current.value];St[Be]=ct,ve(St)},setActiveIndex:G,stepUp(Be,ct=st){const qe=xe.current.value[Be],St=j?qe-ct:qe+ct;vt.setValueAtIndex(Be,St)},stepDown(Be,ct=st){const qe=xe.current.value[Be],St=j?qe+ct:qe-ct;vt.setValueAtIndex(Be,St)},reset(){ve(Q.current)}}),[st,j,ve,te]),yn=C.exports.useCallback(Be=>{const ct=Be.key,St={ArrowRight:()=>vt.stepUp(J),ArrowUp:()=>vt.stepUp(J),ArrowLeft:()=>vt.stepDown(J),ArrowDown:()=>vt.stepDown(J),PageUp:()=>vt.stepUp(J,mt),PageDown:()=>vt.stepDown(J,mt),Home:()=>{const{min:tn}=de[J];vt.setValueAtIndex(J,tn)},End:()=>{const{max:tn}=de[J];vt.setValueAtIndex(J,tn)}}[ct];St&&(Be.preventDefault(),Be.stopPropagation(),St(Be),xe.current.eventSource="keyboard")},[vt,J,mt,de]),{getThumbStyle:yt,rootStyle:Vt,trackStyle:on,innerTrackStyle:zt}=C.exports.useMemo(()=>O$({isReversed:j,orientation:l,thumbRects:pt,thumbPercents:Ue}),[j,l,Ue,pt]),Ne=C.exports.useCallback(Be=>{var ct;const qe=Be??J;if(qe!==-1&&R){const St=Oe.getThumb(qe),tn=(ct=ot.current)==null?void 0:ct.ownerDocument.getElementById(St);tn&&setTimeout(()=>tn.focus())}},[R,J,Oe]);I0(()=>{xe.current.eventSource==="keyboard"&&F?.(xe.current.value)},[W,F]);const tt=Be=>{const ct=nt(Be)||0,qe=xe.current.value.map(Gr=>Math.abs(Gr-ct)),St=Math.min(...qe);let tn=qe.indexOf(St);const Qn=qe.filter(Gr=>Gr===St);Qn.length>1&&ct>xe.current.value[tn]&&(tn=tn+Qn.length-1),G(tn),vt.setValueAtIndex(tn,ct),Ne(tn)},jt=Be=>{if(J==-1)return;const ct=nt(Be)||0;G(J),vt.setValueAtIndex(J,ct),Ne(J)};I$(ot,{onPanSessionStart(Be){!te||(Se(!0),tt(Be),$?.(xe.current.value))},onPanSessionEnd(){!te||(Se(!1),F?.(xe.current.value))},onPan(Be){!te||jt(Be)}});const Ut=C.exports.useCallback((Be={},ct=null)=>({...Be,...z,id:Oe.root,ref:Vn(ct,ot),tabIndex:-1,"aria-disabled":p0(p),"data-focused":Xa(_e),style:{...Be.style,...Vt}}),[z,p,_e,Vt,Oe]),Pe=C.exports.useCallback((Be={},ct=null)=>({...Be,ref:Vn(ct,Ve),id:Oe.track,"data-disabled":Xa(p),style:{...Be.style,...on}}),[p,on,Oe]),Pt=C.exports.useCallback((Be={},ct=null)=>({...Be,ref:ct,id:Oe.innerTrack,style:{...Be.style,...zt}}),[zt,Oe]),en=C.exports.useCallback((Be,ct=null)=>{const{index:qe,...St}=Be,tn=W[qe];if(tn==null)throw new TypeError(`[range-slider > thumb] Cannot find value at index \`${qe}\`. The \`value\` or \`defaultValue\` length is : ${W.length}`);const Qn=de[qe];return{...St,ref:ct,role:"slider",tabIndex:te?0:void 0,id:Oe.getThumb(qe),"data-active":Xa(ge&&J===qe),"aria-valuetext":q?.(tn)??E?.[qe],"aria-valuemin":Qn.min,"aria-valuemax":Qn.max,"aria-valuenow":tn,"aria-orientation":l,"aria-disabled":p0(p),"aria-readonly":p0(g),"aria-label":P?.[qe],"aria-labelledby":P?.[qe]?void 0:k?.[qe],style:{...Be.style,...yt(qe)},onKeyDown:g0(Be.onKeyDown,yn),onFocus:g0(Be.onFocus,()=>{we(!0),G(qe)}),onBlur:g0(Be.onBlur,()=>{we(!1),G(-1)})}},[Oe,W,de,te,ge,J,q,E,l,p,g,P,k,yt,yn,we]),jn=C.exports.useCallback((Be={},ct=null)=>({...Be,ref:ct,id:Oe.output,htmlFor:W.map((qe,St)=>Oe.getThumb(St)).join(" "),"aria-live":"off"}),[Oe,W]),je=C.exports.useCallback((Be,ct=null)=>{const{value:qe,...St}=Be,tn=!(qen),Qn=qe>=W[0]&&qe<=W[W.length-1];let Cr=C3(qe,t,n);Cr=j?100-Cr:Cr;const Gr={position:"absolute",pointerEvents:"none",...Lg({orientation:l,vertical:{bottom:`${Cr}%`},horizontal:{left:`${Cr}%`}})};return{...St,ref:ct,id:Oe.getMarker(Be.value),role:"presentation","aria-hidden":!0,"data-disabled":Xa(p),"data-invalid":Xa(!tn),"data-highlighted":Xa(Qn),style:{...Be.style,...Gr}}},[p,j,n,t,l,W,Oe]),At=C.exports.useCallback((Be,ct=null)=>{const{index:qe,...St}=Be;return{...St,ref:ct,id:Oe.getInput(qe),type:"hidden",value:W[qe],name:Array.isArray(L)?L[qe]:`${L}-${qe}`}},[L,W,Oe]);return{state:{value:W,isFocused:_e,isDragging:ge,getThumbPercent:Be=>Ue[Be],getThumbMinValue:Be=>de[Be].min,getThumbMaxValue:Be=>de[Be].max},actions:vt,getRootProps:Ut,getTrackProps:Pe,getInnerTrackProps:Pt,getThumbProps:en,getMarkerProps:je,getInputProps:At,getOutputProps:jn}}function wde(e,t,n,r){return e.map((i,o)=>{const a=o===0?t:e[o-1]+r,s=o===e.length-1?n:e[o+1]-r;return{min:a,max:s}})}var[Cde,hb]=Tn({name:"SliderContext",errorMessage:"useSliderContext: `context` is undefined. Seems you forgot to wrap all slider components within "}),[_de,D_]=Tn({name:"RangeSliderStylesContext",errorMessage:`useRangeSliderStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),D$=Le(function(t,n){const r=Ui("Slider",t),i=_n(t),{direction:o}=q0();i.direction=o;const{getRootProps:a,...s}=Sde(i),l=C.exports.useMemo(()=>({...s,name:t.name}),[s,t.name]);return re.createElement(Cde,{value:l},re.createElement(_de,{value:r},re.createElement(Ce.div,{...a({},n),className:"chakra-slider",__css:r.container},t.children)))});D$.defaultProps={orientation:"horizontal"};D$.displayName="RangeSlider";var kde=Le(function(t,n){const{getThumbProps:r,getInputProps:i,name:o}=hb(),a=D_(),s=r(t,n);return re.createElement(Ce.div,{...s,className:Ad("chakra-slider__thumb",t.className),__css:a.thumb},s.children,o&&w("input",{...i({index:t.index})}))});kde.displayName="RangeSliderThumb";var Ede=Le(function(t,n){const{getTrackProps:r}=hb(),i=D_(),o=r(t,n);return re.createElement(Ce.div,{...o,className:Ad("chakra-slider__track",t.className),__css:i.track,"data-testid":"chakra-range-slider-track"})});Ede.displayName="RangeSliderTrack";var Pde=Le(function(t,n){const{getInnerTrackProps:r}=hb(),i=D_(),o=r(t,n);return re.createElement(Ce.div,{...o,className:"chakra-slider__filled-track",__css:i.filledTrack})});Pde.displayName="RangeSliderFilledTrack";var Tde=Le(function(t,n){const{getMarkerProps:r}=hb(),i=r(t,n);return re.createElement(Ce.div,{...i,className:Ad("chakra-slider__marker",t.className)})});Tde.displayName="RangeSliderMark";Vs();Vs();function Lde(e){const{min:t=0,max:n=100,onChange:r,value:i,defaultValue:o,isReversed:a,direction:s="ltr",orientation:l="horizontal",id:d,isDisabled:p,isReadOnly:g,onChangeStart:m,onChangeEnd:y,step:b=1,getAriaValueText:S,"aria-valuetext":E,"aria-label":P,"aria-labelledby":k,name:L,focusThumbOnChange:R=!0,...N}=e,z=Ar(m),$=Ar(y),F=Ar(S),q=N$({isReversed:a,direction:s,orientation:l}),[j,Y]=D4({value:i,defaultValue:o??Ide(t,n),onChange:r}),[ve,ge]=C.exports.useState(!1),[Se,_e]=C.exports.useState(!1),we=C.exports.useRef(null),J=!(p||g),G=c0(j,t,n),te=C.exports.useRef(-1);te.current=G;const Q=C.exports.useRef(te.current),W=n-G+t,de=C3(q?W:G,t,n),xe=l==="vertical",ze=C.exports.useRef(null),Me=C.exports.useRef(null),Ue=C.exports.useRef(null),Ee=C.exports.useId(),Ve=d??Ee,[ot,pt]=[`slider-thumb-${Ve}`,`slider-track-${Ve}`],Wt=C.exports.useCallback(je=>{var At;if(!ze.current)return;we.current="pointer";const Be=ze.current.getBoundingClientRect(),{clientX:ct,clientY:qe}=((At=je.touches)==null?void 0:At[0])??je,St=xe?Be.bottom-qe:ct-Be.left,tn=xe?Be.height:Be.width;let Qn=St/tn;q&&(Qn=1-Qn);let Cr=qD(Qn,t,n);return b&&(Cr=parseFloat(V6(Cr,t,b))),Cr=c0(Cr,t,n),Cr},[xe,q,n,t,b]),Dt=(n-t)/10,Oe=b||(n-t)/100,nt=C.exports.useCallback(je=>{!J||(je=parseFloat(V6(je,t,Oe)),je=c0(je,t,n),Y(je))},[Oe,n,t,Y,J]),mt=C.exports.useMemo(()=>({stepUp(je=Oe){const At=q?G-je:G+je;nt(At)},stepDown(je=Oe){const At=q?G+je:G-je;nt(At)},reset(){nt(o||0)},stepTo(je){nt(je)}}),[nt,q,G,Oe,o]),st=C.exports.useCallback(je=>{const Be={ArrowRight:()=>mt.stepUp(),ArrowUp:()=>mt.stepUp(),ArrowLeft:()=>mt.stepDown(),ArrowDown:()=>mt.stepDown(),PageUp:()=>mt.stepUp(Dt),PageDown:()=>mt.stepDown(Dt),Home:()=>nt(t),End:()=>nt(n)}[je.key];Be&&(je.preventDefault(),je.stopPropagation(),Be(je),we.current="keyboard")},[mt,nt,n,t,Dt]),vt=F?.(G)??E,yn=cde(Me),{getThumbStyle:yt,rootStyle:Vt,trackStyle:on,innerTrackStyle:zt}=C.exports.useMemo(()=>O$({isReversed:q,orientation:l,thumbRects:[yn??{width:0,height:0}],thumbPercents:[de]}),[q,l,yn,de]),Ne=C.exports.useCallback(()=>{R&&setTimeout(()=>{var je;return(je=Me.current)==null?void 0:je.focus()})},[R]);I0(()=>{Ne(),we.current==="keyboard"&&$?.(te.current)},[G,$]);function tt(je){const At=Wt(je);At!=null&&At!==te.current&&Y(At)}I$(Ue,{onPanSessionStart(je){!J||(ge(!0),Ne(),tt(je),z?.(te.current))},onPanSessionEnd(){!J||(ge(!1),$?.(te.current),Q.current=te.current)},onPan(je){!J||tt(je)}});const jt=C.exports.useCallback((je={},At=null)=>({...je,...N,ref:Vn(At,Ue),tabIndex:-1,"aria-disabled":p0(p),"data-focused":Xa(Se),style:{...je.style,...Vt}}),[N,p,Se,Vt]),Ut=C.exports.useCallback((je={},At=null)=>({...je,ref:Vn(At,ze),id:pt,"data-disabled":Xa(p),style:{...je.style,...on}}),[p,pt,on]),Pe=C.exports.useCallback((je={},At=null)=>({...je,ref:At,style:{...je.style,...zt}}),[zt]),Pt=C.exports.useCallback((je={},At=null)=>({...je,ref:Vn(At,Me),role:"slider",tabIndex:J?0:void 0,id:ot,"data-active":Xa(ve),"aria-valuetext":vt,"aria-valuemin":t,"aria-valuemax":n,"aria-valuenow":G,"aria-orientation":l,"aria-disabled":p0(p),"aria-readonly":p0(g),"aria-label":P,"aria-labelledby":P?void 0:k,style:{...je.style,...yt(0)},onKeyDown:g0(je.onKeyDown,st),onFocus:g0(je.onFocus,()=>_e(!0)),onBlur:g0(je.onBlur,()=>_e(!1))}),[J,ot,ve,vt,t,n,G,l,p,g,P,k,yt,st]),en=C.exports.useCallback((je,At=null)=>{const Be=!(je.valuen),ct=G>=je.value,qe=C3(je.value,t,n),St={position:"absolute",pointerEvents:"none",...Ade({orientation:l,vertical:{bottom:q?`${100-qe}%`:`${qe}%`},horizontal:{left:q?`${100-qe}%`:`${qe}%`}})};return{...je,ref:At,role:"presentation","aria-hidden":!0,"data-disabled":Xa(p),"data-invalid":Xa(!Be),"data-highlighted":Xa(ct),style:{...je.style,...St}}},[p,q,n,t,l,G]),jn=C.exports.useCallback((je={},At=null)=>({...je,ref:At,type:"hidden",value:G,name:L}),[L,G]);return{state:{value:G,isFocused:Se,isDragging:ve},actions:mt,getRootProps:jt,getTrackProps:Ut,getInnerTrackProps:Pe,getThumbProps:Pt,getMarkerProps:en,getInputProps:jn}}function Ade(e){const{orientation:t,vertical:n,horizontal:r}=e;return t==="vertical"?n:r}function Ide(e,t){return t"}),[Mde,gb]=Tn({name:"SliderStylesContext",hookName:"useSliderStyles",providerName:""}),z_=Le((e,t)=>{const n=Ui("Slider",e),r=_n(e),{direction:i}=q0();r.direction=i;const{getInputProps:o,getRootProps:a,...s}=Lde(r),l=a(),d=o({},t);return re.createElement(Rde,{value:s},re.createElement(Mde,{value:n},re.createElement(Ce.div,{...l,className:Ad("chakra-slider",e.className),__css:n.container},e.children,w("input",{...d}))))});z_.defaultProps={orientation:"horizontal"};z_.displayName="Slider";var z$=Le((e,t)=>{const{getThumbProps:n}=pb(),r=gb(),i=n(e,t);return re.createElement(Ce.div,{...i,className:Ad("chakra-slider__thumb",e.className),__css:r.thumb})});z$.displayName="SliderThumb";var $$=Le((e,t)=>{const{getTrackProps:n}=pb(),r=gb(),i=n(e,t);return re.createElement(Ce.div,{...i,className:Ad("chakra-slider__track",e.className),__css:r.track})});$$.displayName="SliderTrack";var F$=Le((e,t)=>{const{getInnerTrackProps:n}=pb(),r=gb(),i=n(e,t);return re.createElement(Ce.div,{...i,className:Ad("chakra-slider__filled-track",e.className),__css:r.filledTrack})});F$.displayName="SliderFilledTrack";var Ode=Le((e,t)=>{const{getMarkerProps:n}=pb(),r=gb(),i=n(e,t);return re.createElement(Ce.div,{...i,className:Ad("chakra-slider__marker",e.className),__css:r.mark})});Ode.displayName="SliderMark";var Nde=(...e)=>e.filter(Boolean).join(" "),fL=e=>e?"":void 0,$_=Le(function(t,n){const r=Ui("Switch",t),{spacing:i="0.5rem",children:o,...a}=_n(t),{state:s,getInputProps:l,getCheckboxProps:d,getRootProps:p,getLabelProps:g}=UD(a),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),y=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:i,...r.label}),[i,r.label]);return re.createElement(Ce.label,{...p(),className:Nde("chakra-switch",t.className),__css:m},w("input",{className:"chakra-switch__input",...l({},n)}),re.createElement(Ce.span,{...d(),className:"chakra-switch__track",__css:y},re.createElement(Ce.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":fL(s.isChecked),"data-hover":fL(s.isHovered)})),o&&re.createElement(Ce.span,{className:"chakra-switch__label",...g(),__css:b},o))});$_.displayName="Switch";var t1=(...e)=>e.filter(Boolean).join(" ");function nC(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Dde,B$,zde,$de]=QO();function Fde(e){const{defaultIndex:t,onChange:n,index:r,isManual:i,isLazy:o,lazyBehavior:a="unmount",orientation:s="horizontal",direction:l="ltr",...d}=e,[p,g]=C.exports.useState(t??0),[m,y]=D4({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&g(r)},[r]);const b=zde(),S=C.exports.useId();return{id:`tabs-${e.id??S}`,selectedIndex:m,focusedIndex:p,setSelectedIndex:y,setFocusedIndex:g,isManual:i,isLazy:o,lazyBehavior:a,orientation:s,descendants:b,direction:l,htmlProps:d}}var[Bde,Rv]=Tn({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function Hde(e){const{focusedIndex:t,orientation:n,direction:r}=Rv(),i=B$(),o=C.exports.useCallback(a=>{const s=()=>{var k;const L=i.nextEnabled(t);L&&((k=L.node)==null||k.focus())},l=()=>{var k;const L=i.prevEnabled(t);L&&((k=L.node)==null||k.focus())},d=()=>{var k;const L=i.firstEnabled();L&&((k=L.node)==null||k.focus())},p=()=>{var k;const L=i.lastEnabled();L&&((k=L.node)==null||k.focus())},g=n==="horizontal",m=n==="vertical",y=a.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",S=r==="ltr"?"ArrowRight":"ArrowLeft",P={[b]:()=>g&&l(),[S]:()=>g&&s(),ArrowDown:()=>m&&s(),ArrowUp:()=>m&&l(),Home:d,End:p}[y];P&&(a.preventDefault(),P(a))},[i,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:nC(e.onKeyDown,o)}}function Wde(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:i,isManual:o,id:a,setFocusedIndex:s,selectedIndex:l}=Rv(),{index:d,register:p}=$de({disabled:t&&!n}),g=d===l,m=()=>{i(d)},y=()=>{s(d),!o&&!(t&&n)&&i(d)},b=Oae({...r,ref:Vn(p,e.ref),isDisabled:t,isFocusable:n,onClick:nC(e.onClick,m)}),S="button";return{...b,id:H$(a,d),role:"tab",tabIndex:g?0:-1,type:S,"aria-selected":g,"aria-controls":W$(a,d),onFocus:t?void 0:nC(e.onFocus,y)}}var[Vde,Ude]=Tn({});function Gde(e){const t=Rv(),{id:n,selectedIndex:r}=t,o=eb(e.children).map((a,s)=>C.exports.createElement(Vde,{key:s,value:{isSelected:s===r,id:W$(n,s),tabId:H$(n,s),selectedIndex:r}},a));return{...e,children:o}}function jde(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:i}=Rv(),{isSelected:o,id:a,tabId:s}=Ude(),l=C.exports.useRef(!1);o&&(l.current=!0);const d=Ez({wasSelected:l.current,isSelected:o,enabled:r,mode:i});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":s,hidden:!o,id:a}}function qde(){const e=Rv(),t=B$(),{selectedIndex:n,orientation:r}=e,i=r==="horizontal",o=r==="vertical",[a,s]=C.exports.useState(()=>{if(i)return{left:0,width:0};if(o)return{top:0,height:0}}),[l,d]=C.exports.useState(!1);return Ml(()=>{if(n==null)return;const p=t.item(n);if(p==null)return;i&&s({left:p.node.offsetLeft,width:p.node.offsetWidth}),o&&s({top:p.node.offsetTop,height:p.node.offsetHeight});const g=requestAnimationFrame(()=>{d(!0)});return()=>{g&&cancelAnimationFrame(g)}},[n,i,o,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:l?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...a}}function H$(e,t){return`${e}--tab-${t}`}function W$(e,t){return`${e}--tabpanel-${t}`}var[Kde,Mv]=Tn({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),V$=Le(function(t,n){const r=Ui("Tabs",t),{children:i,className:o,...a}=_n(t),{htmlProps:s,descendants:l,...d}=Fde(a),p=C.exports.useMemo(()=>d,[d]),{isFitted:g,...m}=s;return re.createElement(Dde,{value:l},re.createElement(Bde,{value:p},re.createElement(Kde,{value:r},re.createElement(Ce.div,{className:t1("chakra-tabs",o),ref:n,...m,__css:r.root},i))))});V$.displayName="Tabs";var Yde=Le(function(t,n){const r=qde(),i={...t.style,...r},o=Mv();return re.createElement(Ce.div,{ref:n,...t,className:t1("chakra-tabs__tab-indicator",t.className),style:i,__css:o.indicator})});Yde.displayName="TabIndicator";var Zde=Le(function(t,n){const r=Hde({...t,ref:n}),i=Mv(),o={display:"flex",...i.tablist};return re.createElement(Ce.div,{...r,className:t1("chakra-tabs__tablist",t.className),__css:o})});Zde.displayName="TabList";var U$=Le(function(t,n){const r=jde({...t,ref:n}),i=Mv();return re.createElement(Ce.div,{outline:"0",...r,className:t1("chakra-tabs__tab-panel",t.className),__css:i.tabpanel})});U$.displayName="TabPanel";var G$=Le(function(t,n){const r=Gde(t),i=Mv();return re.createElement(Ce.div,{...r,width:"100%",ref:n,className:t1("chakra-tabs__tab-panels",t.className),__css:i.tabpanels})});G$.displayName="TabPanels";var j$=Le(function(t,n){const r=Mv(),i=Wde({...t,ref:n}),o={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return re.createElement(Ce.button,{...i,className:t1("chakra-tabs__tab",t.className),__css:o})});j$.displayName="Tab";var Xde=(...e)=>e.filter(Boolean).join(" ");function Qde(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Jde=["h","minH","height","minHeight"],q$=Le((e,t)=>{const n=Eo("Textarea",e),{className:r,rows:i,...o}=_n(e),a=Q8(o),s=i?Qde(n,Jde):n;return re.createElement(Ce.textarea,{ref:t,rows:i,...a,className:Xde("chakra-textarea",r),__css:s})});q$.displayName="Textarea";function Mn(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function i(...p){r();for(const g of p)t[g]=l(g);return Mn(e,t)}function o(...p){for(const g of p)g in t||(t[g]=l(g));return Mn(e,t)}function a(){return Object.fromEntries(Object.entries(t).map(([g,m])=>[g,m.selector]))}function s(){return Object.fromEntries(Object.entries(t).map(([g,m])=>[g,m.className]))}function l(p){const y=`chakra-${(["container","root"].includes(p??"")?[e]:[e,p]).filter(Boolean).join("__")}`;return{className:y,selector:`.${y}`,toString:()=>p}}return{parts:i,toPart:l,extend:o,selectors:a,classnames:s,get keys(){return Object.keys(t)},__type:{}}}var efe=Mn("accordion").parts("root","container","button","panel").extend("icon"),tfe=Mn("alert").parts("title","description","container").extend("icon","spinner"),nfe=Mn("avatar").parts("label","badge","container").extend("excessLabel","group"),rfe=Mn("breadcrumb").parts("link","item","container").extend("separator");Mn("button").parts();var ife=Mn("checkbox").parts("control","icon","container").extend("label");Mn("progress").parts("track","filledTrack").extend("label");var ofe=Mn("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),afe=Mn("editable").parts("preview","input","textarea"),sfe=Mn("form").parts("container","requiredIndicator","helperText"),lfe=Mn("formError").parts("text","icon"),ufe=Mn("input").parts("addon","field","element"),cfe=Mn("list").parts("container","item","icon"),dfe=Mn("menu").parts("button","list","item").extend("groupTitle","command","divider"),ffe=Mn("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),hfe=Mn("numberinput").parts("root","field","stepperGroup","stepper");Mn("pininput").parts("field");var pfe=Mn("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),gfe=Mn("progress").parts("label","filledTrack","track"),mfe=Mn("radio").parts("container","control","label"),vfe=Mn("select").parts("field","icon"),yfe=Mn("slider").parts("container","track","thumb","filledTrack","mark"),bfe=Mn("stat").parts("container","label","helpText","number","icon"),xfe=Mn("switch").parts("container","track","thumb"),Sfe=Mn("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),wfe=Mn("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),Cfe=Mn("tag").parts("container","label","closeButton");function K$(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var _fe=e=>/!(important)?$/.test(e),hL=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,kfe=(e,t)=>n=>{const r=String(t),i=_fe(r),o=hL(r),a=e?`${e}.${o}`:o;let s=K$(n.__cssMap)&&a in n.__cssMap?n.__cssMap[a].varRef:t;return s=hL(s),i?`${s} !important`:s};function ev(e){const{scale:t,transform:n,compose:r}=e;return(o,a)=>{const s=kfe(t,o)(a);let l=n?.(s,a)??s;return r&&(l=r(l,a)),l}}var fy=(...e)=>t=>e.reduce((n,r)=>r(n),t);function As(e,t){return n=>{const r={property:n,scale:e};return r.transform=ev({scale:e,transform:t}),r}}var Efe=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function Pfe(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:Efe(t),transform:n?ev({scale:n,compose:r}):r}}var Y$=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function Tfe(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...Y$].join(" ")}function Lfe(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...Y$].join(" ")}var Afe={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},Ife={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function Rfe(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var Mfe={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},Z$="& > :not(style) ~ :not(style)",Ofe={[Z$]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},Nfe={[Z$]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},rC={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},Dfe=new Set(Object.values(rC)),X$=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),zfe=e=>e.trim();function $fe(e,t){var n;if(e==null||X$.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:i,values:o}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!i||!o)return e;const a=i.includes("-gradient")?i:`${i}-gradient`,[s,...l]=o.split(",").map(zfe).filter(Boolean);if(l?.length===0)return e;const d=s in rC?rC[s]:s;l.unshift(d);const p=l.map(g=>{if(Dfe.has(g))return g;const m=g.indexOf(" "),[y,b]=m!==-1?[g.substr(0,m),g.substr(m+1)]:[g],S=Q$(b)?b:b&&b.split(" "),E=`colors.${y}`,P=E in t.__cssMap?t.__cssMap[E].varRef:y;return S?[P,...Array.isArray(S)?S:[S]].join(" "):P});return`${a}(${p.join(", ")})`}var Q$=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),Ffe=(e,t)=>$fe(e,t??{});function Bfe(e){return/^var\(--.+\)$/.test(e)}var Hfe=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},bl=e=>t=>`${e}(${t})`,dn={filter(e){return e!=="auto"?e:Afe},backdropFilter(e){return e!=="auto"?e:Ife},ring(e){return Rfe(dn.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?Tfe():e==="auto-gpu"?Lfe():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=Hfe(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(Bfe(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:Ffe,blur:bl("blur"),opacity:bl("opacity"),brightness:bl("brightness"),contrast:bl("contrast"),dropShadow:bl("drop-shadow"),grayscale:bl("grayscale"),hueRotate:bl("hue-rotate"),invert:bl("invert"),saturate:bl("saturate"),sepia:bl("sepia"),bgImage(e){return e==null||Q$(e)||X$.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=Mfe[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},oe={borderWidths:As("borderWidths"),borderStyles:As("borderStyles"),colors:As("colors"),borders:As("borders"),radii:As("radii",dn.px),space:As("space",fy(dn.vh,dn.px)),spaceT:As("space",fy(dn.vh,dn.px)),degreeT(e){return{property:e,transform:dn.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:ev({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:As("sizes",fy(dn.vh,dn.px)),sizesT:As("sizes",fy(dn.vh,dn.fraction)),shadows:As("shadows"),logical:Pfe,blur:As("blur",dn.blur)},p5={background:oe.colors("background"),backgroundColor:oe.colors("backgroundColor"),backgroundImage:oe.propT("backgroundImage",dn.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:dn.bgClip},bgSize:oe.prop("backgroundSize"),bgPosition:oe.prop("backgroundPosition"),bg:oe.colors("background"),bgColor:oe.colors("backgroundColor"),bgPos:oe.prop("backgroundPosition"),bgRepeat:oe.prop("backgroundRepeat"),bgAttachment:oe.prop("backgroundAttachment"),bgGradient:oe.propT("backgroundImage",dn.gradient),bgClip:{transform:dn.bgClip}};Object.assign(p5,{bgImage:p5.backgroundImage,bgImg:p5.backgroundImage});var Sn={border:oe.borders("border"),borderWidth:oe.borderWidths("borderWidth"),borderStyle:oe.borderStyles("borderStyle"),borderColor:oe.colors("borderColor"),borderRadius:oe.radii("borderRadius"),borderTop:oe.borders("borderTop"),borderBlockStart:oe.borders("borderBlockStart"),borderTopLeftRadius:oe.radii("borderTopLeftRadius"),borderStartStartRadius:oe.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:oe.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:oe.radii("borderTopRightRadius"),borderStartEndRadius:oe.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:oe.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:oe.borders("borderRight"),borderInlineEnd:oe.borders("borderInlineEnd"),borderBottom:oe.borders("borderBottom"),borderBlockEnd:oe.borders("borderBlockEnd"),borderBottomLeftRadius:oe.radii("borderBottomLeftRadius"),borderBottomRightRadius:oe.radii("borderBottomRightRadius"),borderLeft:oe.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:oe.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:oe.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:oe.borders(["borderLeft","borderRight"]),borderInline:oe.borders("borderInline"),borderY:oe.borders(["borderTop","borderBottom"]),borderBlock:oe.borders("borderBlock"),borderTopWidth:oe.borderWidths("borderTopWidth"),borderBlockStartWidth:oe.borderWidths("borderBlockStartWidth"),borderTopColor:oe.colors("borderTopColor"),borderBlockStartColor:oe.colors("borderBlockStartColor"),borderTopStyle:oe.borderStyles("borderTopStyle"),borderBlockStartStyle:oe.borderStyles("borderBlockStartStyle"),borderBottomWidth:oe.borderWidths("borderBottomWidth"),borderBlockEndWidth:oe.borderWidths("borderBlockEndWidth"),borderBottomColor:oe.colors("borderBottomColor"),borderBlockEndColor:oe.colors("borderBlockEndColor"),borderBottomStyle:oe.borderStyles("borderBottomStyle"),borderBlockEndStyle:oe.borderStyles("borderBlockEndStyle"),borderLeftWidth:oe.borderWidths("borderLeftWidth"),borderInlineStartWidth:oe.borderWidths("borderInlineStartWidth"),borderLeftColor:oe.colors("borderLeftColor"),borderInlineStartColor:oe.colors("borderInlineStartColor"),borderLeftStyle:oe.borderStyles("borderLeftStyle"),borderInlineStartStyle:oe.borderStyles("borderInlineStartStyle"),borderRightWidth:oe.borderWidths("borderRightWidth"),borderInlineEndWidth:oe.borderWidths("borderInlineEndWidth"),borderRightColor:oe.colors("borderRightColor"),borderInlineEndColor:oe.colors("borderInlineEndColor"),borderRightStyle:oe.borderStyles("borderRightStyle"),borderInlineEndStyle:oe.borderStyles("borderInlineEndStyle"),borderTopRadius:oe.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:oe.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:oe.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:oe.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(Sn,{rounded:Sn.borderRadius,roundedTop:Sn.borderTopRadius,roundedTopLeft:Sn.borderTopLeftRadius,roundedTopRight:Sn.borderTopRightRadius,roundedTopStart:Sn.borderStartStartRadius,roundedTopEnd:Sn.borderStartEndRadius,roundedBottom:Sn.borderBottomRadius,roundedBottomLeft:Sn.borderBottomLeftRadius,roundedBottomRight:Sn.borderBottomRightRadius,roundedBottomStart:Sn.borderEndStartRadius,roundedBottomEnd:Sn.borderEndEndRadius,roundedLeft:Sn.borderLeftRadius,roundedRight:Sn.borderRightRadius,roundedStart:Sn.borderInlineStartRadius,roundedEnd:Sn.borderInlineEndRadius,borderStart:Sn.borderInlineStart,borderEnd:Sn.borderInlineEnd,borderTopStartRadius:Sn.borderStartStartRadius,borderTopEndRadius:Sn.borderStartEndRadius,borderBottomStartRadius:Sn.borderEndStartRadius,borderBottomEndRadius:Sn.borderEndEndRadius,borderStartRadius:Sn.borderInlineStartRadius,borderEndRadius:Sn.borderInlineEndRadius,borderStartWidth:Sn.borderInlineStartWidth,borderEndWidth:Sn.borderInlineEndWidth,borderStartColor:Sn.borderInlineStartColor,borderEndColor:Sn.borderInlineEndColor,borderStartStyle:Sn.borderInlineStartStyle,borderEndStyle:Sn.borderInlineEndStyle});var Wfe={color:oe.colors("color"),textColor:oe.colors("color"),fill:oe.colors("fill"),stroke:oe.colors("stroke")},iC={boxShadow:oe.shadows("boxShadow"),mixBlendMode:!0,blendMode:oe.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:oe.prop("backgroundBlendMode"),opacity:!0};Object.assign(iC,{shadow:iC.boxShadow});var Vfe={filter:{transform:dn.filter},blur:oe.blur("--chakra-blur"),brightness:oe.propT("--chakra-brightness",dn.brightness),contrast:oe.propT("--chakra-contrast",dn.contrast),hueRotate:oe.degreeT("--chakra-hue-rotate"),invert:oe.propT("--chakra-invert",dn.invert),saturate:oe.propT("--chakra-saturate",dn.saturate),dropShadow:oe.propT("--chakra-drop-shadow",dn.dropShadow),backdropFilter:{transform:dn.backdropFilter},backdropBlur:oe.blur("--chakra-backdrop-blur"),backdropBrightness:oe.propT("--chakra-backdrop-brightness",dn.brightness),backdropContrast:oe.propT("--chakra-backdrop-contrast",dn.contrast),backdropHueRotate:oe.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:oe.propT("--chakra-backdrop-invert",dn.invert),backdropSaturate:oe.propT("--chakra-backdrop-saturate",dn.saturate)},L3={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:dn.flexDirection},experimental_spaceX:{static:Ofe,transform:ev({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:Nfe,transform:ev({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:oe.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:oe.space("gap"),rowGap:oe.space("rowGap"),columnGap:oe.space("columnGap")};Object.assign(L3,{flexDir:L3.flexDirection});var J$={gridGap:oe.space("gridGap"),gridColumnGap:oe.space("gridColumnGap"),gridRowGap:oe.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},Ufe={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:dn.outline},outlineOffset:!0,outlineColor:oe.colors("outlineColor")},ja={width:oe.sizesT("width"),inlineSize:oe.sizesT("inlineSize"),height:oe.sizes("height"),blockSize:oe.sizes("blockSize"),boxSize:oe.sizes(["width","height"]),minWidth:oe.sizes("minWidth"),minInlineSize:oe.sizes("minInlineSize"),minHeight:oe.sizes("minHeight"),minBlockSize:oe.sizes("minBlockSize"),maxWidth:oe.sizes("maxWidth"),maxInlineSize:oe.sizes("maxInlineSize"),maxHeight:oe.sizes("maxHeight"),maxBlockSize:oe.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:oe.propT("float",dn.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(ja,{w:ja.width,h:ja.height,minW:ja.minWidth,maxW:ja.maxWidth,minH:ja.minHeight,maxH:ja.maxHeight,overscroll:ja.overscrollBehavior,overscrollX:ja.overscrollBehaviorX,overscrollY:ja.overscrollBehaviorY});var Gfe={listStyleType:!0,listStylePosition:!0,listStylePos:oe.prop("listStylePosition"),listStyleImage:!0,listStyleImg:oe.prop("listStyleImage")};function jfe(e,t,n,r){const i=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,i,o,a)=>{if(typeof r>"u")return e(r,i,o);t.has(r)||t.set(r,new Map);const s=t.get(r);if(s.has(i))return s.get(i);const l=e(r,i,o,a);return s.set(i,l),l}},Kfe=qfe(jfe),Yfe={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},Zfe={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},CS=(e,t,n)=>{const r={},i=Kfe(e,t,{});for(const o in i)o in n&&n[o]!=null||(r[o]=i[o]);return r},Xfe={srOnly:{transform(e){return e===!0?Yfe:e==="focusable"?Zfe:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>CS(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>CS(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>CS(t,e,n)}},sm={position:!0,pos:oe.prop("position"),zIndex:oe.prop("zIndex","zIndices"),inset:oe.spaceT("inset"),insetX:oe.spaceT(["left","right"]),insetInline:oe.spaceT("insetInline"),insetY:oe.spaceT(["top","bottom"]),insetBlock:oe.spaceT("insetBlock"),top:oe.spaceT("top"),insetBlockStart:oe.spaceT("insetBlockStart"),bottom:oe.spaceT("bottom"),insetBlockEnd:oe.spaceT("insetBlockEnd"),left:oe.spaceT("left"),insetInlineStart:oe.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:oe.spaceT("right"),insetInlineEnd:oe.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(sm,{insetStart:sm.insetInlineStart,insetEnd:sm.insetInlineEnd});var Qfe={ring:{transform:dn.ring},ringColor:oe.colors("--chakra-ring-color"),ringOffset:oe.prop("--chakra-ring-offset-width"),ringOffsetColor:oe.colors("--chakra-ring-offset-color"),ringInset:oe.prop("--chakra-ring-inset")},tr={margin:oe.spaceT("margin"),marginTop:oe.spaceT("marginTop"),marginBlockStart:oe.spaceT("marginBlockStart"),marginRight:oe.spaceT("marginRight"),marginInlineEnd:oe.spaceT("marginInlineEnd"),marginBottom:oe.spaceT("marginBottom"),marginBlockEnd:oe.spaceT("marginBlockEnd"),marginLeft:oe.spaceT("marginLeft"),marginInlineStart:oe.spaceT("marginInlineStart"),marginX:oe.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:oe.spaceT("marginInline"),marginY:oe.spaceT(["marginTop","marginBottom"]),marginBlock:oe.spaceT("marginBlock"),padding:oe.space("padding"),paddingTop:oe.space("paddingTop"),paddingBlockStart:oe.space("paddingBlockStart"),paddingRight:oe.space("paddingRight"),paddingBottom:oe.space("paddingBottom"),paddingBlockEnd:oe.space("paddingBlockEnd"),paddingLeft:oe.space("paddingLeft"),paddingInlineStart:oe.space("paddingInlineStart"),paddingInlineEnd:oe.space("paddingInlineEnd"),paddingX:oe.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:oe.space("paddingInline"),paddingY:oe.space(["paddingTop","paddingBottom"]),paddingBlock:oe.space("paddingBlock")};Object.assign(tr,{m:tr.margin,mt:tr.marginTop,mr:tr.marginRight,me:tr.marginInlineEnd,marginEnd:tr.marginInlineEnd,mb:tr.marginBottom,ml:tr.marginLeft,ms:tr.marginInlineStart,marginStart:tr.marginInlineStart,mx:tr.marginX,my:tr.marginY,p:tr.padding,pt:tr.paddingTop,py:tr.paddingY,px:tr.paddingX,pb:tr.paddingBottom,pl:tr.paddingLeft,ps:tr.paddingInlineStart,paddingStart:tr.paddingInlineStart,pr:tr.paddingRight,pe:tr.paddingInlineEnd,paddingEnd:tr.paddingInlineEnd});var Jfe={textDecorationColor:oe.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:oe.shadows("textShadow")},ehe={clipPath:!0,transform:oe.propT("transform",dn.transform),transformOrigin:!0,translateX:oe.spaceT("--chakra-translate-x"),translateY:oe.spaceT("--chakra-translate-y"),skewX:oe.degreeT("--chakra-skew-x"),skewY:oe.degreeT("--chakra-skew-y"),scaleX:oe.prop("--chakra-scale-x"),scaleY:oe.prop("--chakra-scale-y"),scale:oe.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:oe.degreeT("--chakra-rotate")},the={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:oe.prop("transitionDuration","transition.duration"),transitionProperty:oe.prop("transitionProperty","transition.property"),transitionTimingFunction:oe.prop("transitionTimingFunction","transition.easing")},nhe={fontFamily:oe.prop("fontFamily","fonts"),fontSize:oe.prop("fontSize","fontSizes",dn.px),fontWeight:oe.prop("fontWeight","fontWeights"),lineHeight:oe.prop("lineHeight","lineHeights"),letterSpacing:oe.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},rhe={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:oe.spaceT("scrollMargin"),scrollMarginTop:oe.spaceT("scrollMarginTop"),scrollMarginBottom:oe.spaceT("scrollMarginBottom"),scrollMarginLeft:oe.spaceT("scrollMarginLeft"),scrollMarginRight:oe.spaceT("scrollMarginRight"),scrollMarginX:oe.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:oe.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:oe.spaceT("scrollPadding"),scrollPaddingTop:oe.spaceT("scrollPaddingTop"),scrollPaddingBottom:oe.spaceT("scrollPaddingBottom"),scrollPaddingLeft:oe.spaceT("scrollPaddingLeft"),scrollPaddingRight:oe.spaceT("scrollPaddingRight"),scrollPaddingX:oe.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:oe.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function eF(e){return K$(e)&&e.reference?e.reference:String(e)}var mb=(e,...t)=>t.map(eF).join(` ${e} `).replace(/calc/g,""),pL=(...e)=>`calc(${mb("+",...e)})`,gL=(...e)=>`calc(${mb("-",...e)})`,oC=(...e)=>`calc(${mb("*",...e)})`,mL=(...e)=>`calc(${mb("/",...e)})`,vL=e=>{const t=eF(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:oC(t,-1)},hg=Object.assign(e=>({add:(...t)=>hg(pL(e,...t)),subtract:(...t)=>hg(gL(e,...t)),multiply:(...t)=>hg(oC(e,...t)),divide:(...t)=>hg(mL(e,...t)),negate:()=>hg(vL(e)),toString:()=>e.toString()}),{add:pL,subtract:gL,multiply:oC,divide:mL,negate:vL});function ihe(e,t="-"){return e.replace(/\s+/g,t)}function ohe(e){const t=ihe(e.toString());return she(ahe(t))}function ahe(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function she(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function lhe(e,t=""){return[t,e].filter(Boolean).join("-")}function uhe(e,t){return`var(${e}${t?`, ${t}`:""})`}function che(e,t=""){return ohe(`--${lhe(e,t)}`)}function Eh(e,t,n){const r=che(e,n);return{variable:r,reference:uhe(r,t)}}var Oi={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},Hc=e=>tF(t=>e(t,"&"),"[role=group]","[data-group]",".group"),_u=e=>tF(t=>e(t,"~ &"),"[data-peer]",".peer"),tF=(e,...t)=>t.map(e).join(", "),nF={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&:disabled, &[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:Hc(Oi.hover),_peerHover:_u(Oi.hover),_groupFocus:Hc(Oi.focus),_peerFocus:_u(Oi.focus),_groupFocusVisible:Hc(Oi.focusVisible),_peerFocusVisible:_u(Oi.focusVisible),_groupActive:Hc(Oi.active),_peerActive:_u(Oi.active),_groupDisabled:Hc(Oi.disabled),_peerDisabled:_u(Oi.disabled),_groupInvalid:Hc(Oi.invalid),_peerInvalid:_u(Oi.invalid),_groupChecked:Hc(Oi.checked),_peerChecked:_u(Oi.checked),_groupFocusWithin:Hc(Oi.focusWithin),_peerFocusWithin:_u(Oi.focusWithin),_peerPlaceholderShown:_u(Oi.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},dhe=Object.keys(nF),rF=Bu({},p5,Sn,Wfe,L3,ja,Vfe,Qfe,Ufe,J$,Xfe,sm,iC,tr,rhe,nhe,Jfe,ehe,Gfe,the);Object.assign({},tr,ja,L3,J$,sm);[...Object.keys(rF),...dhe];({...rF,...nF});function ur(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function Wi(e,t){fhe(e)&&(e="100%");var n=hhe(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function hy(e){return Math.min(1,Math.max(0,e))}function fhe(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function hhe(e){return typeof e=="string"&&e.indexOf("%")!==-1}function iF(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function py(e){return e<=1?"".concat(Number(e)*100,"%"):e}function eh(e){return e.length===1?"0"+e:String(e)}function phe(e,t,n){return{r:Wi(e,255)*255,g:Wi(t,255)*255,b:Wi(n,255)*255}}function yL(e,t,n){e=Wi(e,255),t=Wi(t,255),n=Wi(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=0,s=(r+i)/2;if(r===i)a=0,o=0;else{var l=r-i;switch(a=s>.5?l/(2-r-i):l/(r+i),r){case e:o=(t-n)/l+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function ghe(e,t,n){var r,i,o;if(e=Wi(e,360),t=Wi(t,100),n=Wi(n,100),t===0)i=n,o=n,r=n;else{var a=n<.5?n*(1+t):n+t-n*t,s=2*n-a;r=_S(s,a,e+1/3),i=_S(s,a,e),o=_S(s,a,e-1/3)}return{r:r*255,g:i*255,b:o*255}}function bL(e,t,n){e=Wi(e,255),t=Wi(t,255),n=Wi(n,255);var r=Math.max(e,t,n),i=Math.min(e,t,n),o=0,a=r,s=r-i,l=r===0?0:s/r;if(r===i)o=0;else{switch(r){case e:o=(t-n)/s+(t>16,g:(e&65280)>>8,b:e&255}}var aC={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function xhe(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,o=null,a=!1,s=!1;return typeof e=="string"&&(e=Che(e)),typeof e=="object"&&(ku(e.r)&&ku(e.g)&&ku(e.b)?(t=phe(e.r,e.g,e.b),a=!0,s=String(e.r).substr(-1)==="%"?"prgb":"rgb"):ku(e.h)&&ku(e.s)&&ku(e.v)?(r=py(e.s),i=py(e.v),t=mhe(e.h,r,i),a=!0,s="hsv"):ku(e.h)&&ku(e.s)&&ku(e.l)&&(r=py(e.s),o=py(e.l),t=ghe(e.h,r,o),a=!0,s="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=iF(n),{ok:a,format:e.format||s,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var She="[-\\+]?\\d+%?",whe="[-\\+]?\\d*\\.\\d+%?",od="(?:".concat(whe,")|(?:").concat(She,")"),kS="[\\s|\\(]+(".concat(od,")[,|\\s]+(").concat(od,")[,|\\s]+(").concat(od,")\\s*\\)?"),ES="[\\s|\\(]+(".concat(od,")[,|\\s]+(").concat(od,")[,|\\s]+(").concat(od,")[,|\\s]+(").concat(od,")\\s*\\)?"),Rs={CSS_UNIT:new RegExp(od),rgb:new RegExp("rgb"+kS),rgba:new RegExp("rgba"+ES),hsl:new RegExp("hsl"+kS),hsla:new RegExp("hsla"+ES),hsv:new RegExp("hsv"+kS),hsva:new RegExp("hsva"+ES),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Che(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(aC[e])e=aC[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=Rs.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=Rs.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=Rs.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=Rs.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=Rs.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=Rs.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=Rs.hex8.exec(e),n?{r:pa(n[1]),g:pa(n[2]),b:pa(n[3]),a:SL(n[4]),format:t?"name":"hex8"}:(n=Rs.hex6.exec(e),n?{r:pa(n[1]),g:pa(n[2]),b:pa(n[3]),format:t?"name":"hex"}:(n=Rs.hex4.exec(e),n?{r:pa(n[1]+n[1]),g:pa(n[2]+n[2]),b:pa(n[3]+n[3]),a:SL(n[4]+n[4]),format:t?"name":"hex8"}:(n=Rs.hex3.exec(e),n?{r:pa(n[1]+n[1]),g:pa(n[2]+n[2]),b:pa(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function ku(e){return Boolean(Rs.CSS_UNIT.exec(String(e)))}var Ov=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=bhe(t)),this.originalInput=t;var i=xhe(t);this.originalInput=t,this.r=i.r,this.g=i.g,this.b=i.b,this.a=i.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:i.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=i.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,i,o=t.r/255,a=t.g/255,s=t.b/255;return o<=.03928?n=o/12.92:n=Math.pow((o+.055)/1.055,2.4),a<=.03928?r=a/12.92:r=Math.pow((a+.055)/1.055,2.4),s<=.03928?i=s/12.92:i=Math.pow((s+.055)/1.055,2.4),.2126*n+.7152*r+.0722*i},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=iF(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=bL(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=bL(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=yL(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=yL(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),i=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(i,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(i,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),xL(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),vhe(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Wi(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Wi(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+xL(this.r,this.g,this.b,!1),n=0,r=Object.entries(aC);n=0,o=!n&&i&&(t.startsWith("hex")||t==="name");return o?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=hy(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=hy(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=hy(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=hy(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),i=new e(t).toRgb(),o=n/100,a={r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a};return new e(a)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),i=360/n,o=[this];for(r.h=(r.h-(i*t>>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(new e(r));return o},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;t--;)a.push(new e({h:r,s:i,v:o})),o=(o+s)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,i=[this],o=360/t,a=1;an.length;)e.count=null,e.seed&&(e.seed+=1),n.push(oF(e));return e.count=t,n}var r=_he(e.hue,e.seed),i=khe(r,e),o=Ehe(r,i,e),a={h:r,s:i,v:o};return e.alpha!==void 0&&(a.a=e.alpha),new Ov(a)}function _he(e,t){var n=The(e),r=A3(n,t);return r<0&&(r=360+r),r}function khe(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return A3([0,100],t.seed);var n=aF(e).saturationRange,r=n[0],i=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=i-10;break;case"light":i=55;break}return A3([r,i],t.seed)}function Ehe(e,t,n){var r=Phe(e,t),i=100;switch(n.luminosity){case"dark":i=r+20;break;case"light":r=(i+r)/2;break;case"random":r=0,i=100;break}return A3([r,i],n.seed)}function Phe(e,t){for(var n=aF(e).lowerBounds,r=0;r=i&&t<=a){var l=(s-o)/(a-i),d=o-l*i;return l*t+d}}return 0}function The(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=lF.find(function(a){return a.name===e});if(n){var r=sF(n);if(r.hueRange)return r.hueRange}var i=new Ov(e);if(i.isValid){var o=i.toHsv().h;return[o,o]}}return[0,360]}function aF(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=lF;t=i.hueRange[0]&&e<=i.hueRange[1])return i}throw Error("Color not found")}function A3(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var i=t/233280;return Math.floor(r+i*(n-r))}function sF(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],i=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,i]}}var lF=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function Lhe(e,t,n,r,i){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,si=(e,t,n)=>{const r=Lhe(e,`colors.${t}`,t),{isValid:i}=new Ov(r);return i?r:n},Ihe=e=>t=>{const n=si(t,e);return new Ov(n).isDark()?"dark":"light"},Rhe=e=>t=>Ihe(e)(t)==="dark",$0=(e,t)=>n=>{const r=si(n,e);return new Ov(r).setAlpha(t).toRgbString()};function wL(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( - 45deg, - ${t} 25%, - transparent 25%, - transparent 50%, - ${t} 50%, - ${t} 75%, - transparent 75%, - transparent - )`,backgroundSize:`${e} ${e}`}}function Mhe(e){const t=oF().toHexString();return!e||Ahe(e)?t:e.string&&e.colors?Nhe(e.string,e.colors):e.string&&!e.colors?Ohe(e.string):e.colors&&!e.string?Dhe(e.colors):t}function Ohe(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function Nhe(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function F_(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function zhe(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function uF(e){return zhe(e)&&e.reference?e.reference:String(e)}var vb=(e,...t)=>t.map(uF).join(` ${e} `).replace(/calc/g,""),CL=(...e)=>`calc(${vb("+",...e)})`,_L=(...e)=>`calc(${vb("-",...e)})`,sC=(...e)=>`calc(${vb("*",...e)})`,kL=(...e)=>`calc(${vb("/",...e)})`,EL=e=>{const t=uF(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:sC(t,-1)},Iu=Object.assign(e=>({add:(...t)=>Iu(CL(e,...t)),subtract:(...t)=>Iu(_L(e,...t)),multiply:(...t)=>Iu(sC(e,...t)),divide:(...t)=>Iu(kL(e,...t)),negate:()=>Iu(EL(e)),toString:()=>e.toString()}),{add:CL,subtract:_L,multiply:sC,divide:kL,negate:EL});function $he(e){return!Number.isInteger(parseFloat(e.toString()))}function Fhe(e,t="-"){return e.replace(/\s+/g,t)}function cF(e){const t=Fhe(e.toString());return t.includes("\\.")?e:$he(e)?t.replace(".","\\."):e}function Bhe(e,t=""){return[t,cF(e)].filter(Boolean).join("-")}function Hhe(e,t){return`var(${cF(e)}${t?`, ${t}`:""})`}function Whe(e,t=""){return`--${Bhe(e,t)}`}function Zo(e,t){const n=Whe(e,t?.prefix);return{variable:n,reference:Hhe(n,Vhe(t?.fallback))}}function Vhe(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Uhe,defineMultiStyleConfig:Ghe}=ur(efe.keys),jhe={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},qhe={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Khe={pt:"2",px:"4",pb:"5"},Yhe={fontSize:"1.25em"},Zhe=Uhe({container:jhe,button:qhe,panel:Khe,icon:Yhe}),Xhe=Ghe({baseStyle:Zhe}),{definePartsStyle:Nv,defineMultiStyleConfig:Qhe}=ur(tfe.keys),Vu=Eh("alert-fg"),Dv=Eh("alert-bg"),Jhe=Nv({container:{bg:Dv.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:Vu.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:Vu.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function B_(e){const{theme:t,colorScheme:n}=e,r=si(t,`${n}.100`,n),i=$0(`${n}.200`,.16)(t);return Ae(r,i)(e)}var epe=Nv(e=>{const{colorScheme:t}=e,n=Ae(`${t}.500`,`${t}.200`)(e);return{container:{[Dv.variable]:B_(e),[Vu.variable]:`colors.${n}`}}}),tpe=Nv(e=>{const{colorScheme:t}=e,n=Ae(`${t}.500`,`${t}.200`)(e);return{container:{[Dv.variable]:B_(e),[Vu.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:Vu.reference}}}),npe=Nv(e=>{const{colorScheme:t}=e,n=Ae(`${t}.500`,`${t}.200`)(e);return{container:{[Dv.variable]:B_(e),[Vu.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:Vu.reference}}}),rpe=Nv(e=>{const{colorScheme:t}=e,n=Ae(`${t}.500`,`${t}.200`)(e),r=Ae("white","gray.900")(e);return{container:{[Dv.variable]:`colors.${n}`,[Vu.variable]:`colors.${r}`,color:Vu.reference}}}),ipe={subtle:epe,"left-accent":tpe,"top-accent":npe,solid:rpe},ope=Qhe({baseStyle:Jhe,variants:ipe,defaultProps:{variant:"subtle",colorScheme:"blue"}}),dF={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},ape={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},spe={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},lpe={...dF,...ape,container:spe},fF=lpe,upe=e=>typeof e=="function";function Ur(e,...t){return upe(e)?e(...t):e}var{definePartsStyle:hF,defineMultiStyleConfig:cpe}=ur(nfe.keys),dpe=e=>({borderRadius:"full",border:"0.2em solid",borderColor:Ae("white","gray.800")(e)}),fpe=e=>({bg:Ae("gray.200","whiteAlpha.400")(e)}),hpe=e=>{const{name:t,theme:n}=e,r=t?Mhe({string:t}):"gray.400",i=Rhe(r)(n);let o="white";i||(o="gray.800");const a=Ae("white","gray.800")(e);return{bg:r,color:o,borderColor:a,verticalAlign:"top"}},ppe=hF(e=>({badge:Ur(dpe,e),excessLabel:Ur(fpe,e),container:Ur(hpe,e)}));function Wc(e){const t=e!=="100%"?fF[e]:void 0;return hF({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var gpe={"2xs":Wc(4),xs:Wc(6),sm:Wc(8),md:Wc(12),lg:Wc(16),xl:Wc(24),"2xl":Wc(32),full:Wc("100%")},mpe=cpe({baseStyle:ppe,sizes:gpe,defaultProps:{size:"md"}}),vpe={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},ype=e=>{const{colorScheme:t,theme:n}=e,r=$0(`${t}.500`,.6)(n);return{bg:Ae(`${t}.500`,r)(e),color:Ae("white","whiteAlpha.800")(e)}},bpe=e=>{const{colorScheme:t,theme:n}=e,r=$0(`${t}.200`,.16)(n);return{bg:Ae(`${t}.100`,r)(e),color:Ae(`${t}.800`,`${t}.200`)(e)}},xpe=e=>{const{colorScheme:t,theme:n}=e,r=$0(`${t}.200`,.8)(n),i=si(n,`${t}.500`),o=Ae(i,r)(e);return{color:o,boxShadow:`inset 0 0 0px 1px ${o}`}},Spe={solid:ype,subtle:bpe,outline:xpe},lm={baseStyle:vpe,variants:Spe,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:wpe,definePartsStyle:Cpe}=ur(rfe.keys),_pe={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},kpe=Cpe({link:_pe}),Epe=wpe({baseStyle:kpe}),Ppe={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},pF=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:Ae("inherit","whiteAlpha.900")(e),_hover:{bg:Ae("gray.100","whiteAlpha.200")(e)},_active:{bg:Ae("gray.200","whiteAlpha.300")(e)}};const r=$0(`${t}.200`,.12)(n),i=$0(`${t}.200`,.24)(n);return{color:Ae(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:Ae(`${t}.50`,r)(e)},_active:{bg:Ae(`${t}.100`,i)(e)}}},Tpe=e=>{const{colorScheme:t}=e,n=Ae("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...Ur(pF,e)}},Lpe={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},Ape=e=>{const{colorScheme:t}=e;if(t==="gray"){const s=Ae("gray.100","whiteAlpha.200")(e);return{bg:s,_hover:{bg:Ae("gray.200","whiteAlpha.300")(e),_disabled:{bg:s}},_active:{bg:Ae("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:i=`${t}.600`,activeBg:o=`${t}.700`}=Lpe[t]??{},a=Ae(n,`${t}.200`)(e);return{bg:a,color:Ae(r,"gray.800")(e),_hover:{bg:Ae(i,`${t}.300`)(e),_disabled:{bg:a}},_active:{bg:Ae(o,`${t}.400`)(e)}}},Ipe=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:Ae(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:Ae(`${t}.700`,`${t}.500`)(e)}}},Rpe={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},Mpe={ghost:pF,outline:Tpe,solid:Ape,link:Ipe,unstyled:Rpe},Ope={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},Npe={baseStyle:Ppe,variants:Mpe,sizes:Ope,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:g5,defineMultiStyleConfig:Dpe}=ur(ife.keys),um=Eh("checkbox-size"),zpe=e=>{const{colorScheme:t}=e;return{w:um.reference,h:um.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:Ae(`${t}.500`,`${t}.200`)(e),borderColor:Ae(`${t}.500`,`${t}.200`)(e),color:Ae("white","gray.900")(e),_hover:{bg:Ae(`${t}.600`,`${t}.300`)(e),borderColor:Ae(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:Ae("gray.200","transparent")(e),bg:Ae("gray.200","whiteAlpha.300")(e),color:Ae("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:Ae(`${t}.500`,`${t}.200`)(e),borderColor:Ae(`${t}.500`,`${t}.200`)(e),color:Ae("white","gray.900")(e)},_disabled:{bg:Ae("gray.100","whiteAlpha.100")(e),borderColor:Ae("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:Ae("red.500","red.300")(e)}}},$pe={_disabled:{cursor:"not-allowed"}},Fpe={userSelect:"none",_disabled:{opacity:.4}},Bpe={transitionProperty:"transform",transitionDuration:"normal"},Hpe=g5(e=>({icon:Bpe,container:$pe,control:Ur(zpe,e),label:Fpe})),Wpe={sm:g5({control:{[um.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:g5({control:{[um.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:g5({control:{[um.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},I3=Dpe({baseStyle:Hpe,sizes:Wpe,defaultProps:{size:"md",colorScheme:"blue"}}),cm=Zo("close-button-size"),Vpe=e=>{const t=Ae("blackAlpha.100","whiteAlpha.100")(e),n=Ae("blackAlpha.200","whiteAlpha.200")(e);return{w:[cm.reference],h:[cm.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Upe={lg:{[cm.variable]:"sizes.10",fontSize:"md"},md:{[cm.variable]:"sizes.8",fontSize:"xs"},sm:{[cm.variable]:"sizes.6",fontSize:"2xs"}},Gpe={baseStyle:Vpe,sizes:Upe,defaultProps:{size:"md"}},{variants:jpe,defaultProps:qpe}=lm,Kpe={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},Ype={baseStyle:Kpe,variants:jpe,defaultProps:qpe},Zpe={w:"100%",mx:"auto",maxW:"prose",px:"4"},Xpe={baseStyle:Zpe},Qpe={opacity:.6,borderColor:"inherit"},Jpe={borderStyle:"solid"},e0e={borderStyle:"dashed"},t0e={solid:Jpe,dashed:e0e},n0e={baseStyle:Qpe,variants:t0e,defaultProps:{variant:"solid"}},{definePartsStyle:lC,defineMultiStyleConfig:r0e}=ur(ofe.keys);function Pp(e){return lC(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var i0e={bg:"blackAlpha.600",zIndex:"overlay"},o0e={display:"flex",zIndex:"modal",justifyContent:"center"},a0e=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:Ae("white","gray.700")(e),color:"inherit",boxShadow:Ae("lg","dark-lg")(e)}},s0e={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},l0e={position:"absolute",top:"2",insetEnd:"3"},u0e={px:"6",py:"2",flex:"1",overflow:"auto"},c0e={px:"6",py:"4"},d0e=lC(e=>({overlay:i0e,dialogContainer:o0e,dialog:Ur(a0e,e),header:s0e,closeButton:l0e,body:u0e,footer:c0e})),f0e={xs:Pp("xs"),sm:Pp("md"),md:Pp("lg"),lg:Pp("2xl"),xl:Pp("4xl"),full:Pp("full")},h0e=r0e({baseStyle:d0e,sizes:f0e,defaultProps:{size:"xs"}}),{definePartsStyle:p0e,defineMultiStyleConfig:g0e}=ur(afe.keys),m0e={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},v0e={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},y0e={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},b0e=p0e({preview:m0e,input:v0e,textarea:y0e}),x0e=g0e({baseStyle:b0e}),{definePartsStyle:S0e,defineMultiStyleConfig:w0e}=ur(sfe.keys),C0e=e=>({marginStart:"1",color:Ae("red.500","red.300")(e)}),_0e=e=>({mt:"2",color:Ae("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),k0e=S0e(e=>({container:{width:"100%",position:"relative"},requiredIndicator:Ur(C0e,e),helperText:Ur(_0e,e)})),E0e=w0e({baseStyle:k0e}),{definePartsStyle:P0e,defineMultiStyleConfig:T0e}=ur(lfe.keys),L0e=e=>({color:Ae("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),A0e=e=>({marginEnd:"0.5em",color:Ae("red.500","red.300")(e)}),I0e=P0e(e=>({text:Ur(L0e,e),icon:Ur(A0e,e)})),R0e=T0e({baseStyle:I0e}),M0e={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},O0e={baseStyle:M0e},N0e={fontFamily:"heading",fontWeight:"bold"},D0e={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},z0e={baseStyle:N0e,sizes:D0e,defaultProps:{size:"xl"}},{definePartsStyle:Ou,defineMultiStyleConfig:$0e}=ur(ufe.keys),F0e=Ou({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),Vc={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},B0e={lg:Ou({field:Vc.lg,addon:Vc.lg}),md:Ou({field:Vc.md,addon:Vc.md}),sm:Ou({field:Vc.sm,addon:Vc.sm}),xs:Ou({field:Vc.xs,addon:Vc.xs})};function H_(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||Ae("blue.500","blue.300")(e),errorBorderColor:n||Ae("red.500","red.300")(e)}}var H0e=Ou(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=H_(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:Ae("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:si(t,r),boxShadow:`0 0 0 1px ${si(t,r)}`},_focusVisible:{zIndex:1,borderColor:si(t,n),boxShadow:`0 0 0 1px ${si(t,n)}`}},addon:{border:"1px solid",borderColor:Ae("inherit","whiteAlpha.50")(e),bg:Ae("gray.100","whiteAlpha.300")(e)}}}),W0e=Ou(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=H_(e);return{field:{border:"2px solid",borderColor:"transparent",bg:Ae("gray.100","whiteAlpha.50")(e),_hover:{bg:Ae("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:si(t,r)},_focusVisible:{bg:"transparent",borderColor:si(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:Ae("gray.100","whiteAlpha.50")(e)}}}),V0e=Ou(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=H_(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:si(t,r),boxShadow:`0px 1px 0px 0px ${si(t,r)}`},_focusVisible:{borderColor:si(t,n),boxShadow:`0px 1px 0px 0px ${si(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),U0e=Ou({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),G0e={outline:H0e,filled:W0e,flushed:V0e,unstyled:U0e},Cn=$0e({baseStyle:F0e,sizes:B0e,variants:G0e,defaultProps:{size:"md",variant:"outline"}}),j0e=e=>({bg:Ae("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),q0e={baseStyle:j0e},K0e={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Y0e={baseStyle:K0e},{defineMultiStyleConfig:Z0e,definePartsStyle:X0e}=ur(cfe.keys),Q0e={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},J0e=X0e({icon:Q0e}),e1e=Z0e({baseStyle:J0e}),{defineMultiStyleConfig:t1e,definePartsStyle:n1e}=ur(dfe.keys),r1e=e=>({bg:Ae("#fff","gray.700")(e),boxShadow:Ae("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),i1e=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:Ae("gray.100","whiteAlpha.100")(e)},_active:{bg:Ae("gray.200","whiteAlpha.200")(e)},_expanded:{bg:Ae("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),o1e={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},a1e={opacity:.6},s1e={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},l1e={transitionProperty:"common",transitionDuration:"normal"},u1e=n1e(e=>({button:l1e,list:Ur(r1e,e),item:Ur(i1e,e),groupTitle:o1e,command:a1e,divider:s1e})),c1e=t1e({baseStyle:u1e}),{defineMultiStyleConfig:d1e,definePartsStyle:uC}=ur(ffe.keys),f1e={bg:"blackAlpha.600",zIndex:"modal"},h1e=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},p1e=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:Ae("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:Ae("lg","dark-lg")(e)}},g1e={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},m1e={position:"absolute",top:"2",insetEnd:"3"},v1e=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},y1e={px:"6",py:"4"},b1e=uC(e=>({overlay:f1e,dialogContainer:Ur(h1e,e),dialog:Ur(p1e,e),header:g1e,closeButton:m1e,body:Ur(v1e,e),footer:y1e}));function Is(e){return uC(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var x1e={xs:Is("xs"),sm:Is("sm"),md:Is("md"),lg:Is("lg"),xl:Is("xl"),"2xl":Is("2xl"),"3xl":Is("3xl"),"4xl":Is("4xl"),"5xl":Is("5xl"),"6xl":Is("6xl"),full:Is("full")},S1e=d1e({baseStyle:b1e,sizes:x1e,defaultProps:{size:"md"}}),w1e={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},gF=w1e,{defineMultiStyleConfig:C1e,definePartsStyle:mF}=ur(hfe.keys),W_=Zo("number-input-stepper-width"),vF=Zo("number-input-input-padding"),_1e=Iu(W_).add("0.5rem").toString(),k1e={[W_.variable]:"sizes.6",[vF.variable]:_1e},E1e=e=>{var t;return((t=Ur(Cn.baseStyle,e))==null?void 0:t.field)??{}},P1e={width:[W_.reference]},T1e=e=>({borderStart:"1px solid",borderStartColor:Ae("inherit","whiteAlpha.300")(e),color:Ae("inherit","whiteAlpha.800")(e),_active:{bg:Ae("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),L1e=mF(e=>({root:k1e,field:E1e,stepperGroup:P1e,stepper:Ur(T1e,e)??{}}));function gy(e){var t,n;const r=(t=Cn.sizes)==null?void 0:t[e],i={lg:"md",md:"md",sm:"sm",xs:"sm"},o=((n=r.field)==null?void 0:n.fontSize)??"md",a=gF.fontSizes[o];return mF({field:{...r.field,paddingInlineEnd:vF.reference,verticalAlign:"top"},stepper:{fontSize:Iu(a).multiply(.75).toString(),_first:{borderTopEndRadius:i[e]},_last:{borderBottomEndRadius:i[e],mt:"-1px",borderTopWidth:1}}})}var A1e={xs:gy("xs"),sm:gy("sm"),md:gy("md"),lg:gy("lg")},I1e=C1e({baseStyle:L1e,sizes:A1e,variants:Cn.variants,defaultProps:Cn.defaultProps}),PL,R1e={...(PL=Cn.baseStyle)==null?void 0:PL.field,textAlign:"center"},M1e={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},TL,O1e={outline:e=>{var t,n;return((n=Ur((t=Cn.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=Ur((t=Cn.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=Ur((t=Cn.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((TL=Cn.variants)==null?void 0:TL.unstyled.field)??{}},N1e={baseStyle:R1e,sizes:M1e,variants:O1e,defaultProps:Cn.defaultProps},{defineMultiStyleConfig:D1e,definePartsStyle:z1e}=ur(pfe.keys),PS=Zo("popper-bg"),$1e=Zo("popper-arrow-bg"),F1e=Zo("popper-arrow-shadow-color"),B1e={zIndex:10},H1e=e=>{const t=Ae("white","gray.700")(e),n=Ae("gray.200","whiteAlpha.300")(e);return{[PS.variable]:`colors.${t}`,bg:PS.reference,[$1e.variable]:PS.reference,[F1e.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},W1e={px:3,py:2,borderBottomWidth:"1px"},V1e={px:3,py:2},U1e={px:3,py:2,borderTopWidth:"1px"},G1e={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},j1e=z1e(e=>({popper:B1e,content:H1e(e),header:W1e,body:V1e,footer:U1e,closeButton:G1e})),q1e=D1e({baseStyle:j1e}),{defineMultiStyleConfig:K1e,definePartsStyle:Ag}=ur(gfe.keys),Y1e=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:i}=e,o=Ae(wL(),wL("1rem","rgba(0,0,0,0.1)"))(e),a=Ae(`${t}.500`,`${t}.200`)(e),s=`linear-gradient( - to right, - transparent 0%, - ${si(n,a)} 50%, - transparent 100% - )`;return{...!r&&i&&o,...r?{bgImage:s}:{bgColor:a}}},Z1e={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},X1e=e=>({bg:Ae("gray.100","whiteAlpha.300")(e)}),Q1e=e=>({transitionProperty:"common",transitionDuration:"slow",...Y1e(e)}),J1e=Ag(e=>({label:Z1e,filledTrack:Q1e(e),track:X1e(e)})),ege={xs:Ag({track:{h:"1"}}),sm:Ag({track:{h:"2"}}),md:Ag({track:{h:"3"}}),lg:Ag({track:{h:"4"}})},tge=K1e({sizes:ege,baseStyle:J1e,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:nge,definePartsStyle:m5}=ur(mfe.keys),rge=e=>{var t;const n=(t=Ur(I3.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},ige=m5(e=>{var t,n,r,i;return{label:(n=(t=I3).baseStyle)==null?void 0:n.call(t,e).label,container:(i=(r=I3).baseStyle)==null?void 0:i.call(r,e).container,control:rge(e)}}),oge={md:m5({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:m5({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:m5({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},age=nge({baseStyle:ige,sizes:oge,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:sge,definePartsStyle:lge}=ur(vfe.keys),uge=e=>{var t;return{...(t=Cn.baseStyle)==null?void 0:t.field,bg:Ae("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:Ae("white","gray.700")(e)}}},cge={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},dge=lge(e=>({field:uge(e),icon:cge})),my={paddingInlineEnd:"8"},LL,AL,IL,RL,ML,OL,NL,DL,fge={lg:{...(LL=Cn.sizes)==null?void 0:LL.lg,field:{...(AL=Cn.sizes)==null?void 0:AL.lg.field,...my}},md:{...(IL=Cn.sizes)==null?void 0:IL.md,field:{...(RL=Cn.sizes)==null?void 0:RL.md.field,...my}},sm:{...(ML=Cn.sizes)==null?void 0:ML.sm,field:{...(OL=Cn.sizes)==null?void 0:OL.sm.field,...my}},xs:{...(NL=Cn.sizes)==null?void 0:NL.xs,field:{...(DL=Cn.sizes)==null?void 0:DL.sm.field,...my},icon:{insetEnd:"1"}}},hge=sge({baseStyle:dge,sizes:fge,variants:Cn.variants,defaultProps:Cn.defaultProps}),pge=Eh("skeleton-start-color"),gge=Eh("skeleton-end-color"),mge=e=>{const t=Ae("gray.100","gray.800")(e),n=Ae("gray.400","gray.600")(e),{startColor:r=t,endColor:i=n,theme:o}=e,a=si(o,r),s=si(o,i);return{[pge.variable]:a,[gge.variable]:s,opacity:.7,borderRadius:"2px",borderColor:a,background:s}},vge={baseStyle:mge},yge=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:Ae("white","gray.700")(e)}}),bge={baseStyle:yge},{defineMultiStyleConfig:xge,definePartsStyle:yb}=ur(yfe.keys),tv=Eh("slider-thumb-size"),nv=Eh("slider-track-size"),Sge=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...F_({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},wge=e=>({...F_({orientation:e.orientation,horizontal:{h:nv.reference},vertical:{w:nv.reference}}),overflow:"hidden",borderRadius:"sm",bg:Ae("gray.200","whiteAlpha.200")(e),_disabled:{bg:Ae("gray.300","whiteAlpha.300")(e)}}),Cge=e=>{const{orientation:t}=e;return{...F_({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:tv.reference,h:tv.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},_ge=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:Ae(`${t}.500`,`${t}.200`)(e)}},kge=yb(e=>({container:Sge(e),track:wge(e),thumb:Cge(e),filledTrack:_ge(e)})),Ege=yb({container:{[tv.variable]:"sizes.4",[nv.variable]:"sizes.1"}}),Pge=yb({container:{[tv.variable]:"sizes.3.5",[nv.variable]:"sizes.1"}}),Tge=yb({container:{[tv.variable]:"sizes.2.5",[nv.variable]:"sizes.0.5"}}),Lge={lg:Ege,md:Pge,sm:Tge},Age=xge({baseStyle:kge,sizes:Lge,defaultProps:{size:"md",colorScheme:"blue"}}),Vf=Zo("spinner-size"),Ige={width:[Vf.reference],height:[Vf.reference]},Rge={xs:{[Vf.variable]:"sizes.3"},sm:{[Vf.variable]:"sizes.4"},md:{[Vf.variable]:"sizes.6"},lg:{[Vf.variable]:"sizes.8"},xl:{[Vf.variable]:"sizes.12"}},Mge={baseStyle:Ige,sizes:Rge,defaultProps:{size:"md"}},{defineMultiStyleConfig:Oge,definePartsStyle:yF}=ur(bfe.keys),Nge={fontWeight:"medium"},Dge={opacity:.8,marginBottom:"2"},zge={verticalAlign:"baseline",fontWeight:"semibold"},$ge={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},Fge=yF({container:{},label:Nge,helpText:Dge,number:zge,icon:$ge}),Bge={md:yF({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},Hge=Oge({baseStyle:Fge,sizes:Bge,defaultProps:{size:"md"}}),{defineMultiStyleConfig:Wge,definePartsStyle:v5}=ur(xfe.keys),dm=Zo("switch-track-width"),sh=Zo("switch-track-height"),TS=Zo("switch-track-diff"),Vge=Iu.subtract(dm,sh),cC=Zo("switch-thumb-x"),Uge=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[dm.reference],height:[sh.reference],transitionProperty:"common",transitionDuration:"fast",bg:Ae("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:Ae(`${t}.500`,`${t}.200`)(e)}}},Gge={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[sh.reference],height:[sh.reference],_checked:{transform:`translateX(${cC.reference})`}},jge=v5(e=>({container:{[TS.variable]:Vge,[cC.variable]:TS.reference,_rtl:{[cC.variable]:Iu(TS).negate().toString()}},track:Uge(e),thumb:Gge})),qge={sm:v5({container:{[dm.variable]:"1.375rem",[sh.variable]:"sizes.3"}}),md:v5({container:{[dm.variable]:"1.875rem",[sh.variable]:"sizes.4"}}),lg:v5({container:{[dm.variable]:"2.875rem",[sh.variable]:"sizes.6"}})},Kge=Wge({baseStyle:jge,sizes:qge,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Yge,definePartsStyle:m0}=ur(Sfe.keys),Zge=m0({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),R3={"&[data-is-numeric=true]":{textAlign:"end"}},Xge=m0(e=>{const{colorScheme:t}=e;return{th:{color:Ae("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Ae(`${t}.100`,`${t}.700`)(e),...R3},td:{borderBottom:"1px",borderColor:Ae(`${t}.100`,`${t}.700`)(e),...R3},caption:{color:Ae("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Qge=m0(e=>{const{colorScheme:t}=e;return{th:{color:Ae("gray.600","gray.400")(e),borderBottom:"1px",borderColor:Ae(`${t}.100`,`${t}.700`)(e),...R3},td:{borderBottom:"1px",borderColor:Ae(`${t}.100`,`${t}.700`)(e),...R3},caption:{color:Ae("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:Ae(`${t}.100`,`${t}.700`)(e)},td:{background:Ae(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Jge={simple:Xge,striped:Qge,unstyled:{}},eme={sm:m0({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:m0({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:m0({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},tme=Yge({baseStyle:Zge,variants:Jge,sizes:eme,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:nme,definePartsStyle:$l}=ur(wfe.keys),rme=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},ime=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},ome=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},ame={p:4},sme=$l(e=>({root:rme(e),tab:ime(e),tablist:ome(e),tabpanel:ame})),lme={sm:$l({tab:{py:1,px:4,fontSize:"sm"}}),md:$l({tab:{fontSize:"md",py:2,px:4}}),lg:$l({tab:{fontSize:"lg",py:3,px:4}})},ume=$l(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",i=n==="vertical"?"borderStart":"borderBottom",o=r?"marginStart":"marginBottom";return{tablist:{[i]:"2px solid",borderColor:"inherit"},tab:{[i]:"2px solid",borderColor:"transparent",[o]:"-2px",_selected:{color:Ae(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:Ae("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),cme=$l(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:Ae(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:Ae("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),dme=$l(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:Ae("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:Ae("#fff","gray.800")(e),color:Ae(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),fme=$l(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:si(n,`${t}.700`),bg:si(n,`${t}.100`)}}}}),hme=$l(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:Ae("gray.600","inherit")(e),_selected:{color:Ae("#fff","gray.800")(e),bg:Ae(`${t}.600`,`${t}.300`)(e)}}}}),pme=$l({}),gme={line:ume,enclosed:cme,"enclosed-colored":dme,"soft-rounded":fme,"solid-rounded":hme,unstyled:pme},mme=nme({baseStyle:sme,sizes:lme,variants:gme,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:vme,definePartsStyle:lh}=ur(Cfe.keys),yme={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},bme={lineHeight:1.2,overflow:"visible"},xme={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},Sme=lh({container:yme,label:bme,closeButton:xme}),wme={sm:lh({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:lh({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:lh({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},Cme={subtle:lh(e=>{var t;return{container:(t=lm.variants)==null?void 0:t.subtle(e)}}),solid:lh(e=>{var t;return{container:(t=lm.variants)==null?void 0:t.solid(e)}}),outline:lh(e=>{var t;return{container:(t=lm.variants)==null?void 0:t.outline(e)}})},_me=vme({variants:Cme,baseStyle:Sme,sizes:wme,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),zL,kme={...(zL=Cn.baseStyle)==null?void 0:zL.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},$L,Eme={outline:e=>{var t;return((t=Cn.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=Cn.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=Cn.variants)==null?void 0:t.filled(e).field)??{}},unstyled:(($L=Cn.variants)==null?void 0:$L.unstyled.field)??{}},FL,BL,HL,WL,Pme={xs:((FL=Cn.sizes)==null?void 0:FL.xs.field)??{},sm:((BL=Cn.sizes)==null?void 0:BL.sm.field)??{},md:((HL=Cn.sizes)==null?void 0:HL.md.field)??{},lg:((WL=Cn.sizes)==null?void 0:WL.lg.field)??{}},Tme={baseStyle:kme,sizes:Pme,variants:Eme,defaultProps:{size:"md",variant:"outline"}},LS=Zo("tooltip-bg"),VL=Zo("tooltip-fg"),Lme=Zo("popper-arrow-bg"),Ame=e=>{const t=Ae("gray.700","gray.300")(e),n=Ae("whiteAlpha.900","gray.900")(e);return{bg:LS.reference,color:VL.reference,[LS.variable]:`colors.${t}`,[VL.variable]:`colors.${n}`,[Lme.variable]:LS.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},Ime={baseStyle:Ame},Rme={Accordion:Xhe,Alert:ope,Avatar:mpe,Badge:lm,Breadcrumb:Epe,Button:Npe,Checkbox:I3,CloseButton:Gpe,Code:Ype,Container:Xpe,Divider:n0e,Drawer:h0e,Editable:x0e,Form:E0e,FormError:R0e,FormLabel:O0e,Heading:z0e,Input:Cn,Kbd:q0e,Link:Y0e,List:e1e,Menu:c1e,Modal:S1e,NumberInput:I1e,PinInput:N1e,Popover:q1e,Progress:tge,Radio:age,Select:hge,Skeleton:vge,SkipLink:bge,Slider:Age,Spinner:Mge,Stat:Hge,Switch:Kge,Table:tme,Tabs:mme,Tag:_me,Textarea:Tme,Tooltip:Ime},Mme={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},Ome=Mme,Nme={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},Dme=Nme,zme={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},$me=zme,Fme={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},Bme=Fme,Hme={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},Wme=Hme,Vme={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Ume={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Gme={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},jme={property:Vme,easing:Ume,duration:Gme},qme=jme,Kme={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},Yme=Kme,Zme={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},Xme=Zme,Qme={breakpoints:Dme,zIndices:Yme,radii:Bme,blur:Xme,colors:$me,...gF,sizes:fF,shadows:Wme,space:dF,borders:Ome,transition:qme},Jme={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},eve={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function tve(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var nve=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function rve(e){return tve(e)?nve.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var ive="ltr",ove={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},bF={semanticTokens:Jme,direction:ive,...Qme,components:Rme,styles:eve,config:ove};function ave(e,t){const n=Ar(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function dC(e,...t){return sve(e)?e(...t):e}var sve=e=>typeof e=="function";function lve(e,t){const n=e??"bottom",i={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return i?.[t]??n}var uve=(e,t)=>e.find(n=>n.id===t);function UL(e,t){const n=xF(e,t),r=n?e[n].findIndex(i=>i.id===t):-1;return{position:n,index:r}}function xF(e,t){for(const[n,r]of Object.entries(e))if(uve(r,t))return n}function cve(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function dve(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,i=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,o=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",a=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:i,right:o,left:a}}var fve={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},Ll=hve(fve);function hve(e){let t=e;const n=new Set,r=i=>{t=i(t),n.forEach(o=>o())};return{getState:()=>t,subscribe:i=>(n.add(i),()=>{r(()=>e),n.delete(i)}),removeToast:(i,o)=>{r(a=>({...a,[o]:a[o].filter(s=>s.id!=i)}))},notify:(i,o)=>{const a=pve(i,o),{position:s,id:l}=a;return r(d=>{const g=s.includes("top")?[a,...d[s]??[]]:[...d[s]??[],a];return{...d,[s]:g}}),l},update:(i,o)=>{!i||r(a=>{const s={...a},{position:l,index:d}=UL(s,i);return l&&d!==-1&&(s[l][d]={...s[l][d],...o,message:SF(o)}),s})},closeAll:({positions:i}={})=>{r(o=>(i??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((l,d)=>(l[d]=o[d].map(p=>({...p,requestClose:!0})),l),{...o}))},close:i=>{r(o=>{const a=xF(o,i);return a?{...o,[a]:o[a].map(s=>s.id==i?{...s,requestClose:!0}:s)}:o})},isActive:i=>Boolean(UL(Ll.getState(),i).position)}}var GL=0;function pve(e,t={}){GL+=1;const n=t.id??GL,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>Ll.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var gve=e=>{const{status:t,variant:n="solid",id:r,title:i,isClosable:o,onClose:a,description:s,icon:l}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return re.createElement(RD,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},w(OD,{children:l}),re.createElement(Ce.div,{flex:"1",maxWidth:"100%"},i&&w(ND,{id:d?.title,children:i}),s&&w(MD,{id:d?.description,display:"block",children:s})),o&&w(rb,{size:"sm",onClick:a,position:"absolute",insetEnd:1,top:1}))};function SF(e={}){const{render:t,toastComponent:n=gve}=e;return i=>typeof t=="function"?t(i):w(n,{...i,...e})}function mve(e,t){const n=i=>({...t,...i,position:lve(i?.position??t?.position,e)}),r=i=>{const o=n(i),a=SF(o);return Ll.notify(a,o)};return r.update=(i,o)=>{Ll.update(i,n(o))},r.promise=(i,o)=>{const a=r({...o.loading,status:"loading",duration:null});i.then(s=>r.update(a,{status:"success",duration:5e3,...dC(o.success,s)})).catch(s=>r.update(a,{status:"error",duration:5e3,...dC(o.error,s)}))},r.closeAll=Ll.closeAll,r.close=Ll.close,r.isActive=Ll.isActive,r}function Id(e){const{theme:t}=YO();return C.exports.useMemo(()=>mve(t.direction,e),[e,t.direction])}var vve={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},wF=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:i,requestClose:o=!1,position:a="bottom",duration:s=5e3,containerStyle:l,motionVariants:d=vve,toastSpacing:p="0.5rem"}=e,[g,m]=C.exports.useState(s),y=tne();I0(()=>{y||r?.()},[y]),I0(()=>{m(s)},[s]);const b=()=>m(null),S=()=>m(s),E=()=>{y&&i()};C.exports.useEffect(()=>{y&&o&&i()},[y,o,i]),ave(E,g);const P=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:p,...l}),[l,p]),k=C.exports.useMemo(()=>cve(a),[a]);return re.createElement(ls.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:S,custom:{position:a},style:k},re.createElement(Ce.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:P},dC(n,{id:t,onClose:E})))});wF.displayName="ToastComponent";var yve=e=>{const t=C.exports.useSyncExternalStore(Ll.subscribe,Ll.getState,Ll.getState),{children:n,motionVariants:r,component:i=wF,portalProps:o}=e,s=Object.keys(t).map(l=>{const d=t[l];return w("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${l}`,style:dve(l),children:w(Yu,{initial:!1,children:d.map(p=>w(i,{motionVariants:r,...p},p.id))})},l)});return ne(Un,{children:[n,w(wh,{...o,children:s})]})};function bve(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xve(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var Sve={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function pg(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var fC=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},hC=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function wve(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:i,closeOnEsc:o=!0,onOpen:a,onClose:s,placement:l,id:d,isOpen:p,defaultIsOpen:g,arrowSize:m=10,arrowShadowColor:y,arrowPadding:b,modifiers:S,isDisabled:E,gutter:P,offset:k,direction:L,...R}=e,{isOpen:N,onOpen:z,onClose:$}=kz({isOpen:p,defaultIsOpen:g,onOpen:a,onClose:s}),{referenceRef:F,getPopperProps:q,getArrowInnerProps:j,getArrowProps:Y}=_z({enabled:N,placement:l,arrowPadding:b,modifiers:S,gutter:P,offset:k,direction:L}),ve=C.exports.useId(),Se=`tooltip-${d??ve}`,_e=C.exports.useRef(null),we=C.exports.useRef(),J=C.exports.useRef(),G=C.exports.useCallback(()=>{J.current&&(clearTimeout(J.current),J.current=void 0),$()},[$]),te=Cve(_e,G),Q=C.exports.useCallback(()=>{if(!E&&!we.current){te();const Ee=hC(_e);we.current=Ee.setTimeout(z,t)}},[te,E,z,t]),W=C.exports.useCallback(()=>{we.current&&(clearTimeout(we.current),we.current=void 0);const Ee=hC(_e);J.current=Ee.setTimeout(G,n)},[n,G]),se=C.exports.useCallback(()=>{N&&r&&W()},[r,W,N]),de=C.exports.useCallback(()=>{N&&i&&W()},[i,W,N]),xe=C.exports.useCallback(Ee=>{N&&Ee.key==="Escape"&&W()},[N,W]);U6(()=>fC(_e),"keydown",o?xe:void 0),C.exports.useEffect(()=>()=>{clearTimeout(we.current),clearTimeout(J.current)},[]),U6(()=>_e.current,"mouseleave",W);const ze=C.exports.useCallback((Ee={},Ve=null)=>({...Ee,ref:Vn(_e,Ve,F),onMouseEnter:pg(Ee.onMouseEnter,Q),onClick:pg(Ee.onClick,se),onMouseDown:pg(Ee.onMouseDown,de),onFocus:pg(Ee.onFocus,Q),onBlur:pg(Ee.onBlur,W),"aria-describedby":N?Se:void 0}),[Q,W,de,N,Se,se,F]),Me=C.exports.useCallback((Ee={},Ve=null)=>q({...Ee,style:{...Ee.style,[Qr.arrowSize.var]:m?`${m}px`:void 0,[Qr.arrowShadowColor.var]:y}},Ve),[q,m,y]),Ue=C.exports.useCallback((Ee={},Ve=null)=>{const ot={...Ee.style,position:"relative",transformOrigin:Qr.transformOrigin.varRef};return{ref:Ve,...R,...Ee,id:Se,role:"tooltip",style:ot}},[R,Se]);return{isOpen:N,show:Q,hide:W,getTriggerProps:ze,getTooltipProps:Ue,getTooltipPositionerProps:Me,getArrowProps:Y,getArrowInnerProps:j}}var AS="chakra-ui:close-tooltip";function Cve(e,t){return C.exports.useEffect(()=>{const n=fC(e);return n.addEventListener(AS,t),()=>n.removeEventListener(AS,t)},[t,e]),()=>{const n=fC(e),r=hC(e);n.dispatchEvent(new r.CustomEvent(AS))}}var _ve=Ce(ls.div),li=Le((e,t)=>{const n=Eo("Tooltip",e),r=_n(e),i=q0(),{children:o,label:a,shouldWrapChildren:s,"aria-label":l,hasArrow:d,bg:p,portalProps:g,background:m,backgroundColor:y,bgColor:b,...S}=r,E=m??y??p??b;if(E){n.bg=E;const F=dX(i,"colors",E);n[Qr.arrowBg.var]=F}const P=wve({...S,direction:i.direction}),k=typeof o=="string"||s;let L;if(k)L=re.createElement(Ce.span,{tabIndex:0,...P.getTriggerProps()},o);else{const F=C.exports.Children.only(o);L=C.exports.cloneElement(F,P.getTriggerProps(F.props,F.ref))}const R=!!l,N=P.getTooltipProps({},t),z=R?bve(N,["role","id"]):N,$=xve(N,["role","id"]);return a?ne(Un,{children:[L,w(Yu,{children:P.isOpen&&re.createElement(wh,{...g},re.createElement(Ce.div,{...P.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},ne(_ve,{variants:Sve,...z,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[a,R&&re.createElement(Ce.span,{srOnly:!0,...$},l),d&&re.createElement(Ce.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},re.createElement(Ce.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):w(Un,{children:o})});li.displayName="Tooltip";var kve=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:i=!0,theme:o={},environment:a,cssVarsRoot:s}=e,l=w(hz,{environment:a,children:t});return w(pJ,{theme:o,cssVarsRoot:s,children:ne(cO,{colorModeManager:n,options:o.config,children:[i?w(Woe,{}):w(Hoe,{}),w(mJ,{}),r?w(Pz,{zIndex:r,children:l}):l]})})};function Eve({children:e,theme:t=bF,toastOptions:n,...r}){return ne(kve,{theme:t,...r,children:[e,w(yve,{...n})]})}function Pve(...e){let t=[...e],n=e[e.length-1];return rve(n)&&t.length>1?t=t.slice(0,t.length-1):n=bF,MQ(...t.map(r=>i=>Kp(r)?r(i):Tve(i,r)))(n)}function Tve(...e){return Bu({},...e,CF)}function CF(e,t,n,r){if((Kp(e)||Kp(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...i)=>{const o=Kp(e)?e(...i):e,a=Kp(t)?t(...i):t;return Bu({},o,a,CF)}}function $s(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:V_(e)?2:U_(e)?3:0}function v0(e,t){return n1(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Lve(e,t){return n1(e)===2?e.get(t):e[t]}function _F(e,t,n){var r=n1(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function kF(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function V_(e){return Nve&&e instanceof Map}function U_(e){return Dve&&e instanceof Set}function $f(e){return e.o||e.t}function G_(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=PF(e);delete t[sr];for(var n=y0(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=Ave),Object.freeze(e),t&&gh(e,function(n,r){return j_(r,!0)},!0)),e}function Ave(){$s(2)}function q_(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function Fl(e){var t=vC[e];return t||$s(18,e),t}function Ive(e,t){vC[e]||(vC[e]=t)}function pC(){return rv}function IS(e,t){t&&(Fl("Patches"),e.u=[],e.s=[],e.v=t)}function M3(e){gC(e),e.p.forEach(Rve),e.p=null}function gC(e){e===rv&&(rv=e.l)}function jL(e){return rv={p:[],l:rv,h:e,m:!0,_:0}}function Rve(e){var t=e[sr];t.i===0||t.i===1?t.j():t.O=!0}function RS(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||Fl("ES5").S(t,e,r),r?(n[sr].P&&(M3(t),$s(4)),Uu(e)&&(e=O3(t,e),t.l||N3(t,e)),t.u&&Fl("Patches").M(n[sr].t,e,t.u,t.s)):e=O3(t,n,[]),M3(t),t.u&&t.v(t.u,t.s),e!==EF?e:void 0}function O3(e,t,n){if(q_(t))return t;var r=t[sr];if(!r)return gh(t,function(o,a){return qL(e,r,t,o,a,n)},!0),t;if(r.A!==e)return t;if(!r.P)return N3(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=r.i===4||r.i===5?r.o=G_(r.k):r.o;gh(r.i===3?new Set(i):i,function(o,a){return qL(e,r,i,o,a,n)}),N3(e,i,!1),n&&e.u&&Fl("Patches").R(r,n,e.u,e.s)}return r.o}function qL(e,t,n,r,i,o){if(Sd(i)){var a=O3(e,i,o&&t&&t.i!==3&&!v0(t.D,r)?o.concat(r):void 0);if(_F(n,r,a),!Sd(a))return;e.m=!1}if(Uu(i)&&!q_(i)){if(!e.h.F&&e._<1)return;O3(e,i),t&&t.A.l||N3(e,i)}}function N3(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&j_(t,n)}function MS(e,t){var n=e[sr];return(n?$f(n):e)[t]}function KL(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function Jc(e){e.P||(e.P=!0,e.l&&Jc(e.l))}function OS(e){e.o||(e.o=G_(e.t))}function mC(e,t,n){var r=V_(t)?Fl("MapSet").N(t,n):U_(t)?Fl("MapSet").T(t,n):e.g?function(i,o){var a=Array.isArray(i),s={i:a?1:0,A:o?o.A:pC(),P:!1,I:!1,D:{},l:o,t:i,k:null,o:null,j:null,C:!1},l=s,d=iv;a&&(l=[s],d=Ig);var p=Proxy.revocable(l,d),g=p.revoke,m=p.proxy;return s.k=m,s.j=g,m}(t,n):Fl("ES5").J(t,n);return(n?n.A:pC()).p.push(r),r}function Mve(e){return Sd(e)||$s(22,e),function t(n){if(!Uu(n))return n;var r,i=n[sr],o=n1(n);if(i){if(!i.P&&(i.i<4||!Fl("ES5").K(i)))return i.t;i.I=!0,r=YL(n,o),i.I=!1}else r=YL(n,o);return gh(r,function(a,s){i&&Lve(i.t,a)===s||_F(r,a,t(s))}),o===3?new Set(r):r}(e)}function YL(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return G_(e)}function Ove(){function e(o,a){var s=i[o];return s?s.enumerable=a:i[o]=s={configurable:!0,enumerable:a,get:function(){var l=this[sr];return iv.get(l,o)},set:function(l){var d=this[sr];iv.set(d,o,l)}},s}function t(o){for(var a=o.length-1;a>=0;a--){var s=o[a][sr];if(!s.P)switch(s.i){case 5:r(s)&&Jc(s);break;case 4:n(s)&&Jc(s)}}}function n(o){for(var a=o.t,s=o.k,l=y0(s),d=l.length-1;d>=0;d--){var p=l[d];if(p!==sr){var g=a[p];if(g===void 0&&!v0(a,p))return!0;var m=s[p],y=m&&m[sr];if(y?y.t!==g:!kF(m,g))return!0}}var b=!!a[sr];return l.length!==y0(a).length+(b?0:1)}function r(o){var a=o.k;if(a.length!==o.t.length)return!0;var s=Object.getOwnPropertyDescriptor(a,a.length-1);if(s&&!s.get)return!0;for(var l=0;l1?P-1:0),L=1;L1?p-1:0),m=1;m=0;i--){var o=r[i];if(o.path.length===0&&o.op==="replace"){n=o.value;break}}i>-1&&(r=r.slice(i+1));var a=Fl("Patches").$;return Sd(n)?a(n,r):this.produce(n,function(s){return a(s,r)})},e}(),_a=new $ve,TF=_a.produce;_a.produceWithPatches.bind(_a);_a.setAutoFreeze.bind(_a);_a.setUseProxies.bind(_a);_a.applyPatches.bind(_a);_a.createDraft.bind(_a);_a.finishDraft.bind(_a);function JL(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function eA(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(eo(1));return n(Y_)(e,t)}if(typeof e!="function")throw new Error(eo(2));var i=e,o=t,a=[],s=a,l=!1;function d(){s===a&&(s=a.slice())}function p(){if(l)throw new Error(eo(3));return o}function g(S){if(typeof S!="function")throw new Error(eo(4));if(l)throw new Error(eo(5));var E=!0;return d(),s.push(S),function(){if(!!E){if(l)throw new Error(eo(6));E=!1,d();var k=s.indexOf(S);s.splice(k,1),a=null}}}function m(S){if(!Fve(S))throw new Error(eo(7));if(typeof S.type>"u")throw new Error(eo(8));if(l)throw new Error(eo(9));try{l=!0,o=i(o,S)}finally{l=!1}for(var E=a=s,P=0;P"u")throw new Error(eo(12));if(typeof n(void 0,{type:D3.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(eo(13))})}function LF(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(eo(14));g[y]=E,p=p||E!==S}return p=p||o.length!==Object.keys(l).length,p?g:l}}function z3(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[l];return l>0&&(n.splice(l,1),n.unshift(d)),d.value}return $3}function i(s,l){r(s)===$3&&(n.unshift({key:s,value:l}),n.length>e&&n.pop())}function o(){return n}function a(){n=[]}return{get:r,put:i,getEntries:o,clear:a}}var Uve=function(t,n){return t===n};function Gve(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var i=n.length,o=0;o1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?v2e:m2e;OF.useSyncExternalStore=F0.useSyncExternalStore!==void 0?F0.useSyncExternalStore:y2e;(function(e){e.exports=OF})(MF);var NF={exports:{}},DF={};/** - * @license React - * use-sync-external-store-shim/with-selector.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var xb=C.exports,b2e=MF.exports;function x2e(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var S2e=typeof Object.is=="function"?Object.is:x2e,w2e=b2e.useSyncExternalStore,C2e=xb.useRef,_2e=xb.useEffect,k2e=xb.useMemo,E2e=xb.useDebugValue;DF.useSyncExternalStoreWithSelector=function(e,t,n,r,i){var o=C2e(null);if(o.current===null){var a={hasValue:!1,value:null};o.current=a}else a=o.current;o=k2e(function(){function l(y){if(!d){if(d=!0,p=y,y=r(y),i!==void 0&&a.hasValue){var b=a.value;if(i(b,y))return g=b}return g=y}if(b=g,S2e(p,y))return b;var S=r(y);return i!==void 0&&i(b,S)?b:(p=y,g=S)}var d=!1,p,g,m=n===void 0?null:n;return[function(){return l(t())},m===null?void 0:function(){return l(m())}]},[t,n,r,i]);var s=w2e(e,o[0],o[1]);return _2e(function(){a.hasValue=!0,a.value=s},[s]),E2e(s),s};(function(e){e.exports=DF})(NF);function P2e(e){e()}let zF=P2e;const T2e=e=>zF=e,L2e=()=>zF,wd=re.createContext(null);function $F(){return C.exports.useContext(wd)}const A2e=()=>{throw new Error("uSES not initialized!")};let FF=A2e;const I2e=e=>{FF=e},R2e=(e,t)=>e===t;function M2e(e=wd){const t=e===wd?$F:()=>C.exports.useContext(e);return function(r,i=R2e){const{store:o,subscription:a,getServerState:s}=t(),l=FF(a.addNestedSub,o.getState,s||o.getState,r,i);return C.exports.useDebugValue(l),l}}const O2e=M2e();var N2e={exports:{}},Nn={};/** - * @license React - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var X_=Symbol.for("react.element"),Q_=Symbol.for("react.portal"),Sb=Symbol.for("react.fragment"),wb=Symbol.for("react.strict_mode"),Cb=Symbol.for("react.profiler"),_b=Symbol.for("react.provider"),kb=Symbol.for("react.context"),D2e=Symbol.for("react.server_context"),Eb=Symbol.for("react.forward_ref"),Pb=Symbol.for("react.suspense"),Tb=Symbol.for("react.suspense_list"),Lb=Symbol.for("react.memo"),Ab=Symbol.for("react.lazy"),z2e=Symbol.for("react.offscreen"),BF;BF=Symbol.for("react.module.reference");function cs(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case X_:switch(e=e.type,e){case Sb:case Cb:case wb:case Pb:case Tb:return e;default:switch(e=e&&e.$$typeof,e){case D2e:case kb:case Eb:case Ab:case Lb:case _b:return e;default:return t}}case Q_:return t}}}Nn.ContextConsumer=kb;Nn.ContextProvider=_b;Nn.Element=X_;Nn.ForwardRef=Eb;Nn.Fragment=Sb;Nn.Lazy=Ab;Nn.Memo=Lb;Nn.Portal=Q_;Nn.Profiler=Cb;Nn.StrictMode=wb;Nn.Suspense=Pb;Nn.SuspenseList=Tb;Nn.isAsyncMode=function(){return!1};Nn.isConcurrentMode=function(){return!1};Nn.isContextConsumer=function(e){return cs(e)===kb};Nn.isContextProvider=function(e){return cs(e)===_b};Nn.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===X_};Nn.isForwardRef=function(e){return cs(e)===Eb};Nn.isFragment=function(e){return cs(e)===Sb};Nn.isLazy=function(e){return cs(e)===Ab};Nn.isMemo=function(e){return cs(e)===Lb};Nn.isPortal=function(e){return cs(e)===Q_};Nn.isProfiler=function(e){return cs(e)===Cb};Nn.isStrictMode=function(e){return cs(e)===wb};Nn.isSuspense=function(e){return cs(e)===Pb};Nn.isSuspenseList=function(e){return cs(e)===Tb};Nn.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===Sb||e===Cb||e===wb||e===Pb||e===Tb||e===z2e||typeof e=="object"&&e!==null&&(e.$$typeof===Ab||e.$$typeof===Lb||e.$$typeof===_b||e.$$typeof===kb||e.$$typeof===Eb||e.$$typeof===BF||e.getModuleId!==void 0)};Nn.typeOf=cs;(function(e){e.exports=Nn})(N2e);function $2e(){const e=L2e();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],i=t;for(;i;)r.push(i),i=i.next;return r},subscribe(r){let i=!0,o=n={callback:r,next:null,prev:n};return o.prev?o.prev.next=o:t=o,function(){!i||t===null||(i=!1,o.next?o.next.prev=o.prev:n=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}const oA={notify(){},get:()=>[]};function F2e(e,t){let n,r=oA;function i(g){return l(),r.subscribe(g)}function o(){r.notify()}function a(){p.onStateChange&&p.onStateChange()}function s(){return Boolean(n)}function l(){n||(n=t?t.addNestedSub(a):e.subscribe(a),r=$2e())}function d(){n&&(n(),n=void 0,r.clear(),r=oA)}const p={addNestedSub:i,notifyNestedSubs:o,handleChangeWrapper:a,isSubscribed:s,trySubscribe:l,tryUnsubscribe:d,getListeners:()=>r};return p}const B2e=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",H2e=B2e?C.exports.useLayoutEffect:C.exports.useEffect;function W2e({store:e,context:t,children:n,serverState:r}){const i=C.exports.useMemo(()=>{const s=F2e(e);return{store:e,subscription:s,getServerState:r?()=>r:void 0}},[e,r]),o=C.exports.useMemo(()=>e.getState(),[e]);return H2e(()=>{const{subscription:s}=i;return s.onStateChange=s.notifyNestedSubs,s.trySubscribe(),o!==e.getState()&&s.notifyNestedSubs(),()=>{s.tryUnsubscribe(),s.onStateChange=void 0}},[i,o]),w((t||wd).Provider,{value:i,children:n})}function HF(e=wd){const t=e===wd?$F:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const V2e=HF();function U2e(e=wd){const t=e===wd?V2e:HF(e);return function(){return t().dispatch}}const G2e=U2e();I2e(NF.exports.useSyncExternalStoreWithSelector);T2e(jl.exports.unstable_batchedUpdates);var J_="persist:",WF="persist/FLUSH",e7="persist/REHYDRATE",VF="persist/PAUSE",UF="persist/PERSIST",GF="persist/PURGE",jF="persist/REGISTER",j2e=-1;function y5(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?y5=function(n){return typeof n}:y5=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},y5(e)}function aA(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function q2e(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function iye(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var oye=5e3;function b5(e,t){var n=e.version!==void 0?e.version:j2e;e.debug;var r=e.stateReconciler===void 0?Y2e:e.stateReconciler,i=e.getStoredState||Q2e,o=e.timeout!==void 0?e.timeout:oye,a=null,s=!1,l=!0,d=function(g){return g._persist.rehydrated&&a&&!l&&a.update(g),g};return function(p,g){var m=p||{},y=m._persist,b=rye(m,["_persist"]),S=b;if(g.type===UF){var E=!1,P=function(F,q){E||(g.rehydrate(e.key,F,q),E=!0)};if(o&&setTimeout(function(){!E&&P(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},o),l=!1,a||(a=Z2e(e)),y)return Eu({},t(S,g),{_persist:y});if(typeof g.rehydrate!="function"||typeof g.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return g.register(e.key),i(e).then(function($){var F=e.migrate||function(q,j){return Promise.resolve(q)};F($,n).then(function(q){P(q)},function(q){P(void 0,q)})},function($){P(void 0,$)}),Eu({},t(S,g),{_persist:{version:n,rehydrated:!1}})}else{if(g.type===GF)return s=!0,g.result(eye(e)),Eu({},t(S,g),{_persist:y});if(g.type===WF)return g.result(a&&a.flush()),Eu({},t(S,g),{_persist:y});if(g.type===VF)l=!0;else if(g.type===e7){if(s)return Eu({},S,{_persist:Eu({},y,{rehydrated:!0})});if(g.key===e.key){var k=t(S,g),L=g.payload,R=r!==!1&&L!==void 0?r(L,p,k,e):k,N=Eu({},R,{_persist:Eu({},y,{rehydrated:!0})});return d(N)}}}if(!y)return t(p,g);var z=t(S,g);return z===S?p:d(Eu({},z,{_persist:y}))}}function lA(e){return lye(e)||sye(e)||aye()}function aye(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function sye(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function lye(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:qF,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case jF:return bC({},t,{registry:[].concat(lA(t.registry),[n.key])});case e7:var r=t.registry.indexOf(n.key),i=lA(t.registry);return i.splice(r,1),bC({},t,{registry:i,bootstrapped:i.length===0});default:return t}};function dye(e,t,n){var r=n||!1,i=Y_(cye,qF,t&&t.enhancer?t.enhancer:void 0),o=function(d){i.dispatch({type:jF,key:d})},a=function(d,p,g){var m={type:e7,payload:p,err:g,key:d};e.dispatch(m),i.dispatch(m),r&&s.getState().bootstrapped&&(r(),r=!1)},s=bC({},i,{purge:function(){var d=[];return e.dispatch({type:GF,result:function(g){d.push(g)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:WF,result:function(g){d.push(g)}}),Promise.all(d)},pause:function(){e.dispatch({type:VF})},persist:function(){e.dispatch({type:UF,register:o,rehydrate:a})}});return t&&t.manualPersist||s.persist(),s}var t7={},n7={};n7.__esModule=!0;n7.default=pye;function x5(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?x5=function(n){return typeof n}:x5=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},x5(e)}function zS(){}var fye={getItem:zS,setItem:zS,removeItem:zS};function hye(e){if((typeof self>"u"?"undefined":x5(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function pye(e){var t="".concat(e,"Storage");return hye(t)?self[t]:fye}t7.__esModule=!0;t7.default=vye;var gye=mye(n7);function mye(e){return e&&e.__esModule?e:{default:e}}function vye(e){var t=(0,gye.default)(e);return{getItem:function(r){return new Promise(function(i,o){i(t.getItem(r))})},setItem:function(r,i){return new Promise(function(o,a){o(t.setItem(r,i))})},removeItem:function(r){return new Promise(function(i,o){i(t.removeItem(r))})}}}var zv=void 0,yye=bye(t7);function bye(e){return e&&e.__esModule?e:{default:e}}var xye=(0,yye.default)("local");zv=xye;const S5=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),Sye=e=>{const r=e.split(",").map(i=>i.split(":")).map(i=>({seed:Number(i[0]),weight:Number(i[1])}));return r7(r)?r:!1},r7=e=>Boolean(typeof e=="string"?Sye(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,i=!isNaN(parseInt(n.toString(),10)),o=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(i&&o)})),B3=e=>e.reduce((t,n,r,i)=>{const{seed:o,weight:a}=n;return t+=`${o}:${a}`,r!==i.length-1&&(t+=","),t},""),wye=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]);var ka={exports:{}};/** - * @license - * Lodash - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(e,t){(function(){var n,r="4.17.21",i=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function",s="Invalid `variable` option passed into `_.template`",l="__lodash_hash_undefined__",d=500,p="__lodash_placeholder__",g=1,m=2,y=4,b=1,S=2,E=1,P=2,k=4,L=8,R=16,N=32,z=64,$=128,F=256,q=512,j=30,Y="...",ve=800,ge=16,Se=1,_e=2,we=3,J=1/0,G=9007199254740991,te=17976931348623157e292,Q=0/0,W=4294967295,se=W-1,de=W>>>1,xe=[["ary",$],["bind",E],["bindKey",P],["curry",L],["curryRight",R],["flip",q],["partial",N],["partialRight",z],["rearg",F]],ze="[object Arguments]",Me="[object Array]",Ue="[object AsyncFunction]",Ee="[object Boolean]",Ve="[object Date]",ot="[object DOMException]",pt="[object Error]",Wt="[object Function]",Dt="[object GeneratorFunction]",Oe="[object Map]",nt="[object Number]",mt="[object Null]",st="[object Object]",vt="[object Promise]",yn="[object Proxy]",yt="[object RegExp]",Vt="[object Set]",on="[object String]",zt="[object Symbol]",Ne="[object Undefined]",tt="[object WeakMap]",jt="[object WeakSet]",Ut="[object ArrayBuffer]",Pe="[object DataView]",Pt="[object Float32Array]",en="[object Float64Array]",jn="[object Int8Array]",je="[object Int16Array]",At="[object Int32Array]",Be="[object Uint8Array]",ct="[object Uint8ClampedArray]",qe="[object Uint16Array]",St="[object Uint32Array]",tn=/\b__p \+= '';/g,Qn=/\b(__p \+=) '' \+/g,Cr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Gr=/&(?:amp|lt|gt|quot|#39);/g,Gi=/[&<>"']/g,zd=RegExp(Gr.source),jr=RegExp(Gi.source),nc=/<%-([\s\S]+?)%>/g,$d=/<%([\s\S]+?)%>/g,js=/<%=([\s\S]+?)%>/g,rc=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ic=/^\w*$/,cr=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Zl=/[\\^$.*+?()[\]{}|]/g,Fd=RegExp(Zl.source),qs=/^\s+/,Xl=/\s/,Bd=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Ci=/\{\n\/\* \[wrapped with (.+)\] \*/,Ks=/,? & /,Hd=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Wd=/[()=,{}\[\]\/\s]/,Vd=/\\(\\)?/g,Ud=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ci=/\w*$/,Gd=/^[-+]0x[0-9a-f]+$/i,jd=/^0b[01]+$/i,qd=/^\[object .+?Constructor\]$/,Kd=/^0o[0-7]+$/i,Yd=/^(?:0|[1-9]\d*)$/,Zd=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Po=/($^)/,Xd=/['\n\r\u2028\u2029\\]/g,ji="\\ud800-\\udfff",Xo="\\u0300-\\u036f",fs="\\ufe20-\\ufe2f",oo="\\u20d0-\\u20ff",La=Xo+fs+oo,oc="\\u2700-\\u27bf",Ys="a-z\\xdf-\\xf6\\xf8-\\xff",Aa="\\xac\\xb1\\xd7\\xf7",qi="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",bn="\\u2000-\\u206f",hn=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",ao="A-Z\\xc0-\\xd6\\xd8-\\xde",dr="\\ufe0e\\ufe0f",Rr=Aa+qi+bn+hn,so="['\u2019]",Ia="["+ji+"]",Mr="["+Rr+"]",Qo="["+La+"]",Ql="\\d+",To="["+oc+"]",lo="["+Ys+"]",Jl="[^"+ji+Rr+Ql+oc+Ys+ao+"]",ti="\\ud83c[\\udffb-\\udfff]",eu="(?:"+Qo+"|"+ti+")",ac="[^"+ji+"]",tu="(?:\\ud83c[\\udde6-\\uddff]){2}",Ra="[\\ud800-\\udbff][\\udc00-\\udfff]",_i="["+ao+"]",Ma="\\u200d",hs="(?:"+lo+"|"+Jl+")",Qd="(?:"+_i+"|"+Jl+")",Oa="(?:"+so+"(?:d|ll|m|re|s|t|ve))?",Zs="(?:"+so+"(?:D|LL|M|RE|S|T|VE))?",nu=eu+"?",Xs="["+dr+"]?",ki="(?:"+Ma+"(?:"+[ac,tu,Ra].join("|")+")"+Xs+nu+")*",ps="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Jo="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",It=Xs+nu+ki,sc="(?:"+[To,tu,Ra].join("|")+")"+It,gs="(?:"+[ac+Qo+"?",Qo,tu,Ra,Ia].join("|")+")",Na=RegExp(so,"g"),ru=RegExp(Qo,"g"),Or=RegExp(ti+"(?="+ti+")|"+gs+It,"g"),pn=RegExp([_i+"?"+lo+"+"+Oa+"(?="+[Mr,_i,"$"].join("|")+")",Qd+"+"+Zs+"(?="+[Mr,_i+hs,"$"].join("|")+")",_i+"?"+hs+"+"+Oa,_i+"+"+Zs,Jo,ps,Ql,sc].join("|"),"g"),iu=RegExp("["+Ma+ji+La+dr+"]"),ou=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,au=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],su=-1,an={};an[Pt]=an[en]=an[jn]=an[je]=an[At]=an[Be]=an[ct]=an[qe]=an[St]=!0,an[ze]=an[Me]=an[Ut]=an[Ee]=an[Pe]=an[Ve]=an[pt]=an[Wt]=an[Oe]=an[nt]=an[st]=an[yt]=an[Vt]=an[on]=an[tt]=!1;var Ot={};Ot[ze]=Ot[Me]=Ot[Ut]=Ot[Pe]=Ot[Ee]=Ot[Ve]=Ot[Pt]=Ot[en]=Ot[jn]=Ot[je]=Ot[At]=Ot[Oe]=Ot[nt]=Ot[st]=Ot[yt]=Ot[Vt]=Ot[on]=Ot[zt]=Ot[Be]=Ot[ct]=Ot[qe]=Ot[St]=!0,Ot[pt]=Ot[Wt]=Ot[tt]=!1;var lu={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},Jd={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},D={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},U=parseFloat,me=parseInt,Xe=typeof Au=="object"&&Au&&Au.Object===Object&&Au,ft=typeof self=="object"&&self&&self.Object===Object&&self,Ke=Xe||ft||Function("return this")(),Ge=t&&!t.nodeType&&t,ut=Ge&&!0&&e&&!e.nodeType&&e,un=ut&&ut.exports===Ge,Zt=un&&Xe.process,qt=function(){try{var ee=ut&&ut.require&&ut.require("util").types;return ee||Zt&&Zt.binding&&Zt.binding("util")}catch{}}(),fr=qt&&qt.isArrayBuffer,di=qt&&qt.isDate,fi=qt&&qt.isMap,Da=qt&&qt.isRegExp,Qs=qt&&qt.isSet,c1=qt&&qt.isTypedArray;function Ei(ee,be,pe){switch(pe.length){case 0:return ee.call(be);case 1:return ee.call(be,pe[0]);case 2:return ee.call(be,pe[0],pe[1]);case 3:return ee.call(be,pe[0],pe[1],pe[2])}return ee.apply(be,pe)}function d1(ee,be,pe,Je){for(var kt=-1,nn=ee==null?0:ee.length;++kt-1}function Oh(ee,be,pe){for(var Je=-1,kt=ee==null?0:ee.length;++Je-1;);return pe}function ms(ee,be){for(var pe=ee.length;pe--&&cc(be,ee[pe],0)>-1;);return pe}function h1(ee,be){for(var pe=ee.length,Je=0;pe--;)ee[pe]===be&&++Je;return Je}var Kv=rf(lu),vs=rf(Jd);function el(ee){return"\\"+D[ee]}function Dh(ee,be){return ee==null?n:ee[be]}function cu(ee){return iu.test(ee)}function zh(ee){return ou.test(ee)}function Yv(ee){for(var be,pe=[];!(be=ee.next()).done;)pe.push(be.value);return pe}function $h(ee){var be=-1,pe=Array(ee.size);return ee.forEach(function(Je,kt){pe[++be]=[kt,Je]}),pe}function Fh(ee,be){return function(pe){return ee(be(pe))}}function na(ee,be){for(var pe=-1,Je=ee.length,kt=0,nn=[];++pe-1}function p2(u,h){var x=this.__data__,A=Dr(x,u);return A<0?(++this.size,x.push([u,h])):x[A][1]=h,this}ra.prototype.clear=f2,ra.prototype.delete=h2,ra.prototype.get=T1,ra.prototype.has=L1,ra.prototype.set=p2;function ia(u){var h=-1,x=u==null?0:u.length;for(this.clear();++h=h?u:h)),u}function gi(u,h,x,A,O,H){var K,X=h&g,ue=h&m,ke=h&y;if(x&&(K=O?x(u,A,O,H):x(u)),K!==n)return K;if(!mr(u))return u;var Te=Mt(u);if(Te){if(K=jW(u),!X)return Ri(u,K)}else{var Re=yi(u),Qe=Re==Wt||Re==Dt;if($c(u))return dl(u,X);if(Re==st||Re==ze||Qe&&!O){if(K=ue||Qe?{}:j7(u),!X)return ue?q1(u,Tc(K,u)):No(u,rt(K,u))}else{if(!Ot[Re])return O?u:{};K=qW(u,Re,X)}}H||(H=new kr);var dt=H.get(u);if(dt)return dt;H.set(u,K),Sk(u)?u.forEach(function(xt){K.add(gi(xt,h,x,xt,u,H))}):bk(u)&&u.forEach(function(xt,Kt){K.set(Kt,gi(xt,h,x,Kt,u,H))});var bt=ke?ue?he:ua:ue?zo:bi,Bt=Te?n:bt(u);return qn(Bt||u,function(xt,Kt){Bt&&(Kt=xt,xt=u[Kt]),rl(K,Kt,gi(xt,h,x,Kt,u,H))}),K}function qh(u){var h=bi(u);return function(x){return Kh(x,u,h)}}function Kh(u,h,x){var A=x.length;if(u==null)return!A;for(u=gn(u);A--;){var O=x[A],H=h[O],K=u[O];if(K===n&&!(O in u)||!H(K))return!1}return!0}function M1(u,h,x){if(typeof u!="function")throw new Pi(a);return Q1(function(){u.apply(n,x)},h)}function Lc(u,h,x,A){var O=-1,H=Ki,K=!0,X=u.length,ue=[],ke=h.length;if(!X)return ue;x&&(h=Bn(h,Nr(x))),A?(H=Oh,K=!1):h.length>=i&&(H=fc,K=!1,h=new Ba(h));e:for(;++OO?0:O+x),A=A===n||A>O?O:Nt(A),A<0&&(A+=O),A=x>A?0:Ck(A);x0&&x(X)?h>1?zr(X,h-1,x,A,O):za(O,X):A||(O[O.length]=X)}return O}var Zh=fl(),Ro=fl(!0);function la(u,h){return u&&Zh(u,h,bi)}function Mo(u,h){return u&&Ro(u,h,bi)}function Xh(u,h){return Ao(h,function(x){return bu(u[x])})}function il(u,h){h=cl(h,u);for(var x=0,A=h.length;u!=null&&xh}function Jh(u,h){return u!=null&&sn.call(u,h)}function ep(u,h){return u!=null&&h in gn(u)}function tp(u,h,x){return u>=ri(h,x)&&u<_r(h,x)}function Ac(u,h,x){for(var A=x?Oh:Ki,O=u[0].length,H=u.length,K=H,X=pe(H),ue=1/0,ke=[];K--;){var Te=u[K];K&&h&&(Te=Bn(Te,Nr(h))),ue=ri(Te.length,ue),X[K]=!x&&(h||O>=120&&Te.length>=120)?new Ba(K&&Te):n}Te=u[0];var Re=-1,Qe=X[0];e:for(;++Re-1;)X!==u&&ff.call(X,ue,1),ff.call(u,ue,1);return u}function Sf(u,h){for(var x=u?h.length:0,A=x-1;x--;){var O=h[x];if(x==A||O!==H){var H=O;yu(O)?ff.call(u,O,1):dp(u,O)}}return u}function wf(u,h){return u+fu(w1()*(h-u+1))}function ll(u,h,x,A){for(var O=-1,H=_r(gf((h-u)/(x||1)),0),K=pe(H);H--;)K[A?H:++O]=u,u+=x;return K}function Nc(u,h){var x="";if(!u||h<1||h>G)return x;do h%2&&(x+=u),h=fu(h/2),h&&(u+=u);while(h);return x}function _t(u,h){return ax(Y7(u,h,$o),u+"")}function ap(u){return Pc(yp(u))}function Cf(u,h){var x=yp(u);return w2(x,pu(h,0,x.length))}function mu(u,h,x,A){if(!mr(u))return u;h=cl(h,u);for(var O=-1,H=h.length,K=H-1,X=u;X!=null&&++OO?0:O+h),x=x>O?O:x,x<0&&(x+=O),O=h>x?0:x-h>>>0,h>>>=0;for(var H=pe(O);++A>>1,K=u[H];K!==null&&!ca(K)&&(x?K<=h:K=i){var ke=h?null:V(u);if(ke)return lf(ke);K=!1,O=fc,ue=new Ba}else ue=h?[]:X;e:for(;++A=A?u:Fr(u,h,x)}var V1=e2||function(u){return Ke.clearTimeout(u)};function dl(u,h){if(h)return u.slice();var x=u.length,A=vc?vc(x):new u.constructor(x);return u.copy(A),A}function U1(u){var h=new u.constructor(u.byteLength);return new Ti(h).set(new Ti(u)),h}function vu(u,h){var x=h?U1(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.byteLength)}function y2(u){var h=new u.constructor(u.source,ci.exec(u));return h.lastIndex=u.lastIndex,h}function Kn(u){return vf?gn(vf.call(u)):{}}function b2(u,h){var x=h?U1(u.buffer):u.buffer;return new u.constructor(x,u.byteOffset,u.length)}function G1(u,h){if(u!==h){var x=u!==n,A=u===null,O=u===u,H=ca(u),K=h!==n,X=h===null,ue=h===h,ke=ca(h);if(!X&&!ke&&!H&&u>h||H&&K&&ue&&!X&&!ke||A&&K&&ue||!x&&ue||!O)return 1;if(!A&&!H&&!ke&&u=X)return ue;var ke=x[A];return ue*(ke=="desc"?-1:1)}}return u.index-h.index}function x2(u,h,x,A){for(var O=-1,H=u.length,K=x.length,X=-1,ue=h.length,ke=_r(H-K,0),Te=pe(ue+ke),Re=!A;++X1?x[O-1]:n,K=O>2?x[2]:n;for(H=u.length>3&&typeof H=="function"?(O--,H):n,K&&go(x[0],x[1],K)&&(H=O<3?n:H,O=1),h=gn(h);++A-1?O[H?h[K]:K]:n}}function Y1(u){return ir(function(h){var x=h.length,A=x,O=co.prototype.thru;for(u&&h.reverse();A--;){var H=h[A];if(typeof H!="function")throw new Pi(a);if(O&&!K&&ye(H)=="wrapper")var K=new co([],!0)}for(A=K?A:x;++A1&&rn.reverse(),Te&&ueX))return!1;var ke=H.get(u),Te=H.get(h);if(ke&&Te)return ke==h&&Te==u;var Re=-1,Qe=!0,dt=x&S?new Ba:n;for(H.set(u,h),H.set(h,u);++Re1?"& ":"")+h[A],h=h.join(x>2?", ":" "),u.replace(Bd,`{ -/* [wrapped with `+h+`] */ -`)}function YW(u){return Mt(u)||If(u)||!!(x1&&u&&u[x1])}function yu(u,h){var x=typeof u;return h=h??G,!!h&&(x=="number"||x!="symbol"&&Yd.test(u))&&u>-1&&u%1==0&&u0){if(++h>=ve)return arguments[0]}else h=0;return u.apply(n,arguments)}}function w2(u,h){var x=-1,A=u.length,O=A-1;for(h=h===n?A:h;++x1?u[h-1]:n;return x=typeof x=="function"?(u.pop(),x):n,sk(u,x)});function lk(u){var h=B(u);return h.__chain__=!0,h}function aU(u,h){return h(u),u}function C2(u,h){return h(u)}var sU=ir(function(u){var h=u.length,x=h?u[0]:0,A=this.__wrapped__,O=function(H){return jh(H,u)};return h>1||this.__actions__.length||!(A instanceof Gt)||!yu(x)?this.thru(O):(A=A.slice(x,+x+(h?1:0)),A.__actions__.push({func:C2,args:[O],thisArg:n}),new co(A,this.__chain__).thru(function(H){return h&&!H.length&&H.push(n),H}))});function lU(){return lk(this)}function uU(){return new co(this.value(),this.__chain__)}function cU(){this.__values__===n&&(this.__values__=wk(this.value()));var u=this.__index__>=this.__values__.length,h=u?n:this.__values__[this.__index__++];return{done:u,value:h}}function dU(){return this}function fU(u){for(var h,x=this;x instanceof yf;){var A=tk(x);A.__index__=0,A.__values__=n,h?O.__wrapped__=A:h=A;var O=A;x=x.__wrapped__}return O.__wrapped__=u,h}function hU(){var u=this.__wrapped__;if(u instanceof Gt){var h=u;return this.__actions__.length&&(h=new Gt(this)),h=h.reverse(),h.__actions__.push({func:C2,args:[sx],thisArg:n}),new co(h,this.__chain__)}return this.thru(sx)}function pU(){return ul(this.__wrapped__,this.__actions__)}var gU=hp(function(u,h,x){sn.call(u,x)?++u[x]:oa(u,x,1)});function mU(u,h,x){var A=Mt(u)?Fn:O1;return x&&go(u,h,x)&&(h=n),A(u,Ie(h,3))}function vU(u,h){var x=Mt(u)?Ao:sa;return x(u,Ie(h,3))}var yU=K1(nk),bU=K1(rk);function xU(u,h){return zr(_2(u,h),1)}function SU(u,h){return zr(_2(u,h),J)}function wU(u,h,x){return x=x===n?1:Nt(x),zr(_2(u,h),x)}function uk(u,h){var x=Mt(u)?qn:xs;return x(u,Ie(h,3))}function ck(u,h){var x=Mt(u)?Lo:Yh;return x(u,Ie(h,3))}var CU=hp(function(u,h,x){sn.call(u,x)?u[x].push(h):oa(u,x,[h])});function _U(u,h,x,A){u=Do(u)?u:yp(u),x=x&&!A?Nt(x):0;var O=u.length;return x<0&&(x=_r(O+x,0)),L2(u)?x<=O&&u.indexOf(h,x)>-1:!!O&&cc(u,h,x)>-1}var kU=_t(function(u,h,x){var A=-1,O=typeof h=="function",H=Do(u)?pe(u.length):[];return xs(u,function(K){H[++A]=O?Ei(h,K,x):Ss(K,h,x)}),H}),EU=hp(function(u,h,x){oa(u,x,h)});function _2(u,h){var x=Mt(u)?Bn:Pr;return x(u,Ie(h,3))}function PU(u,h,x,A){return u==null?[]:(Mt(h)||(h=h==null?[]:[h]),x=A?n:x,Mt(x)||(x=x==null?[]:[x]),Ai(u,h,x))}var TU=hp(function(u,h,x){u[x?0:1].push(h)},function(){return[[],[]]});function LU(u,h,x){var A=Mt(u)?ef:Nh,O=arguments.length<3;return A(u,Ie(h,4),x,O,xs)}function AU(u,h,x){var A=Mt(u)?Uv:Nh,O=arguments.length<3;return A(u,Ie(h,4),x,O,Yh)}function IU(u,h){var x=Mt(u)?Ao:sa;return x(u,P2(Ie(h,3)))}function RU(u){var h=Mt(u)?Pc:ap;return h(u)}function MU(u,h,x){(x?go(u,h,x):h===n)?h=1:h=Nt(h);var A=Mt(u)?pi:Cf;return A(u,h)}function OU(u){var h=Mt(u)?Qb:vi;return h(u)}function NU(u){if(u==null)return 0;if(Do(u))return L2(u)?$a(u):u.length;var h=yi(u);return h==Oe||h==Vt?u.size:$r(u).length}function DU(u,h,x){var A=Mt(u)?lc:Oo;return x&&go(u,h,x)&&(h=n),A(u,Ie(h,3))}var zU=_t(function(u,h){if(u==null)return[];var x=h.length;return x>1&&go(u,h[0],h[1])?h=[]:x>2&&go(h[0],h[1],h[2])&&(h=[h[0]]),Ai(u,zr(h,1),[])}),k2=t2||function(){return Ke.Date.now()};function $U(u,h){if(typeof h!="function")throw new Pi(a);return u=Nt(u),function(){if(--u<1)return h.apply(this,arguments)}}function dk(u,h,x){return h=x?n:h,h=u&&h==null?u.length:h,fe(u,$,n,n,n,n,h)}function fk(u,h){var x;if(typeof h!="function")throw new Pi(a);return u=Nt(u),function(){return--u>0&&(x=h.apply(this,arguments)),u<=1&&(h=n),x}}var ux=_t(function(u,h,x){var A=E;if(x.length){var O=na(x,Ye(ux));A|=N}return fe(u,A,h,x,O)}),hk=_t(function(u,h,x){var A=E|P;if(x.length){var O=na(x,Ye(hk));A|=N}return fe(h,A,u,x,O)});function pk(u,h,x){h=x?n:h;var A=fe(u,L,n,n,n,n,n,h);return A.placeholder=pk.placeholder,A}function gk(u,h,x){h=x?n:h;var A=fe(u,R,n,n,n,n,n,h);return A.placeholder=gk.placeholder,A}function mk(u,h,x){var A,O,H,K,X,ue,ke=0,Te=!1,Re=!1,Qe=!0;if(typeof u!="function")throw new Pi(a);h=Va(h)||0,mr(x)&&(Te=!!x.leading,Re="maxWait"in x,H=Re?_r(Va(x.maxWait)||0,h):H,Qe="trailing"in x?!!x.trailing:Qe);function dt(Hr){var Es=A,Su=O;return A=O=n,ke=Hr,K=u.apply(Su,Es),K}function bt(Hr){return ke=Hr,X=Q1(Kt,h),Te?dt(Hr):K}function Bt(Hr){var Es=Hr-ue,Su=Hr-ke,Nk=h-Es;return Re?ri(Nk,H-Su):Nk}function xt(Hr){var Es=Hr-ue,Su=Hr-ke;return ue===n||Es>=h||Es<0||Re&&Su>=H}function Kt(){var Hr=k2();if(xt(Hr))return rn(Hr);X=Q1(Kt,Bt(Hr))}function rn(Hr){return X=n,Qe&&A?dt(Hr):(A=O=n,K)}function da(){X!==n&&V1(X),ke=0,A=ue=O=X=n}function mo(){return X===n?K:rn(k2())}function fa(){var Hr=k2(),Es=xt(Hr);if(A=arguments,O=this,ue=Hr,Es){if(X===n)return bt(ue);if(Re)return V1(X),X=Q1(Kt,h),dt(ue)}return X===n&&(X=Q1(Kt,h)),K}return fa.cancel=da,fa.flush=mo,fa}var FU=_t(function(u,h){return M1(u,1,h)}),BU=_t(function(u,h,x){return M1(u,Va(h)||0,x)});function HU(u){return fe(u,q)}function E2(u,h){if(typeof u!="function"||h!=null&&typeof h!="function")throw new Pi(a);var x=function(){var A=arguments,O=h?h.apply(this,A):A[0],H=x.cache;if(H.has(O))return H.get(O);var K=u.apply(this,A);return x.cache=H.set(O,K)||H,K};return x.cache=new(E2.Cache||ia),x}E2.Cache=ia;function P2(u){if(typeof u!="function")throw new Pi(a);return function(){var h=arguments;switch(h.length){case 0:return!u.call(this);case 1:return!u.call(this,h[0]);case 2:return!u.call(this,h[0],h[1]);case 3:return!u.call(this,h[0],h[1],h[2])}return!u.apply(this,h)}}function WU(u){return fk(2,u)}var VU=tx(function(u,h){h=h.length==1&&Mt(h[0])?Bn(h[0],Nr(Ie())):Bn(zr(h,1),Nr(Ie()));var x=h.length;return _t(function(A){for(var O=-1,H=ri(A.length,x);++O=h}),If=rp(function(){return arguments}())?rp:function(u){return Tr(u)&&sn.call(u,"callee")&&!b1.call(u,"callee")},Mt=pe.isArray,iG=fr?Nr(fr):D1;function Do(u){return u!=null&&T2(u.length)&&!bu(u)}function Br(u){return Tr(u)&&Do(u)}function oG(u){return u===!0||u===!1||Tr(u)&&mi(u)==Ee}var $c=n2||Sx,aG=di?Nr(di):z1;function sG(u){return Tr(u)&&u.nodeType===1&&!J1(u)}function lG(u){if(u==null)return!0;if(Do(u)&&(Mt(u)||typeof u=="string"||typeof u.splice=="function"||$c(u)||vp(u)||If(u)))return!u.length;var h=yi(u);if(h==Oe||h==Vt)return!u.size;if(X1(u))return!$r(u).length;for(var x in u)if(sn.call(u,x))return!1;return!0}function uG(u,h){return Ic(u,h)}function cG(u,h,x){x=typeof x=="function"?x:n;var A=x?x(u,h):n;return A===n?Ic(u,h,n,x):!!A}function dx(u){if(!Tr(u))return!1;var h=mi(u);return h==pt||h==ot||typeof u.message=="string"&&typeof u.name=="string"&&!J1(u)}function dG(u){return typeof u=="number"&&Wh(u)}function bu(u){if(!mr(u))return!1;var h=mi(u);return h==Wt||h==Dt||h==Ue||h==yn}function yk(u){return typeof u=="number"&&u==Nt(u)}function T2(u){return typeof u=="number"&&u>-1&&u%1==0&&u<=G}function mr(u){var h=typeof u;return u!=null&&(h=="object"||h=="function")}function Tr(u){return u!=null&&typeof u=="object"}var bk=fi?Nr(fi):ex;function fG(u,h){return u===h||Rc(u,h,Et(h))}function hG(u,h,x){return x=typeof x=="function"?x:n,Rc(u,h,Et(h),x)}function pG(u){return xk(u)&&u!=+u}function gG(u){if(QW(u))throw new kt(o);return ip(u)}function mG(u){return u===null}function vG(u){return u==null}function xk(u){return typeof u=="number"||Tr(u)&&mi(u)==nt}function J1(u){if(!Tr(u)||mi(u)!=st)return!1;var h=yc(u);if(h===null)return!0;var x=sn.call(h,"constructor")&&h.constructor;return typeof x=="function"&&x instanceof x&&hr.call(x)==hi}var fx=Da?Nr(Da):pr;function yG(u){return yk(u)&&u>=-G&&u<=G}var Sk=Qs?Nr(Qs):$t;function L2(u){return typeof u=="string"||!Mt(u)&&Tr(u)&&mi(u)==on}function ca(u){return typeof u=="symbol"||Tr(u)&&mi(u)==zt}var vp=c1?Nr(c1):qr;function bG(u){return u===n}function xG(u){return Tr(u)&&yi(u)==tt}function SG(u){return Tr(u)&&mi(u)==jt}var wG=_(ol),CG=_(function(u,h){return u<=h});function wk(u){if(!u)return[];if(Do(u))return L2(u)?Yi(u):Ri(u);if(bc&&u[bc])return Yv(u[bc]());var h=yi(u),x=h==Oe?$h:h==Vt?lf:yp;return x(u)}function xu(u){if(!u)return u===0?u:0;if(u=Va(u),u===J||u===-J){var h=u<0?-1:1;return h*te}return u===u?u:0}function Nt(u){var h=xu(u),x=h%1;return h===h?x?h-x:h:0}function Ck(u){return u?pu(Nt(u),0,W):0}function Va(u){if(typeof u=="number")return u;if(ca(u))return Q;if(mr(u)){var h=typeof u.valueOf=="function"?u.valueOf():u;u=mr(h)?h+"":h}if(typeof u!="string")return u===0?u:+u;u=uo(u);var x=jd.test(u);return x||Kd.test(u)?me(u.slice(2),x?2:8):Gd.test(u)?Q:+u}function _k(u){return Ha(u,zo(u))}function _G(u){return u?pu(Nt(u),-G,G):u===0?u:0}function En(u){return u==null?"":ho(u)}var kG=po(function(u,h){if(X1(h)||Do(h)){Ha(h,bi(h),u);return}for(var x in h)sn.call(h,x)&&rl(u,x,h[x])}),kk=po(function(u,h){Ha(h,zo(h),u)}),A2=po(function(u,h,x,A){Ha(h,zo(h),u,A)}),EG=po(function(u,h,x,A){Ha(h,bi(h),u,A)}),PG=ir(jh);function TG(u,h){var x=hu(u);return h==null?x:rt(x,h)}var LG=_t(function(u,h){u=gn(u);var x=-1,A=h.length,O=A>2?h[2]:n;for(O&&go(h[0],h[1],O)&&(A=1);++x1),H}),Ha(u,he(u),x),A&&(x=gi(x,g|m|y,Tt));for(var O=h.length;O--;)dp(x,h[O]);return x});function qG(u,h){return Pk(u,P2(Ie(h)))}var KG=ir(function(u,h){return u==null?{}:B1(u,h)});function Pk(u,h){if(u==null)return{};var x=Bn(he(u),function(A){return[A]});return h=Ie(h),op(u,x,function(A,O){return h(A,O[0])})}function YG(u,h,x){h=cl(h,u);var A=-1,O=h.length;for(O||(O=1,u=n);++Ah){var A=u;u=h,h=A}if(x||u%1||h%1){var O=w1();return ri(u+O*(h-u+U("1e-"+((O+"").length-1))),h)}return wf(u,h)}var aj=hl(function(u,h,x){return h=h.toLowerCase(),u+(x?Ak(h):h)});function Ak(u){return gx(En(u).toLowerCase())}function Ik(u){return u=En(u),u&&u.replace(Zd,Kv).replace(ru,"")}function sj(u,h,x){u=En(u),h=ho(h);var A=u.length;x=x===n?A:pu(Nt(x),0,A);var O=x;return x-=h.length,x>=0&&u.slice(x,O)==h}function lj(u){return u=En(u),u&&jr.test(u)?u.replace(Gi,vs):u}function uj(u){return u=En(u),u&&Fd.test(u)?u.replace(Zl,"\\$&"):u}var cj=hl(function(u,h,x){return u+(x?"-":"")+h.toLowerCase()}),dj=hl(function(u,h,x){return u+(x?" ":"")+h.toLowerCase()}),fj=gp("toLowerCase");function hj(u,h,x){u=En(u),h=Nt(h);var A=h?$a(u):0;if(!h||A>=h)return u;var O=(h-A)/2;return c(fu(O),x)+u+c(gf(O),x)}function pj(u,h,x){u=En(u),h=Nt(h);var A=h?$a(u):0;return h&&A>>0,x?(u=En(u),u&&(typeof h=="string"||h!=null&&!fx(h))&&(h=ho(h),!h&&cu(u))?Cs(Yi(u),0,x):u.split(h,x)):[]}var Sj=hl(function(u,h,x){return u+(x?" ":"")+gx(h)});function wj(u,h,x){return u=En(u),x=x==null?0:pu(Nt(x),0,u.length),h=ho(h),u.slice(x,x+h.length)==h}function Cj(u,h,x){var A=B.templateSettings;x&&go(u,h,x)&&(h=n),u=En(u),h=A2({},h,A,Fe);var O=A2({},h.imports,A.imports,Fe),H=bi(O),K=sf(O,H),X,ue,ke=0,Te=h.interpolate||Po,Re="__p += '",Qe=cf((h.escape||Po).source+"|"+Te.source+"|"+(Te===js?Ud:Po).source+"|"+(h.evaluate||Po).source+"|$","g"),dt="//# sourceURL="+(sn.call(h,"sourceURL")?(h.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++su+"]")+` -`;u.replace(Qe,function(xt,Kt,rn,da,mo,fa){return rn||(rn=da),Re+=u.slice(ke,fa).replace(Xd,el),Kt&&(X=!0,Re+=`' + -__e(`+Kt+`) + -'`),mo&&(ue=!0,Re+=`'; -`+mo+`; -__p += '`),rn&&(Re+=`' + -((__t = (`+rn+`)) == null ? '' : __t) + -'`),ke=fa+xt.length,xt}),Re+=`'; -`;var bt=sn.call(h,"variable")&&h.variable;if(!bt)Re=`with (obj) { -`+Re+` -} -`;else if(Wd.test(bt))throw new kt(s);Re=(ue?Re.replace(tn,""):Re).replace(Qn,"$1").replace(Cr,"$1;"),Re="function("+(bt||"obj")+`) { -`+(bt?"":`obj || (obj = {}); -`)+"var __t, __p = ''"+(X?", __e = _.escape":"")+(ue?`, __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -`:`; -`)+Re+`return __p -}`;var Bt=Mk(function(){return nn(H,dt+"return "+Re).apply(n,K)});if(Bt.source=Re,dx(Bt))throw Bt;return Bt}function _j(u){return En(u).toLowerCase()}function kj(u){return En(u).toUpperCase()}function Ej(u,h,x){if(u=En(u),u&&(x||h===n))return uo(u);if(!u||!(h=ho(h)))return u;var A=Yi(u),O=Yi(h),H=ta(A,O),K=ms(A,O)+1;return Cs(A,H,K).join("")}function Pj(u,h,x){if(u=En(u),u&&(x||h===n))return u.slice(0,g1(u)+1);if(!u||!(h=ho(h)))return u;var A=Yi(u),O=ms(A,Yi(h))+1;return Cs(A,0,O).join("")}function Tj(u,h,x){if(u=En(u),u&&(x||h===n))return u.replace(qs,"");if(!u||!(h=ho(h)))return u;var A=Yi(u),O=ta(A,Yi(h));return Cs(A,O).join("")}function Lj(u,h){var x=j,A=Y;if(mr(h)){var O="separator"in h?h.separator:O;x="length"in h?Nt(h.length):x,A="omission"in h?ho(h.omission):A}u=En(u);var H=u.length;if(cu(u)){var K=Yi(u);H=K.length}if(x>=H)return u;var X=x-$a(A);if(X<1)return A;var ue=K?Cs(K,0,X).join(""):u.slice(0,X);if(O===n)return ue+A;if(K&&(X+=ue.length-X),fx(O)){if(u.slice(X).search(O)){var ke,Te=ue;for(O.global||(O=cf(O.source,En(ci.exec(O))+"g")),O.lastIndex=0;ke=O.exec(Te);)var Re=ke.index;ue=ue.slice(0,Re===n?X:Re)}}else if(u.indexOf(ho(O),X)!=X){var Qe=ue.lastIndexOf(O);Qe>-1&&(ue=ue.slice(0,Qe))}return ue+A}function Aj(u){return u=En(u),u&&zd.test(u)?u.replace(Gr,Qv):u}var Ij=hl(function(u,h,x){return u+(x?" ":"")+h.toUpperCase()}),gx=gp("toUpperCase");function Rk(u,h,x){return u=En(u),h=x?n:h,h===n?zh(u)?uf(u):f1(u):u.match(h)||[]}var Mk=_t(function(u,h){try{return Ei(u,n,h)}catch(x){return dx(x)?x:new kt(x)}}),Rj=ir(function(u,h){return qn(h,function(x){x=pl(x),oa(u,x,ux(u[x],u))}),u});function Mj(u){var h=u==null?0:u.length,x=Ie();return u=h?Bn(u,function(A){if(typeof A[1]!="function")throw new Pi(a);return[x(A[0]),A[1]]}):[],_t(function(A){for(var O=-1;++OG)return[];var x=W,A=ri(u,W);h=Ie(h),u-=W;for(var O=af(A,h);++x0||h<0)?new Gt(x):(u<0?x=x.takeRight(-u):u&&(x=x.drop(u)),h!==n&&(h=Nt(h),x=h<0?x.dropRight(-h):x.take(h-u)),x)},Gt.prototype.takeRightWhile=function(u){return this.reverse().takeWhile(u).reverse()},Gt.prototype.toArray=function(){return this.take(W)},la(Gt.prototype,function(u,h){var x=/^(?:filter|find|map|reject)|While$/.test(h),A=/^(?:head|last)$/.test(h),O=B[A?"take"+(h=="last"?"Right":""):h],H=A||/^find/.test(h);!O||(B.prototype[h]=function(){var K=this.__wrapped__,X=A?[1]:arguments,ue=K instanceof Gt,ke=X[0],Te=ue||Mt(K),Re=function(Kt){var rn=O.apply(B,za([Kt],X));return A&&Qe?rn[0]:rn};Te&&x&&typeof ke=="function"&&ke.length!=1&&(ue=Te=!1);var Qe=this.__chain__,dt=!!this.__actions__.length,bt=H&&!Qe,Bt=ue&&!dt;if(!H&&Te){K=Bt?K:new Gt(this);var xt=u.apply(K,X);return xt.__actions__.push({func:C2,args:[Re],thisArg:n}),new co(xt,Qe)}return bt&&Bt?u.apply(this,X):(xt=this.thru(Re),bt?A?xt.value()[0]:xt.value():xt)})}),qn(["pop","push","shift","sort","splice","unshift"],function(u){var h=pc[u],x=/^(?:push|sort|unshift)$/.test(u)?"tap":"thru",A=/^(?:pop|shift)$/.test(u);B.prototype[u]=function(){var O=arguments;if(A&&!this.__chain__){var H=this.value();return h.apply(Mt(H)?H:[],O)}return this[x](function(K){return h.apply(Mt(K)?K:[],O)})}}),la(Gt.prototype,function(u,h){var x=B[h];if(x){var A=x.name+"";sn.call(ys,A)||(ys[A]=[]),ys[A].push({name:h,func:x})}}),ys[Tf(n,P).name]=[{name:"wrapper",func:n}],Gt.prototype.clone=Zi,Gt.prototype.reverse=Li,Gt.prototype.value=s2,B.prototype.at=sU,B.prototype.chain=lU,B.prototype.commit=uU,B.prototype.next=cU,B.prototype.plant=fU,B.prototype.reverse=hU,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=pU,B.prototype.first=B.prototype.head,bc&&(B.prototype[bc]=dU),B},Fa=Io();ut?((ut.exports=Fa)._=Fa,Ge._=Fa):Ke._=Fa}).call(Au)})(ka,ka.exports);const Yt=ka.exports;var $S=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function FS(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function KF(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function Cye(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,i=!0,o=0;o=0&&ar.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&ar.splice(0,ar.length),(t===93||t===224)&&(t=91),t in Bi){Bi[t]=!1;for(var r in Cd)Cd[r]===t&&(ya[r]=!1)}}function Lye(e){if(typeof e>"u")Object.keys(Zr).forEach(function(a){return delete Zr[a]});else if(Array.isArray(e))e.forEach(function(a){a.key&&BS(a)});else if(typeof e=="object")e.key&&BS(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?KF(Cd,d):[];Zr[m]=Zr[m].filter(function(b){var S=i?b.method===i:!0;return!(S&&b.scope===r&&Cye(b.mods,y))})}})};function dA(e,t,n,r){if(t.element===r){var i;if(t.scope===n||t.scope==="all"){i=t.mods.length>0;for(var o in Bi)Object.prototype.hasOwnProperty.call(Bi,o)&&(!Bi[o]&&t.mods.indexOf(+o)>-1||Bi[o]&&t.mods.indexOf(+o)===-1)&&(i=!1);(t.mods.length===0&&!Bi[16]&&!Bi[18]&&!Bi[17]&&!Bi[91]||i||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function fA(e,t){var n=Zr["*"],r=e.keyCode||e.which||e.charCode;if(!!ya.filter.call(this,e)){if((r===93||r===224)&&(r=91),ar.indexOf(r)===-1&&r!==229&&ar.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var S=xC[b];e[b]&&ar.indexOf(S)===-1?ar.push(S):!e[b]&&ar.indexOf(S)>-1?ar.splice(ar.indexOf(S),1):b==="metaKey"&&e[b]&&ar.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(ar=ar.slice(ar.indexOf(S))))}),r in Bi){Bi[r]=!0;for(var i in Cd)Cd[i]===r&&(ya[i]=!0);if(!n)return}for(var o in Bi)Object.prototype.hasOwnProperty.call(Bi,o)&&(Bi[o]=e[xC[o]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(ar.indexOf(17)===-1&&ar.push(17),ar.indexOf(18)===-1&&ar.push(18),Bi[17]=!0,Bi[18]=!0);var a=av();if(n)for(var s=0;s-1}function ya(e,t,n){ar=[];var r=YF(e),i=[],o="all",a=document,s=0,l=!1,d=!0,p="+",g=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(o=t.scope),t.element&&(a=t.element),t.keyup&&(l=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(g=t.capture),typeof t.splitKey=="string"&&(p=t.splitKey)),typeof t=="string"&&(o=t);s1&&(i=KF(Cd,e)),e=e[e.length-1],e=e==="*"?"*":Ib(e),e in Zr||(Zr[e]=[]),Zr[e].push({keyup:l,keydown:d,scope:o,mods:i,shortcut:r[s],method:n,key:r[s],splitKey:p,element:a});typeof a<"u"&&!Aye(a)&&window&&(XF.push(a),FS(a,"keydown",function(m){fA(m,a)},g),cA||(cA=!0,FS(window,"focus",function(){ar=[]},g)),FS(a,"keyup",function(m){fA(m,a),Tye(m)},g))}function Iye(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(Zr).forEach(function(n){var r=Zr[n].find(function(i){return i.scope===t&&i.shortcut===e});r&&r.method&&r.method()})}var HS={setScope:QF,getScope:av,deleteScope:Pye,getPressedKeyCodes:_ye,isPressed:Eye,filter:kye,trigger:Iye,unbind:Lye,keyMap:i7,modifier:Cd,modifierMap:xC};for(var WS in HS)Object.prototype.hasOwnProperty.call(HS,WS)&&(ya[WS]=HS[WS]);if(typeof window<"u"){var Rye=window.hotkeys;ya.noConflict=function(e){return e&&window.hotkeys===ya&&(window.hotkeys=Rye),ya},window.hotkeys=ya}ya.filter=function(){return!0};var JF=function(t,n){var r=t.target,i=r&&r.tagName;return Boolean(i&&n&&n.includes(i))},Mye=function(t){return JF(t,["INPUT","TEXTAREA","SELECT"])};function Ht(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var i=n||{},o=i.enableOnTags,a=i.filter,s=i.keyup,l=i.keydown,d=i.filterPreventDefault,p=d===void 0?!0:d,g=i.enabled,m=g===void 0?!0:g,y=i.enableOnContentEditable,b=y===void 0?!1:y,S=C.exports.useRef(null),E=C.exports.useCallback(function(P,k){var L,R;return a&&!a(P)?!p:Mye(P)&&!JF(P,o)||(L=P.target)!=null&&L.isContentEditable&&!b?!0:S.current===null||document.activeElement===S.current||(R=S.current)!=null&&R.contains(document.activeElement)?(t(P,k),!0):!1},r?[S,o,a].concat(r):[S,o,a]);return C.exports.useEffect(function(){if(!m){ya.unbind(e,E);return}return s&&l!==!0&&(n.keydown=!1),ya(e,n||{},E),function(){return ya.unbind(e,E)}},[E,e,m]),S}ya.isPressed;function Oye(){return ne("div",{className:"work-in-progress nodes-work-in-progress",children:[w("h1",{children:"Nodes"}),w("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function Nye(){return ne("div",{className:"work-in-progress outpainting-work-in-progress",children:[w("h1",{children:"Outpainting"}),w("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const Dye=()=>ne("div",{className:"work-in-progress post-processing-work-in-progress",children:[w("h1",{children:"Post Processing"}),w("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image and Image To Image tabs. You can also process images directly, using the image action buttons above the main image display."}),w("p",{children:"A dedicated UI will be released soon to facilitate more advanced post processing workflows."}),w("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen."})]}),zye=e1({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:w("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),$ye=e1({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),Fye=e1({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),Bye=e1({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),Hye=e1({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:w("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),Wye=e1({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:w("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:w("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var xo=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(xo||{});const Vye={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN or Codeformer, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher strength values will apply a stronger corrective pressure on outputs, resulting in more appealing faces. With Codeformer, a higher fidelity will attempt to preserve the original image, at the expense of face correction strength.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},Zu=e=>{const{label:t,isDisabled:n=!1,width:r="auto",formControlProps:i,formLabelProps:o,styleClass:a,...s}=e;return w(Td,{isDisabled:n,width:r,className:`invokeai__switch-form-control ${a}`,...i,children:ne(Sh,{className:"invokeai__switch-form-label",whiteSpace:"nowrap",...o,children:[t,w($_,{className:"invokeai__switch-root",...s})]})})};function o7(){const e=Ze(i=>i.system.isGFPGANAvailable),t=Ze(i=>i.options.shouldRunFacetool),n=gt();return ne(Wn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Restore Face"}),w(Zu,{isDisabled:!e,isChecked:t,onChange:i=>n(p9e(i.target.checked))})]})}const hA=/^-?(0\.)?\.?$/,Co=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:i=!0,width:o,textAlign:a,isInvalid:s,value:l,onChange:d,min:p,max:g,isInteger:m=!0,formControlProps:y,formLabelProps:b,numberInputFieldProps:S,numberInputStepperProps:E,tooltipProps:P,...k}=e,[L,R]=C.exports.useState(String(l));C.exports.useEffect(()=>{!L.match(hA)&&l!==Number(L)&&R(String(l))},[l,L]);const N=$=>{R($),$.match(hA)||d(m?Math.floor(Number($)):Number($))},z=$=>{const F=Yt.clamp(m?Math.floor(Number($.target.value)):Number($.target.value),p,g);R(String(F)),d(F)};return w(li,{...P,children:ne(Td,{isDisabled:r,isInvalid:s,className:n?`invokeai__number-input-form-control ${n}`:"invokeai__number-input-form-control",...y,children:[w(Sh,{className:"invokeai__number-input-form-label",style:{display:t?"block":"none"},...b,children:t}),ne(b$,{className:"invokeai__number-input-root",value:L,keepWithinRange:!0,clampValueOnBlur:!1,onChange:N,onBlur:z,width:o,...k,children:[w(x$,{className:"invokeai__number-input-field",textAlign:a,...S}),ne("div",{className:"invokeai__number-input-stepper",style:i?{display:"block"}:{display:"none"},children:[w(C$,{...E,className:"invokeai__number-input-stepper-button"}),w(w$,{...E,className:"invokeai__number-input-stepper-button"})]})]})]})})},r1=e=>{const{label:t,isDisabled:n,validValues:r,size:i="sm",fontSize:o="md",styleClass:a,...s}=e;return ne(Td,{isDisabled:n,className:`invokeai__select ${a}`,onClick:l=>{l.stopPropagation(),l.nativeEvent.stopImmediatePropagation(),l.nativeEvent.stopPropagation(),l.nativeEvent.cancelBubble=!0},children:[w(Sh,{fontSize:o,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"invokeai__select-label",children:t}),w(P$,{fontSize:o,size:i,...s,className:"invokeai__select-picker",children:r.map(l=>typeof l=="string"||typeof l=="number"?w("option",{value:l,className:"invokeai__select-option",children:l},l):w("option",{value:l.value,children:l.key},l.value))})]})},Uye=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],Gye=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],jye=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],qye=[{key:"2x",value:2},{key:"4x",value:4}],a7=0,s7=4294967295,Kye=["gfpgan","codeformer"],Yye=[{key:"None",value:"none"},{key:"Full-res (slow)",value:"full-res"},{key:"Latents (fast)",value:"latents"}],Zye=Jt(e=>e.options,e=>({facetoolStrength:e.facetoolStrength,facetoolType:e.facetoolType,codeformerFidelity:e.codeformerFidelity}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),Xye=Jt(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),Rb=()=>{const e=gt(),{facetoolStrength:t,facetoolType:n,codeformerFidelity:r}=Ze(Zye),{isGFPGANAvailable:i}=Ze(Xye),o=l=>e(P5(l)),a=l=>e(fW(l)),s=l=>e(T5(l.target.value));return ne(Wn,{direction:"column",gap:2,children:[w(r1,{label:"Type",validValues:Kye.concat(),value:n,onChange:s}),w(Co,{isDisabled:!i,label:"Strength",step:.05,min:0,max:1,onChange:o,value:t,width:"90px",isInteger:!1}),n==="codeformer"&&w(Co,{isDisabled:!i,label:"Fidelity",step:.05,min:0,max:1,onChange:a,value:r,width:"90px",isInteger:!1})]})};function Qye(){const e=gt(),t=Ze(r=>r.options.shouldFitToWidthHeight);return w(Zu,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(hW(r.target.checked))})}function eB(e){const{label:t="Strength",styleClass:n}=e,r=Ze(a=>a.options.img2imgStrength),i=gt();return w(Co,{label:t,step:.01,min:.01,max:.99,onChange:a=>i(dW(a)),value:r,width:"100%",isInteger:!1,styleClass:n})}const tB=()=>w(ql,{flex:"1",textAlign:"left",children:"Other Options"}),Jye=()=>{const e=gt(),t=Ze(r=>r.options.hiresFix);return w(Wn,{gap:2,direction:"column",children:w(Zu,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(cW(r.target.checked))})})},e5e=()=>{const e=gt(),t=Ze(r=>r.options.seamless);return w(Wn,{gap:2,direction:"column",children:w(Zu,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(uW(r.target.checked))})})},nB=()=>ne(Wn,{gap:2,direction:"column",children:[w(e5e,{}),w(Jye,{})]}),l7=()=>w(ql,{flex:"1",textAlign:"left",children:"Seed"});function t5e(){const e=gt(),t=Ze(r=>r.options.shouldRandomizeSeed);return w(Zu,{label:"Randomize Seed",isChecked:t,onChange:r=>e(m9e(r.target.checked))})}function n5e(){const e=Ze(o=>o.options.seed),t=Ze(o=>o.options.shouldRandomizeSeed),n=Ze(o=>o.options.shouldGenerateVariations),r=gt(),i=o=>r(Wv(o));return w(Co,{label:"Seed",step:1,precision:0,flexGrow:1,min:a7,max:s7,isDisabled:t,isInvalid:e<0&&n,onChange:i,value:e,width:"10rem"})}const rB=(e,t)=>Math.floor(Math.random()*(t-e+1)+e);function r5e(){const e=gt(),t=Ze(r=>r.options.shouldRandomizeSeed);return w(ts,{size:"sm",isDisabled:t,onClick:()=>e(Wv(rB(a7,s7))),children:w("p",{children:"Shuffle"})})}function i5e(){const e=gt(),t=Ze(r=>r.options.threshold);return w(Co,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(u9e(r)),value:t,isInteger:!1})}function o5e(){const e=gt(),t=Ze(r=>r.options.perlin);return w(Co,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(c9e(r)),value:t,isInteger:!1})}const u7=()=>ne(Wn,{gap:2,direction:"column",children:[w(t5e,{}),ne(Wn,{gap:2,children:[w(n5e,{}),w(r5e,{})]}),w(Wn,{gap:2,children:w(i5e,{})}),w(Wn,{gap:2,children:w(o5e,{})})]});function c7(){const e=Ze(i=>i.system.isESRGANAvailable),t=Ze(i=>i.options.shouldRunESRGAN),n=gt();return ne(Wn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Upscale"}),w(Zu,{isDisabled:!e,isChecked:t,onChange:i=>n(g9e(i.target.checked))})]})}const a5e=Jt(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),s5e=Jt(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),Mb=()=>{const e=gt(),{upscalingLevel:t,upscalingStrength:n}=Ze(a5e),{isESRGANAvailable:r}=Ze(s5e);return ne("div",{className:"upscale-options",children:[w(r1,{isDisabled:!r,label:"Scale",value:t,onChange:a=>e(QC(Number(a.target.value))),validValues:qye}),w(Co,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:a=>e(JC(a)),value:n,isInteger:!1})]})};function l5e(){const e=Ze(r=>r.options.shouldGenerateVariations),t=gt();return w(Zu,{isChecked:e,width:"auto",onChange:r=>t(d9e(r.target.checked))})}function d7(){return ne(Wn,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[w("p",{children:"Variations"}),w(l5e,{})]})}function u5e(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:i="1rem",width:o,isInvalid:a,...s}=e;return ne(Td,{className:`input ${n}`,isInvalid:a,isDisabled:r,flexGrow:1,children:[w(Sh,{fontSize:i,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),w(o_,{...s,className:"input-entry",size:"sm",width:o})]})}function c5e(){const e=Ze(i=>i.options.seedWeights),t=Ze(i=>i.options.shouldGenerateVariations),n=gt(),r=i=>n(pW(i.target.value));return w(u5e,{label:"Seed Weights",value:e,isInvalid:t&&!(r7(e)||e===""),isDisabled:!t,onChange:r})}function d5e(){const e=Ze(i=>i.options.variationAmount),t=Ze(i=>i.options.shouldGenerateVariations),n=gt();return w(Co,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:i=>n(f9e(i)),isInteger:!1})}const f7=()=>ne(Wn,{gap:2,direction:"column",children:[w(d5e,{}),w(c5e,{})]}),sv=e=>{const{label:t,styleClass:n,...r}=e;return w(GD,{className:`invokeai__checkbox ${n}`,...r,children:t})};function h7(){const e=Ze(r=>r.options.showAdvancedOptions),t=gt();return w(sv,{label:"Advanced Options",styleClass:"advanced-options-checkbox",onChange:r=>t(v9e(r.target.checked)),isChecked:e})}function f5e(){const e=gt(),t=Ze(r=>r.options.cfgScale);return w(Co,{label:"CFG Scale",step:.5,min:1.01,max:30,onChange:r=>e(oW(r)),value:t,width:p7,fontSize:i1,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}const ds=Jt(e=>e.options,e=>Hv[e.activeTab],{memoizeOptions:{equalityCheck:Yt.isEqual}});function h5e(){const{height:e}=Ze(i=>i.options),t=Ze(ds),n=gt();return w(r1,{isDisabled:t==="inpainting",label:"Height",value:e,flexGrow:1,onChange:i=>n(aW(Number(i.target.value))),validValues:jye,fontSize:i1,styleClass:"main-option-block"})}function p5e(){const e=gt(),t=Ze(r=>r.options.iterations);return w(Co,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(l9e(r)),value:t,width:p7,fontSize:i1,styleClass:"main-option-block",textAlign:"center"})}function g5e(){const e=Ze(r=>r.options.sampler),t=gt();return w(r1,{label:"Sampler",value:e,onChange:r=>t(lW(r.target.value)),validValues:Uye,fontSize:i1,styleClass:"main-option-block"})}function m5e(){const e=gt(),t=Ze(r=>r.options.steps);return w(Co,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(iW(r)),value:t,width:p7,fontSize:i1,styleClass:"main-option-block",textAlign:"center"})}function v5e(){const{width:e,activeTab:t}=Ze(i=>i.options),n=gt(),r=i=>n(sW(Number(i.target.value)));return w(r1,{isDisabled:Hv[t]==="inpainting",label:"Width",value:e,flexGrow:1,onChange:r,validValues:Gye,fontSize:i1,styleClass:"main-option-block"})}const i1="0.9rem",p7="auto";function g7(){return w("div",{className:"main-options",children:ne("div",{className:"main-options-list",children:[ne("div",{className:"main-options-row",children:[w(p5e,{}),w(m5e,{}),w(f5e,{})]}),ne("div",{className:"main-options-row",children:[w(v5e,{}),w(h5e,{}),w(g5e,{})]})]})})}const y5e={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgressType:"none",shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",model_list:{},hasError:!1,wasErrorSeen:!0,isCancelable:!0},b5e=y5e,iB=bb({name:"system",initialState:b5e,reducers:{setShouldDisplayInProgressType:(e,t)=>{e.shouldDisplayInProgressType=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:i}=t.payload,a={timestamp:n,message:r,level:i||"info"};e.log.push(a)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.isCancelable=!0,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"},setModelList:(e,t)=>{e.model_list=t.payload},setIsCancelable:(e,t)=>{e.isCancelable=t.payload},modelChangeRequested:e=>{e.currentStatus="Loading Model",e.isCancelable=!1,e.isProcessing=!0,e.currentStatusHasSteps=!1}}}),{setShouldDisplayInProgressType:x5e,setIsProcessing:b0,addLogEntry:zi,setShouldShowLogViewer:pA,setIsConnected:gA,setSocketId:u7e,setShouldConfirmOnDelete:oB,setOpenAccordions:S5e,setSystemStatus:w5e,setCurrentStatus:VS,setSystemConfig:C5e,setShouldDisplayGuides:_5e,processingCanceled:k5e,errorOccurred:SC,errorSeen:aB,setModelList:mA,setIsCancelable:vA,modelChangeRequested:E5e}=iB.actions,P5e=iB.reducer;var sB={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},yA=re.createContext&&re.createContext(sB),gd=globalThis&&globalThis.__assign||function(){return gd=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),V5e=({children:e,feature:t})=>{const n=Ze(W5e),{text:r}=Vye[t];return n?ne(ub,{trigger:"hover",children:[w(fb,{children:w(ql,{children:e})}),ne(db,{className:"guide-popover-content",maxWidth:"400px",onClick:i=>i.preventDefault(),cursor:"initial",children:[w(cb,{className:"guide-popover-arrow"}),w("div",{className:"guide-popover-guide-content",children:r})]})]}):null},U5e=Le(({feature:e,icon:t=uB},n)=>w(V5e,{feature:e,children:w(ql,{ref:n,children:w(ib,{as:t})})}));function G5e(e){const{header:t,feature:n,options:r}=e;return ne(Qf,{className:"advanced-settings-item",children:[w("h2",{children:ne(Zf,{className:"advanced-settings-header",children:[t,w(U5e,{feature:n}),w(Xf,{})]})}),w(Jf,{className:"advanced-settings-panel",children:r})]})}const m7=e=>{const{accordionInfo:t}=e,n=Ze(a=>a.system.openAccordions),r=gt();return w(Z4,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:a=>r(S5e(a)),className:"advanced-settings",children:(()=>{const a=[];return t&&Object.keys(t).forEach(s=>{a.push(w(G5e,{header:t[s].header,feature:t[s].feature,options:t[s].options},s))}),a})()})};function j5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function q5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function K5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function Y5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function Z5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function X5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function Q5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function dB(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function J5e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"}}]})(e)}function e3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function t3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z"}}]})(e)}function n3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function r3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function fB(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"}}]})(e)}function i3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"}}]})(e)}function o3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"}}]})(e)}function a3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function s3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"}}]})(e)}function l3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z"}}]})(e)}function u3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function c3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function d3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function f3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z"}}]})(e)}function h3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"}}]})(e)}function p3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}function g3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"}}]})(e)}function m3e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"}}]})(e)}const hB=Jt([e=>e.options,e=>e.system,e=>e.inpainting,ds],(e,t,n,r)=>{const{prompt:i,shouldGenerateVariations:o,seedWeights:a,maskPath:s,initialImage:l,seed:d}=e,{isProcessing:p,isConnected:g}=t,{imageToInpaint:m}=n;return!(!i||Boolean(i.match(/^[\s\r\n]+$/))||r==="img2img"&&!l||r==="inpainting"&&!m||s&&!l||p||!g||o&&(!(r7(a)||a==="")||d===-1))},{memoizeOptions:{equalityCheck:Yt.isEqual,resultEqualityCheck:Yt.isEqual}}),wC=io("socketio/generateImage"),v3e=io("socketio/runESRGAN"),y3e=io("socketio/runFacetool"),b3e=io("socketio/deleteImage"),CC=io("socketio/requestImages"),bA=io("socketio/requestNewImages"),x3e=io("socketio/cancelProcessing"),xA=io("socketio/uploadImage");io("socketio/uploadMaskImage");const S3e=io("socketio/requestSystemConfig"),w3e=io("socketio/requestModelChange"),H3=e=>{const{label:t,tooltip:n="",styleClass:r,...i}=e;return w(li,{label:n,children:w(ts,{className:r||"",...i,children:t})})},vn=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",styleClass:r,onClick:i,cursor:o,...a}=e;return w(li,{label:t,hasArrow:!0,placement:n,children:w(no,{className:`icon-button ${r}`,...a,cursor:o||(i?"pointer":"unset"),onClick:i})})};function pB(e){const{iconButton:t=!1,...n}=e,r=gt(),i=Ze(hB),o=Ze(ds),a=()=>{r(wC(o))};return Ht("ctrl+enter, cmd+enter",()=>{i&&r(wC(o))},[i,o]),t?w(vn,{"aria-label":"Invoke",type:"submit",icon:w(o3e,{}),isDisabled:!i,onClick:a,className:"invoke-btn invoke",tooltip:"Invoke",tooltipPlacement:"bottom",...n}):w(H3,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!i,onClick:a,className:"invoke-btn",...n})}const C3e=Jt(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isCancelable:e.isCancelable}),{memoizeOptions:{resultEqualityCheck:Yt.isEqual}});function gB(e){const{...t}=e,n=gt(),{isProcessing:r,isConnected:i,isCancelable:o}=Ze(C3e),a=()=>n(x3e());return Ht("shift+x",()=>{(i||r)&&o&&a()},[i,r,o]),w(vn,{icon:w(H5e,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!i||!r||!o,onClick:a,styleClass:"cancel-btn",...t})}const _3e=Jt(e=>e.options,e=>e.shouldLoopback),mB=()=>{const e=gt(),t=Ze(_3e);return w(vn,{"aria-label":"Loopback",tooltip:"Loopback","data-selected":t,icon:w(s3e,{}),onClick:()=>{e(k9e(!t))}})},v7=()=>ne("div",{className:"process-buttons",children:[w(pB,{}),w(mB,{}),w(gB,{})]}),k3e=Jt([e=>e.options,ds],(e,t)=>({prompt:e.prompt,activeTabName:t}),{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),y7=()=>{const e=gt(),{prompt:t,activeTabName:n}=Ze(k3e),r=Ze(hB),i=C.exports.useRef(null),o=s=>{e(H7(s.target.value))};Ht("alt+a",()=>{i.current?.focus()},[]);const a=s=>{s.key==="Enter"&&s.shiftKey===!1&&r&&(s.preventDefault(),e(wC(n)))};return w("div",{className:"prompt-bar",children:w(Td,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),children:w(q$,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:o,onKeyDown:a,resize:"vertical",height:30,ref:i})})})};function vB(e){return Ct({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146z"}}]})(e)}function yB(e){return Ct({tag:"svg",attr:{fill:"currentColor",viewBox:"0 0 16 16"},child:[{tag:"path",attr:{d:"M9.828.722a.5.5 0 0 1 .354.146l4.95 4.95a.5.5 0 0 1 0 .707c-.48.48-1.072.588-1.503.588-.177 0-.335-.018-.46-.039l-3.134 3.134a5.927 5.927 0 0 1 .16 1.013c.046.702-.032 1.687-.72 2.375a.5.5 0 0 1-.707 0l-2.829-2.828-3.182 3.182c-.195.195-1.219.902-1.414.707-.195-.195.512-1.22.707-1.414l3.182-3.182-2.828-2.829a.5.5 0 0 1 0-.707c.688-.688 1.673-.767 2.375-.72a5.922 5.922 0 0 1 1.013.16l3.134-3.133a2.772 2.772 0 0 1-.04-.461c0-.43.108-1.022.589-1.503a.5.5 0 0 1 .353-.146zm.122 2.112v-.002.002zm0-.002v.002a.5.5 0 0 1-.122.51L6.293 6.878a.5.5 0 0 1-.511.12H5.78l-.014-.004a4.507 4.507 0 0 0-.288-.076 4.922 4.922 0 0 0-.765-.116c-.422-.028-.836.008-1.175.15l5.51 5.509c.141-.34.177-.753.149-1.175a4.924 4.924 0 0 0-.192-1.054l-.004-.013v-.001a.5.5 0 0 1 .12-.512l3.536-3.535a.5.5 0 0 1 .532-.115l.096.022c.087.017.208.034.344.034.114 0 .23-.011.343-.04L9.927 2.028c-.029.113-.04.23-.04.343a1.779 1.779 0 0 0 .062.46z"}}]})(e)}function E3e(e,t){return e.classList?!!t&&e.classList.contains(t):(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")!==-1}function P3e(e,t){e.classList?e.classList.add(t):E3e(e,t)||(typeof e.className=="string"?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))}function SA(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function T3e(e,t){e.classList?e.classList.remove(t):typeof e.className=="string"?e.className=SA(e.className,t):e.setAttribute("class",SA(e.className&&e.className.baseVal||"",t))}const wA={disabled:!1},bB=re.createContext(null);var xB=function(t){return t.scrollTop},Rg="unmounted",Ff="exited",Bf="entering",Mp="entered",_C="exiting",Xu=function(e){x_(t,e);function t(r,i){var o;o=e.call(this,r,i)||this;var a=i,s=a&&!a.isMounting?r.enter:r.appear,l;return o.appearStatus=null,r.in?s?(l=Ff,o.appearStatus=Bf):l=Mp:r.unmountOnExit||r.mountOnEnter?l=Rg:l=Ff,o.state={status:l},o.nextCallback=null,o}t.getDerivedStateFromProps=function(i,o){var a=i.in;return a&&o.status===Rg?{status:Ff}:null};var n=t.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(i){var o=null;if(i!==this.props){var a=this.state.status;this.props.in?a!==Bf&&a!==Mp&&(o=Bf):(a===Bf||a===Mp)&&(o=_C)}this.updateStatus(!1,o)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var i=this.props.timeout,o,a,s;return o=a=s=i,i!=null&&typeof i!="number"&&(o=i.exit,a=i.enter,s=i.appear!==void 0?i.appear:a),{exit:o,enter:a,appear:s}},n.updateStatus=function(i,o){if(i===void 0&&(i=!1),o!==null)if(this.cancelNextCallback(),o===Bf){if(this.props.unmountOnExit||this.props.mountOnEnter){var a=this.props.nodeRef?this.props.nodeRef.current:K2.findDOMNode(this);a&&xB(a)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Ff&&this.setState({status:Rg})},n.performEnter=function(i){var o=this,a=this.props.enter,s=this.context?this.context.isMounting:i,l=this.props.nodeRef?[s]:[K2.findDOMNode(this),s],d=l[0],p=l[1],g=this.getTimeouts(),m=s?g.appear:g.enter;if(!i&&!a||wA.disabled){this.safeSetState({status:Mp},function(){o.props.onEntered(d)});return}this.props.onEnter(d,p),this.safeSetState({status:Bf},function(){o.props.onEntering(d,p),o.onTransitionEnd(m,function(){o.safeSetState({status:Mp},function(){o.props.onEntered(d,p)})})})},n.performExit=function(){var i=this,o=this.props.exit,a=this.getTimeouts(),s=this.props.nodeRef?void 0:K2.findDOMNode(this);if(!o||wA.disabled){this.safeSetState({status:Ff},function(){i.props.onExited(s)});return}this.props.onExit(s),this.safeSetState({status:_C},function(){i.props.onExiting(s),i.onTransitionEnd(a.exit,function(){i.safeSetState({status:Ff},function(){i.props.onExited(s)})})})},n.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(i,o){o=this.setNextCallback(o),this.setState(i,o)},n.setNextCallback=function(i){var o=this,a=!0;return this.nextCallback=function(s){a&&(a=!1,o.nextCallback=null,i(s))},this.nextCallback.cancel=function(){a=!1},this.nextCallback},n.onTransitionEnd=function(i,o){this.setNextCallback(o);var a=this.props.nodeRef?this.props.nodeRef.current:K2.findDOMNode(this),s=i==null&&!this.props.addEndListener;if(!a||s){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var l=this.props.nodeRef?[this.nextCallback]:[a,this.nextCallback],d=l[0],p=l[1];this.props.addEndListener(d,p)}i!=null&&setTimeout(this.nextCallback,i)},n.render=function(){var i=this.state.status;if(i===Rg)return null;var o=this.props,a=o.children;o.in,o.mountOnEnter,o.unmountOnExit,o.appear,o.enter,o.exit,o.timeout,o.addEndListener,o.onEnter,o.onEntering,o.onEntered,o.onExit,o.onExiting,o.onExited,o.nodeRef;var s=v_(o,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return w(bB.Provider,{value:null,children:typeof a=="function"?a(i,s):re.cloneElement(re.Children.only(a),s)})},t}(re.Component);Xu.contextType=bB;Xu.propTypes={};function Tp(){}Xu.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Tp,onEntering:Tp,onEntered:Tp,onExit:Tp,onExiting:Tp,onExited:Tp};Xu.UNMOUNTED=Rg;Xu.EXITED=Ff;Xu.ENTERING=Bf;Xu.ENTERED=Mp;Xu.EXITING=_C;const L3e=Xu;var A3e=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return P3e(t,r)})},US=function(t,n){return t&&n&&n.split(" ").forEach(function(r){return T3e(t,r)})},b7=function(e){x_(t,e);function t(){for(var r,i=arguments.length,o=new Array(i),a=0;a{C.exports.useEffect(()=>{function r(i){e.current&&!e.current.contains(i.target)&&t()}return n&&document.addEventListener("mousedown",r),()=>{n&&document.removeEventListener("mousedown",r)}},[e,n,t])},qa=(e,t)=>Math.floor(e/t)*t,CA=(e,t)=>Math.round(e/t)*t,I3e={tool:"brush",brushSize:50,maskColor:{r:255,g:90,b:90,a:.5},canvasDimensions:{width:0,height:0},boundingBoxDimensions:{width:512,height:512},boundingBoxCoordinate:{x:0,y:0},boundingBoxPreviewFill:{r:0,g:0,b:0,a:.7},shouldShowBoundingBox:!0,shouldShowBoundingBoxFill:!0,cursorPosition:null,lines:[],pastLines:[],futureLines:[],shouldShowMask:!0,shouldInvertMask:!1,shouldShowCheckboardTransparency:!1,shouldShowBrush:!0,shouldShowBrushPreview:!1,needsCache:!1,isDrawing:!1,stageScale:1,shouldUseInpaintReplace:!1,inpaintReplace:1,shouldLockBoundingBox:!0},R3e=I3e,CB=bb({name:"inpainting",initialState:R3e,reducers:{setTool:(e,t)=>{e.tool=t.payload},toggleTool:e=>{e.tool=e.tool==="brush"?"eraser":"brush"},setBrushSize:(e,t)=>{e.brushSize=t.payload},addLine:(e,t)=>{e.pastLines.push(e.lines),e.lines.push(t.payload),e.futureLines=[]},addPointToCurrentLine:(e,t)=>{e.lines[e.lines.length-1].points.push(...t.payload)},undo:e=>{if(e.pastLines.length===0)return;const t=e.pastLines.pop();!t||(e.futureLines.unshift(e.lines),e.lines=t)},redo:e=>{if(e.futureLines.length===0)return;const t=e.futureLines.shift();!t||(e.pastLines.push(e.lines),e.lines=t)},clearMask:e=>{e.pastLines.push(e.lines),e.lines=[],e.futureLines=[],e.shouldInvertMask=!1},toggleShouldInvertMask:e=>{e.shouldInvertMask=!e.shouldInvertMask},toggleShouldShowMask:e=>{e.shouldShowMask=!e.shouldShowMask},setShouldInvertMask:(e,t)=>{e.shouldInvertMask=t.payload},setShouldShowMask:(e,t)=>{e.shouldShowMask=t.payload,t.payload||(e.shouldInvertMask=!1)},setShouldShowCheckboardTransparency:(e,t)=>{e.shouldShowCheckboardTransparency=t.payload},setShouldShowBrushPreview:(e,t)=>{e.shouldShowBrushPreview=t.payload},setShouldShowBrush:(e,t)=>{e.shouldShowBrush=t.payload},setMaskColor:(e,t)=>{e.maskColor=t.payload},setCursorPosition:(e,t)=>{e.cursorPosition=t.payload},clearImageToInpaint:e=>{e.imageToInpaint=void 0},setImageToInpaint:(e,t)=>{const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,{x:a,y:s}=e.boundingBoxCoordinate,l={x:a,y:s},d={width:i,height:o};i+a>n&&(i>n&&(d.width=qa(n,64)),l.x=n-d.width),o+s>r&&(o>r&&(d.height=qa(r,64)),l.y=r-d.height),e.boundingBoxDimensions=d,e.boundingBoxCoordinate=l,e.canvasDimensions={width:n,height:r},e.imageToInpaint=t.payload,e.needsCache=!0},setCanvasDimensions:(e,t)=>{e.canvasDimensions=t.payload;const{width:n,height:r}=t.payload,{width:i,height:o}=e.boundingBoxDimensions,a=qa(Yt.clamp(i,64,n),64),s=qa(Yt.clamp(o,64,r),64);e.boundingBoxDimensions={width:a,height:s}},setBoundingBoxDimensions:(e,t)=>{e.boundingBoxDimensions=t.payload;const{width:n,height:r}=t.payload,{x:i,y:o}=e.boundingBoxCoordinate,{width:a,height:s}=e.canvasDimensions,l=qa(a,64),d=qa(s,64),p=qa(n,64),g=qa(r,64),m=i+n-a,y=o+r-s,b=Yt.clamp(p,64,l),S=Yt.clamp(g,64,d),E=m>0?i-m:i,P=y>0?o-y:o,k=Yt.clamp(E,0,l-b),L=Yt.clamp(P,0,d-S);e.boundingBoxDimensions={width:b,height:S},e.boundingBoxCoordinate={x:k,y:L}},setBoundingBoxCoordinate:(e,t)=>{e.boundingBoxCoordinate=t.payload},setBoundingBoxPreviewFill:(e,t)=>{e.boundingBoxPreviewFill=t.payload},setNeedsCache:(e,t)=>{e.needsCache=t.payload},setStageScale:(e,t)=>{e.stageScale=t.payload,e.needsCache=!1},setShouldShowBoundingBoxFill:(e,t)=>{e.shouldShowBoundingBoxFill=t.payload},setIsDrawing:(e,t)=>{e.isDrawing=t.payload},setClearBrushHistory:e=>{e.pastLines=[],e.futureLines=[]},setShouldUseInpaintReplace:(e,t)=>{e.shouldUseInpaintReplace=t.payload},setInpaintReplace:(e,t)=>{e.inpaintReplace=t.payload},setShouldLockBoundingBox:(e,t)=>{e.shouldLockBoundingBox=t.payload},toggleShouldLockBoundingBox:e=>{e.shouldLockBoundingBox=!e.shouldLockBoundingBox},setShouldShowBoundingBox:(e,t)=>{e.shouldShowBoundingBox=t.payload}}}),{setTool:_A,setBrushSize:M3e,addLine:kA,addPointToCurrentLine:EA,setShouldInvertMask:O3e,setShouldShowMask:N3e,setShouldShowCheckboardTransparency:c7e,setShouldShowBrushPreview:GS,setMaskColor:D3e,clearMask:z3e,clearImageToInpaint:x7,undo:$3e,redo:F3e,setCursorPosition:PA,setCanvasDimensions:d7e,setImageToInpaint:W3,setBoundingBoxDimensions:Mg,setBoundingBoxCoordinate:TA,setBoundingBoxPreviewFill:f7e,setNeedsCache:th,setStageScale:B3e,toggleTool:H3e,setShouldShowBoundingBox:W3e,setShouldShowBoundingBoxFill:V3e,setIsDrawing:Og,setShouldShowBrush:h7e,setClearBrushHistory:U3e,setShouldUseInpaintReplace:G3e,setInpaintReplace:j3e,setShouldLockBoundingBox:_B,toggleShouldLockBoundingBox:q3e}=CB.actions,K3e=CB.reducer,kB=""+new URL("logo.13003d72.png",import.meta.url).href,Y3e=Jt(e=>e.options,e=>{const{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}=e;return{shouldShowOptionsPanel:t,shouldHoldOptionsPanelOpen:n,shouldPinOptionsPanel:r,optionsPanelScrollPosition:i}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),S7=e=>{const t=gt(),{shouldShowOptionsPanel:n,shouldHoldOptionsPanelOpen:r,shouldPinOptionsPanel:i}=Ze(Y3e),o=C.exports.useRef(null),a=C.exports.useRef(null),s=C.exports.useRef(null),{children:l}=e;Ht("o",()=>{t(n9(!n))},[n]),Ht("shift+o",()=>{m()},[i]);const d=C.exports.useCallback(()=>{i||(t(C9e(a.current?a.current.scrollTop:0)),t(n9(!1)),t(_9e(!1)))},[t,i]);wB(o,d,!i);const p=()=>{s.current=window.setTimeout(()=>d(),500)},g=()=>{s.current&&window.clearTimeout(s.current)},m=()=>{t(w9e(!i)),t(th(!0))};return w(SB,{nodeRef:o,in:n||r&&!i,unmountOnExit:!0,timeout:200,classNames:"options-panel-wrapper",children:w("div",{className:"options-panel-wrapper","data-pinned":i,tabIndex:1,ref:o,onMouseEnter:i?void 0:g,onMouseOver:i?void 0:g,children:w("div",{className:"options-panel-margin",children:ne("div",{className:"options-panel",ref:a,onMouseLeave:y=>{y.target!==a.current?g():!i&&p()},children:[w(li,{label:"Pin Options Panel",children:w("div",{className:"options-panel-pin-button","data-selected":i,onClick:m,children:i?w(vB,{}):w(yB,{})})}),!i&&ne("div",{className:"invoke-ai-logo-wrapper",children:[w("img",{src:kB,alt:"invoke-ai-logo"}),ne("h1",{children:["invoke ",w("strong",{children:"ai"})]})]}),l]})})})})};function Z3e(){const e=Ze(n=>n.options.showAdvancedOptions),t={seed:{header:w(l7,{}),feature:xo.SEED,options:w(u7,{})},variations:{header:w(d7,{}),feature:xo.VARIATIONS,options:w(f7,{})},face_restore:{header:w(o7,{}),feature:xo.FACE_CORRECTION,options:w(Rb,{})},upscale:{header:w(c7,{}),feature:xo.UPSCALE,options:w(Mb,{})},other:{header:w(tB,{}),feature:xo.OTHER,options:w(nB,{})}};return ne(S7,{children:[w(y7,{}),w(v7,{}),w(g7,{}),w(eB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),w(Qye,{}),w(h7,{}),e?w(m7,{accordionInfo:t}):null]})}const EB=C.exports.createContext(null),PB=e=>{const{styleClass:t}=e,n=C.exports.useContext(EB),r=()=>{n&&n()};return w("div",{className:`image-uploader-button-outer ${t}`,onClick:r,children:ne("div",{className:"image-upload-button",children:[w(p3e,{}),w(oh,{size:"lg",children:"Click or Drag and Drop"})]})})},X3e=Jt(e=>e.system,e=>{const{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}=e;return{shouldConfirmOnDelete:t,isConnected:n,isProcessing:r}}),kC=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:i,onClose:o}=_3(),a=gt(),{shouldConfirmOnDelete:s,isConnected:l,isProcessing:d}=Ze(X3e),p=C.exports.useRef(null),g=b=>{b.stopPropagation(),s?i():m()},m=()=>{l&&!d&&a(b3e(e)),o()};Ht("del",()=>{s?i():m()},[e,s]);const y=b=>a(oB(!b.target.checked));return ne(Un,{children:[C.exports.cloneElement(t,{onClick:g,ref:n}),w(ace,{isOpen:r,leastDestructiveRef:p,onClose:o,children:w(Jm,{children:ne(sce,{children:[w(I_,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),w(T3,{children:ne(Wn,{direction:"column",gap:5,children:[w(Wo,{children:"Are you sure? You can't undo this action afterwards."}),w(Td,{children:ne(Wn,{alignItems:"center",children:[w(Sh,{mb:0,children:"Don't ask me again"}),w($_,{checked:!s,onChange:y})]})})]})}),ne(A_,{children:[w(ts,{ref:p,onClick:o,children:"Cancel"}),w(ts,{colorScheme:"red",onClick:m,ml:3,children:"Delete"})]})]})})})]})}),LA=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:i,children:o})=>ne(ub,{trigger:"hover",closeDelay:n,children:[w(fb,{children:w(ql,{children:o})}),ne(db,{className:`popover-content ${t}`,children:[w(cb,{className:"popover-arrow"}),w(_$,{className:"popover-header",children:e}),ne("div",{className:"popover-options",children:[r||null,i]})]})]});Jt(e=>e.gallery,e=>e.intermediateImage,{memoizeOptions:{resultEqualityCheck:(e,t)=>e===void 0&&t===void 0||e.uuid===t.uuid}});const Q3e=Jt([e=>e.system,e=>e.options,e=>e.gallery,ds],(e,t,n,r)=>{const{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s}=e,{upscalingLevel:l,facetoolStrength:d,shouldShowImageDetails:p}=t,{intermediateImage:g}=n;return{isProcessing:i,isConnected:o,isGFPGANAvailable:a,isESRGANAvailable:s,upscalingLevel:l,facetoolStrength:d,intermediateImage:g,shouldShowImageDetails:p,activeTabName:r}},{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),J3e=({image:e})=>{const t=gt(),{isProcessing:n,isConnected:r,isGFPGANAvailable:i,isESRGANAvailable:o,upscalingLevel:a,facetoolStrength:s,intermediateImage:l,shouldShowImageDetails:d,activeTabName:p}=Ze(Q3e),g=Id(),m=()=>{t(cv(e)),t(Ka(1))};Ht("shift+i",()=>{e?(m(),g({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):g({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const y=()=>e.metadata&&t(h9e(e.metadata));Ht("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(y(),g({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):g({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>e.metadata&&t(Wv(e.metadata.image.seed));Ht("s",()=>{e?.metadata?.image?.seed?(b(),g({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):g({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const S=()=>t(v3e(e));Ht("u",()=>{o&&Boolean(!l)&&r&&!n&&a?S():g({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,o,l,r,n,a]);const E=()=>t(y3e(e));Ht("r",()=>{i&&Boolean(!l)&&r&&!n&&s?E():g({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,i,l,r,n,s]);const P=()=>t(y9e(!d)),k=()=>{t(W3(e)),p!=="inpainting"&&t(Ka("inpainting")),g({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0})};return Ht("i",()=>{e?P():g({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,d]),ne("div",{className:"current-image-options",children:[w(vn,{icon:w(F5e,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:m}),w(vn,{icon:w(fB,{}),tooltip:"Send To Inpainting","aria-label":"Send To Inpainting",onClick:k}),w(vn,{icon:w(dB,{}),tooltip:"Use All","aria-label":"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:y}),w(vn,{icon:w(u3e,{}),tooltip:"Use Seed","aria-label":"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:b}),w(LA,{title:"Restore Faces",popoverOptions:w(Rb,{}),actionButton:w(H3,{label:"Restore Faces",isDisabled:!i||Boolean(l)||!(r&&!n)||!s,onClick:E}),children:w(vn,{icon:w(I5e,{}),"aria-label":"Restore Faces"})}),w(LA,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:w(Mb,{}),actionButton:w(H3,{label:"Upscale Image",isDisabled:!o||Boolean(l)||!(r&&!n)||!a,onClick:S}),children:w(vn,{icon:w(N5e,{}),"aria-label":"Upscale"})}),w(vn,{icon:w(R5e,{}),tooltip:"Details","aria-label":"Details",onClick:P}),w(kC,{image:e,children:w(vn,{icon:w(A5e,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(l)||!r||n})})]})},e4e={currentImageUuid:"",shouldPinGallery:!0,shouldShowGallery:!0,galleryScrollPosition:0,galleryImageMinimumWidth:64,galleryImageObjectFit:"cover",shouldHoldGalleryOpen:!1,shouldAutoSwitchToNewImages:!0,currentCategory:"result",categories:{user:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0},result:{images:[],latest_mtime:void 0,earliest_mtime:void 0,areMoreImagesAvailable:!0}},galleryWidth:300},TB=bb({name:"gallery",initialState:e4e,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const{uuid:n,category:r}=t.payload,i=e.categories[r].images,o=i.filter(a=>a.uuid!==n);if(n===e.currentImageUuid){const a=i.findIndex(l=>l.uuid===n),s=ka.exports.clamp(a,0,o.length-1);e.currentImage=o.length?o[s]:void 0,e.currentImageUuid=o.length?o[s].uuid:""}e.categories[r].images=o},addImage:(e,t)=>{const{image:n,category:r}=t.payload,{uuid:i,url:o,mtime:a}=n,s=e.categories[r];s.images.find(l=>l.url===o&&l.mtime===a)||(s.images.unshift(n),e.shouldAutoSwitchToNewImages&&(e.currentImageUuid=i,e.currentImage=n,e.currentCategory=r),e.intermediateImage=void 0,s.latest_mtime=a)},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(Yt.inRange(r,0,n.length)){const i=n[r+1];e.currentImage=i,e.currentImageUuid=i.uuid}}},selectPrevImage:e=>{const{currentImage:t}=e;if(!t)return;const n=e.categories[t.category].images;if(t){const r=n.findIndex(i=>i.uuid===t.uuid);if(Yt.inRange(r,1,n.length+1)){const i=n[r-1];e.currentImage=i,e.currentImageUuid=i.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r,category:i}=t.payload,o=e.categories[i].images;if(n.length>0){const a=n.filter(s=>!o.find(l=>l.url===s.url&&l.mtime===s.mtime));if(e.categories[i].images=o.concat(a).sort((s,l)=>l.mtime-s.mtime),!e.currentImage){const s=n[0];e.currentImage=s,e.currentImageUuid=s.uuid}e.categories[i].latest_mtime=n[0].mtime,e.categories[i].earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.categories[i].areMoreImagesAvailable=r)},setShouldPinGallery:(e,t)=>{e.shouldPinGallery=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload},setGalleryScrollPosition:(e,t)=>{e.galleryScrollPosition=t.payload},setGalleryImageMinimumWidth:(e,t)=>{e.galleryImageMinimumWidth=t.payload},setGalleryImageObjectFit:(e,t)=>{e.galleryImageObjectFit=t.payload},setShouldHoldGalleryOpen:(e,t)=>{e.shouldHoldGalleryOpen=t.payload},setShouldAutoSwitchToNewImages:(e,t)=>{e.shouldAutoSwitchToNewImages=t.payload},setCurrentCategory:(e,t)=>{e.currentCategory=t.payload},setGalleryWidth:(e,t)=>{e.galleryWidth=t.payload}}}),{addImage:yy,clearIntermediateImage:AA,removeImage:LB,setCurrentImage:AB,addGalleryImages:t4e,setIntermediateImage:n4e,selectNextImage:IB,selectPrevImage:RB,setShouldPinGallery:r4e,setShouldShowGallery:EC,setGalleryScrollPosition:i4e,setGalleryImageMinimumWidth:Of,setGalleryImageObjectFit:o4e,setShouldHoldGalleryOpen:a4e,setShouldAutoSwitchToNewImages:s4e,setCurrentCategory:by,setGalleryWidth:xy}=TB.actions,l4e=TB.reducer;var IA={path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},MB=Le((e,t)=>{const{as:n,viewBox:r,color:i="currentColor",focusable:o=!1,children:a,className:s,__css:l,...d}=e,p=$n("chakra-icon",s),g={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:i,...l},m={ref:t,focusable:o,className:p,__css:g},y=r??IA.viewBox;if(n&&typeof n!="string")return re.createElement(Ce.svg,{as:n,...m,...d});const b=a??IA.path;return re.createElement(Ce.svg,{verticalAlign:"middle",viewBox:y,...m,...d},b)});MB.displayName="Icon";function ht(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:i={}}=e,o=C.exports.Children.toArray(e.path),a=Le((s,l)=>w(MB,{ref:l,viewBox:t,...i,...s,children:o.length?o:w("path",{fill:"currentColor",d:n})}));return a.displayName=r,a}ht({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});ht({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});ht({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});ht({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});ht({displayName:"SunIcon",path:ne("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[w("circle",{cx:"12",cy:"12",r:"5"}),w("path",{d:"M12 1v2"}),w("path",{d:"M12 21v2"}),w("path",{d:"M4.22 4.22l1.42 1.42"}),w("path",{d:"M18.36 18.36l1.42 1.42"}),w("path",{d:"M1 12h2"}),w("path",{d:"M21 12h2"}),w("path",{d:"M4.22 19.78l1.42-1.42"}),w("path",{d:"M18.36 5.64l1.42-1.42"})]})});ht({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});ht({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:w("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});ht({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});ht({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});ht({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});ht({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});ht({displayName:"ViewIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),w("circle",{cx:"12",cy:"12",r:"2"})]})});ht({displayName:"ViewOffIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),w("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});ht({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});ht({displayName:"DeleteIcon",path:w("g",{fill:"currentColor",children:w("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});ht({displayName:"RepeatIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),w("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});ht({displayName:"RepeatClockIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),w("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});ht({displayName:"EditIcon",path:ne("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),w("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});ht({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});ht({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});ht({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});ht({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});ht({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});ht({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});ht({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});ht({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});ht({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var OB=ht({displayName:"ExternalLinkIcon",path:ne("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),w("path",{d:"M15 3h6v6"}),w("path",{d:"M10 14L21 3"})]})});ht({displayName:"LinkIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),w("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});ht({displayName:"PlusSquareIcon",path:ne("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[w("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),w("path",{d:"M12 8v8"}),w("path",{d:"M8 12h8"})]})});ht({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});ht({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});ht({displayName:"TimeIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),w("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});ht({displayName:"ArrowRightIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),w("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});ht({displayName:"ArrowLeftIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),w("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});ht({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});ht({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});ht({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});ht({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});ht({displayName:"EmailIcon",path:ne("g",{fill:"currentColor",children:[w("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),w("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});ht({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});ht({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});ht({displayName:"SpinnerIcon",path:ne(Un,{children:[w("defs",{children:ne("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[w("stop",{stopColor:"currentColor",offset:"0%"}),w("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),ne("g",{transform:"translate(2)",fill:"none",children:[w("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),w("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),w("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});ht({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});ht({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:w("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});ht({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});ht({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});ht({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});ht({displayName:"InfoOutlineIcon",path:ne("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[w("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),w("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),w("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});ht({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});ht({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});ht({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});ht({displayName:"QuestionOutlineIcon",path:ne("g",{stroke:"currentColor",strokeWidth:"1.5",children:[w("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),w("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),w("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});ht({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});ht({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});ht({viewBox:"0 0 14 14",path:w("g",{fill:"currentColor",children:w("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});ht({displayName:"MinusIcon",path:w("g",{fill:"currentColor",children:w("rect",{height:"4",width:"20",x:"2",y:"10"})})});ht({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function u4e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const or=({label:e,value:t,onClick:n,isLink:r,labelPosition:i})=>ne(Wn,{gap:2,children:[n&&w(li,{label:`Recall ${e}`,children:w(no,{"aria-label":"Use this parameter",icon:w(u4e,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),ne(Wn,{direction:i?"column":"row",children:[ne(Wo,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?ne(d0,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",w(OB,{mx:"2px"})]}):w(Wo,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),c4e=(e,t)=>e.image.uuid===t.image.uuid,d4e=C.exports.memo(({image:e,styleClass:t})=>{const n=gt(),r=e?.metadata?.image||{},{type:i,postprocessing:o,sampler:a,prompt:s,seed:l,variations:d,steps:p,cfg_scale:g,seamless:m,hires_fix:y,width:b,height:S,strength:E,fit:P,init_image_path:k,mask_image_path:L,orig_path:R,scale:N}=r,z=JSON.stringify(r,null,2);return w("div",{className:`image-metadata-viewer ${t}`,children:ne(Wn,{gap:1,direction:"column",width:"100%",children:[ne(Wn,{gap:2,children:[w(Wo,{fontWeight:"semibold",children:"File:"}),ne(d0,{href:e.url,isExternal:!0,children:[e.url,w(OB,{mx:"2px"})]})]}),Object.keys(r).length>0?ne(Un,{children:[i&&w(or,{label:"Generation type",value:i}),["esrgan","gfpgan"].includes(i)&&w(or,{label:"Original image",value:R}),i==="gfpgan"&&E!==void 0&&w(or,{label:"Fix faces strength",value:E,onClick:()=>n(P5(E))}),i==="esrgan"&&N!==void 0&&w(or,{label:"Upscaling scale",value:N,onClick:()=>n(QC(N))}),i==="esrgan"&&E!==void 0&&w(or,{label:"Upscaling strength",value:E,onClick:()=>n(JC(E))}),s&&w(or,{label:"Prompt",labelPosition:"top",value:S5(s),onClick:()=>n(H7(s))}),l!==void 0&&w(or,{label:"Seed",value:l,onClick:()=>n(Wv(l))}),a&&w(or,{label:"Sampler",value:a,onClick:()=>n(lW(a))}),p&&w(or,{label:"Steps",value:p,onClick:()=>n(iW(p))}),g!==void 0&&w(or,{label:"CFG scale",value:g,onClick:()=>n(oW(g))}),d&&d.length>0&&w(or,{label:"Seed-weight pairs",value:B3(d),onClick:()=>n(pW(B3(d)))}),m&&w(or,{label:"Seamless",value:m,onClick:()=>n(uW(m))}),y&&w(or,{label:"High Resolution Optimization",value:y,onClick:()=>n(cW(y))}),b&&w(or,{label:"Width",value:b,onClick:()=>n(sW(b))}),S&&w(or,{label:"Height",value:S,onClick:()=>n(aW(S))}),k&&w(or,{label:"Initial image",value:k,isLink:!0,onClick:()=>n(cv(k))}),L&&w(or,{label:"Mask image",value:L,isLink:!0,onClick:()=>n(e9(L))}),i==="img2img"&&E&&w(or,{label:"Image to image strength",value:E,onClick:()=>n(dW(E))}),P&&w(or,{label:"Image to image fit",value:P,onClick:()=>n(hW(P))}),o&&o.length>0&&ne(Un,{children:[w(oh,{size:"sm",children:"Postprocessing"}),o.map(($,F)=>{if($.type==="esrgan"){const{scale:q,strength:j}=$;return ne(Wn,{pl:"2rem",gap:1,direction:"column",children:[w(Wo,{size:"md",children:`${F+1}: Upscale (ESRGAN)`}),w(or,{label:"Scale",value:q,onClick:()=>n(QC(q))}),w(or,{label:"Strength",value:j,onClick:()=>n(JC(j))})]},F)}else if($.type==="gfpgan"){const{strength:q}=$;return ne(Wn,{pl:"2rem",gap:1,direction:"column",children:[w(Wo,{size:"md",children:`${F+1}: Face restoration (GFPGAN)`}),w(or,{label:"Strength",value:q,onClick:()=>{n(P5(q)),n(T5("gfpgan"))}})]},F)}else if($.type==="codeformer"){const{strength:q,fidelity:j}=$;return ne(Wn,{pl:"2rem",gap:1,direction:"column",children:[w(Wo,{size:"md",children:`${F+1}: Face restoration (Codeformer)`}),w(or,{label:"Strength",value:q,onClick:()=>{n(P5(q)),n(T5("codeformer"))}}),j&&w(or,{label:"Fidelity",value:j,onClick:()=>{n(fW(j)),n(T5("codeformer"))}})]},F)}})]}),ne(Wn,{gap:2,direction:"column",children:[ne(Wn,{gap:2,children:[w(li,{label:"Copy metadata JSON",children:w(no,{"aria-label":"Copy metadata JSON",icon:w(dB,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(z)})}),w(Wo,{fontWeight:"semibold",children:"Metadata JSON:"})]}),w("div",{className:"image-json-viewer",children:w("pre",{children:z})})]})]}):w(iz,{width:"100%",pt:10,children:w(Wo,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},c4e),f4e=Jt([e=>e.gallery,e=>e.options],(e,t)=>{const{currentCategory:n}=e,{shouldShowImageDetails:r}=t,i=e.categories[n].images,o=i.findIndex(s=>s.uuid===e?.currentImage?.uuid),a=i.length;return{currentCategory:n,isOnFirstImage:o===0,isOnLastImage:!isNaN(o)&&o===a-1,shouldShowImageDetails:r}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}});function h4e(e){const{imageToDisplay:t}=e,n=gt(),{isOnFirstImage:r,isOnLastImage:i,shouldShowImageDetails:o}=Ze(f4e),[a,s]=C.exports.useState(!1),l=()=>{s(!0)},d=()=>{s(!1)},p=()=>{n(RB())},g=()=>{n(IB())};return ne("div",{className:"current-image-preview",children:[w(J4,{src:t.url,width:t.width,height:t.height}),!o&&ne("div",{className:"current-image-next-prev-buttons",children:[w("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:l,onMouseOut:d,children:a&&!r&&w(no,{"aria-label":"Previous image",icon:w(Y5e,{className:"next-prev-button"}),variant:"unstyled",onClick:p})}),w("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:l,onMouseOut:d,children:a&&!i&&w(no,{"aria-label":"Next image",icon:w(Z5e,{className:"next-prev-button"}),variant:"unstyled",onClick:g})})]}),o&&w(d4e,{image:t,styleClass:"current-image-metadata"})]})}const p4e=Jt([e=>e.gallery,e=>e.options,ds],(e,t,n)=>{const{currentImage:r,intermediateImage:i}=e,{shouldShowImageDetails:o}=t;return{currentImage:r,intermediateImage:i,activeTabName:n,shouldShowImageDetails:o}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),w7=()=>{const{currentImage:e,intermediateImage:t,activeTabName:n}=Ze(p4e),r=t||e;return w("div",{className:"current-image-area","data-tab-name":n,children:r?ne(Un,{children:[w(J3e,{image:r}),w(h4e,{imageToDisplay:r})]}):w("div",{className:"current-image-display-placeholder",children:w(B5e,{})})})};function g4e(){const{initialImage:e}=Ze(o=>o.options),t=gt(),n=Id(),r=o=>{o.stopPropagation(),t(t9())},i=()=>{n({title:"Problem loading parameters",description:"Unable to load init image.",status:"error",isClosable:!0}),t(t9())};return ne(Un,{children:[ne("div",{className:"init-image-preview-header",children:[w("h2",{children:"Initial Image"}),w(no,{isDisabled:!e,"aria-label":"Reset Initial Image",onClick:r,icon:w(z5e,{})})]}),e&&w("div",{className:"init-image-preview",children:w(J4,{fit:"contain",maxWidth:"100%",maxHeight:"100%",src:typeof e=="string"?e:e.url,onError:i})})]})}const m4e=()=>{const e=Ze(r=>r.options.initialImage),{currentImage:t}=Ze(r=>r.gallery);return ne("div",{className:"workarea-split-view",children:[w("div",{className:"workarea-split-view-left",children:e?w("div",{className:"image-to-image-area",children:w(g4e,{})}):w(PB,{})}),t&&w("div",{className:"workarea-split-view-right",children:w(w7,{})})]})};var v4e=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(r[o]=i[o])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),Yr=globalThis&&globalThis.__assign||function(){return Yr=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof i>"u"?void 0:Number(i),minWidth:typeof o>"u"?void 0:Number(o),minHeight:typeof a>"u"?void 0:Number(a)}},_4e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],DA="__resizable_base__",NB=function(e){x4e(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var i=r.parentNode;if(!i)return null;var o=r.window.document.createElement("div");return o.style.width="100%",o.style.height="100%",o.style.position="absolute",o.style.transform="scale(0, 0)",o.style.left="0",o.style.flex="0 0 100%",o.classList?o.classList.add(DA):o.className+=DA,i.appendChild(o),o},r.removeBase=function(i){var o=r.parentNode;!o||o.removeChild(i)},r.ref=function(i){i&&(r.resizable=i)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||S4e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var i=this.resizable.offsetWidth,o=this.resizable.offsetHeight,a=this.resizable.style.position;a!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:i,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:o,this.resizable.style.position=a}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,i=function(s){if(typeof n.state[s]>"u"||n.state[s]==="auto")return"auto";if(n.propsSize&&n.propsSize[s]&&n.propsSize[s].toString().endsWith("%")){if(n.state[s].toString().endsWith("%"))return n.state[s].toString();var l=n.getParentSize(),d=Number(n.state[s].toString().replace("px","")),p=d/l[s]*100;return p+"%"}return jS(n.state[s])},o=r&&typeof r.width<"u"&&!this.state.isResizing?jS(r.width):i("width"),a=r&&typeof r.height<"u"&&!this.state.isResizing?jS(r.height):i("height");return{width:o,height:a}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,i=this.parentNode.style.flexWrap;i!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var o={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=i),this.removeBase(n),o},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var i=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof i>"u"||i==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var i=this.props.boundsByDirection,o=this.state.direction,a=i&&Lp("left",o),s=i&&Lp("top",o),l,d;if(this.props.bounds==="parent"){var p=this.parentNode;p&&(l=a?this.resizableRight-this.parentLeft:p.offsetWidth+(this.parentLeft-this.resizableLeft),d=s?this.resizableBottom-this.parentTop:p.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(l=a?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=s?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(l=a?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=s?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return l&&Number.isFinite(l)&&(n=n&&n"u"?10:o.width,g=typeof i.width>"u"||i.width<0?n:i.width,m=typeof o.height>"u"?10:o.height,y=typeof i.height>"u"||i.height<0?r:i.height,b=l||0,S=d||0;if(s){var E=(m-b)*this.ratio+S,P=(y-b)*this.ratio+S,k=(p-S)/this.ratio+b,L=(g-S)/this.ratio+b,R=Math.max(p,E),N=Math.min(g,P),z=Math.max(m,k),$=Math.min(y,L);n=wy(n,R,N),r=wy(r,z,$)}else n=wy(n,p,g),r=wy(r,m,y);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var i=this.props.bounds.getBoundingClientRect();this.targetLeft=i.left,this.targetTop=i.top}if(this.resizable){var o=this.resizable.getBoundingClientRect(),a=o.left,s=o.top,l=o.right,d=o.bottom;this.resizableLeft=a,this.resizableRight=l,this.resizableTop=s,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var i=0,o=0;if(n.nativeEvent&&w4e(n.nativeEvent)?(i=n.nativeEvent.clientX,o=n.nativeEvent.clientY):n.nativeEvent&&Cy(n.nativeEvent)&&(i=n.nativeEvent.touches[0].clientX,o=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var a=this.props.onResizeStart(n,r,this.resizable);if(a===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var s,l=this.window.getComputedStyle(this.resizable);if(l.flexBasis!=="auto"){var d=this.parentNode;if(d){var p=this.window.getComputedStyle(d).flexDirection;this.flexDir=p.startsWith("row")?"row":"column",s=l.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var g={original:{x:i,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Cl(Cl({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:s};this.setState(g)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&Cy(n))try{n.preventDefault(),n.stopPropagation()}catch{}var i=this.props,o=i.maxWidth,a=i.maxHeight,s=i.minWidth,l=i.minHeight,d=Cy(n)?n.touches[0].clientX:n.clientX,p=Cy(n)?n.touches[0].clientY:n.clientY,g=this.state,m=g.direction,y=g.original,b=g.width,S=g.height,E=this.getParentSize(),P=C4e(E,this.window.innerWidth,this.window.innerHeight,o,a,s,l);o=P.maxWidth,a=P.maxHeight,s=P.minWidth,l=P.minHeight;var k=this.calculateNewSizeFromDirection(d,p),L=k.newHeight,R=k.newWidth,N=this.calculateNewMaxFromBoundary(o,a);this.props.snap&&this.props.snap.x&&(R=NA(R,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(L=NA(L,this.props.snap.y,this.props.snapGap));var z=this.calculateNewSizeFromAspectRatio(R,L,{width:N.maxWidth,height:N.maxHeight},{width:s,height:l});if(R=z.newWidth,L=z.newHeight,this.props.grid){var $=OA(R,this.props.grid[0]),F=OA(L,this.props.grid[1]),q=this.props.snapGap||0;R=q===0||Math.abs($-R)<=q?$:R,L=q===0||Math.abs(F-L)<=q?F:L}var j={width:R-y.width,height:L-y.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var Y=R/E.width*100;R=Y+"%"}else if(b.endsWith("vw")){var ve=R/this.window.innerWidth*100;R=ve+"vw"}else if(b.endsWith("vh")){var ge=R/this.window.innerHeight*100;R=ge+"vh"}}if(S&&typeof S=="string"){if(S.endsWith("%")){var Y=L/E.height*100;L=Y+"%"}else if(S.endsWith("vw")){var ve=L/this.window.innerWidth*100;L=ve+"vw"}else if(S.endsWith("vh")){var ge=L/this.window.innerHeight*100;L=ge+"vh"}}var Se={width:this.createSizeForCssProperty(R,"width"),height:this.createSizeForCssProperty(L,"height")};this.flexDir==="row"?Se.flexBasis=Se.width:this.flexDir==="column"&&(Se.flexBasis=Se.height),jl.exports.flushSync(function(){r.setState(Se)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,j)}},t.prototype.onMouseUp=function(n){var r=this.state,i=r.isResizing,o=r.direction,a=r.original;if(!(!i||!this.resizable)){var s={width:this.size.width-a.width,height:this.size.height-a.height};this.props.onResizeStop&&this.props.onResizeStop(n,o,this.resizable,s),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Cl(Cl({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,i=r.enable,o=r.handleStyles,a=r.handleClasses,s=r.handleWrapperStyle,l=r.handleWrapperClass,d=r.handleComponent;if(!i)return null;var p=Object.keys(i).map(function(g){return i[g]!==!1?w(b4e,{direction:g,onResizeStart:n.onResizeStart,replaceStyles:o&&o[g],className:a&&a[g],children:d&&d[g]?d[g]:null},g):null});return w("div",{className:l,style:s,children:p})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(a,s){return _4e.indexOf(s)!==-1||(a[s]=n.props[s]),a},{}),i=Cl(Cl(Cl({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(i.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return ne(o,{...Cl({ref:this.ref,style:i,className:this.props.className},r),children:[this.state.isResizing&&w("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function Xn(e,t,{checkForDefaultPrevented:n=!0}={}){return function(i){if(e?.(i),n===!1||!i.defaultPrevented)return t?.(i)}}function $v(e,t=[]){let n=[];function r(o,a){const s=C.exports.createContext(a),l=n.length;n=[...n,a];function d(g){const{scope:m,children:y,...b}=g,S=m?.[e][l]||s,E=C.exports.useMemo(()=>b,Object.values(b));return C.exports.createElement(S.Provider,{value:E},y)}function p(g,m){const y=m?.[e][l]||s,b=C.exports.useContext(y);if(b)return b;if(a!==void 0)return a;throw new Error(`\`${g}\` must be used within \`${o}\``)}return d.displayName=o+"Provider",[d,p]}const i=()=>{const o=n.map(a=>C.exports.createContext(a));return function(s){const l=s?.[e]||o;return C.exports.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return i.scopeName=e,[r,k4e(i,...t)]}function k4e(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(i=>({useScope:i(),scopeName:i.scopeName}));return function(o){const a=r.reduce((s,{useScope:l,scopeName:d})=>{const g=l(o)[`__scope${d}`];return{...s,...g}},{});return C.exports.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])}};return n.scopeName=t.scopeName,n}function E4e(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function DB(...e){return t=>e.forEach(n=>E4e(n,t))}function ss(...e){return C.exports.useCallback(DB(...e),e)}const lv=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e,i=C.exports.Children.toArray(n),o=i.find(T4e);if(o){const a=o.props.children,s=i.map(l=>l===o?C.exports.Children.count(a)>1?C.exports.Children.only(null):C.exports.isValidElement(a)?a.props.children:null:l);return C.exports.createElement(PC,Rn({},r,{ref:t}),C.exports.isValidElement(a)?C.exports.cloneElement(a,void 0,s):null)}return C.exports.createElement(PC,Rn({},r,{ref:t}),n)});lv.displayName="Slot";const PC=C.exports.forwardRef((e,t)=>{const{children:n,...r}=e;return C.exports.isValidElement(n)?C.exports.cloneElement(n,{...L4e(r,n.props),ref:DB(t,n.ref)}):C.exports.Children.count(n)>1?C.exports.Children.only(null):null});PC.displayName="SlotClone";const P4e=({children:e})=>C.exports.createElement(C.exports.Fragment,null,e);function T4e(e){return C.exports.isValidElement(e)&&e.type===P4e}function L4e(e,t){const n={...t};for(const r in t){const i=e[r],o=t[r];/^on[A-Z]/.test(r)?i&&o?n[r]=(...s)=>{o(...s),i(...s)}:i&&(n[r]=i):r==="style"?n[r]={...i,...o}:r==="className"&&(n[r]=[i,o].filter(Boolean).join(" "))}return{...e,...n}}const A4e=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"],Gu=A4e.reduce((e,t)=>{const n=C.exports.forwardRef((r,i)=>{const{asChild:o,...a}=r,s=o?lv:t;return C.exports.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),C.exports.createElement(s,Rn({},a,{ref:i}))});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function zB(e,t){e&&jl.exports.flushSync(()=>e.dispatchEvent(t))}function $B(e){const t=e+"CollectionProvider",[n,r]=$v(t),[i,o]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=y=>{const{scope:b,children:S}=y,E=re.useRef(null),P=re.useRef(new Map).current;return re.createElement(i,{scope:b,itemMap:P,collectionRef:E},S)},s=e+"CollectionSlot",l=re.forwardRef((y,b)=>{const{scope:S,children:E}=y,P=o(s,S),k=ss(b,P.collectionRef);return re.createElement(lv,{ref:k},E)}),d=e+"CollectionItemSlot",p="data-radix-collection-item",g=re.forwardRef((y,b)=>{const{scope:S,children:E,...P}=y,k=re.useRef(null),L=ss(b,k),R=o(d,S);return re.useEffect(()=>(R.itemMap.set(k,{ref:k,...P}),()=>void R.itemMap.delete(k))),re.createElement(lv,{[p]:"",ref:L},E)});function m(y){const b=o(e+"CollectionConsumer",y);return re.useCallback(()=>{const E=b.collectionRef.current;if(!E)return[];const P=Array.from(E.querySelectorAll(`[${p}]`));return Array.from(b.itemMap.values()).sort((R,N)=>P.indexOf(R.ref.current)-P.indexOf(N.ref.current))},[b.collectionRef,b.itemMap])}return[{Provider:a,Slot:l,ItemSlot:g},m,r]}const I4e=C.exports.createContext(void 0);function FB(e){const t=C.exports.useContext(I4e);return e||t||"ltr"}function Vl(e){const t=C.exports.useRef(e);return C.exports.useEffect(()=>{t.current=e}),C.exports.useMemo(()=>(...n)=>{var r;return(r=t.current)===null||r===void 0?void 0:r.call(t,...n)},[])}function R4e(e,t=globalThis?.document){const n=Vl(e);C.exports.useEffect(()=>{const r=i=>{i.key==="Escape"&&n(i)};return t.addEventListener("keydown",r),()=>t.removeEventListener("keydown",r)},[n,t])}const TC="dismissableLayer.update",M4e="dismissableLayer.pointerDownOutside",O4e="dismissableLayer.focusOutside";let zA;const N4e=C.exports.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),D4e=C.exports.forwardRef((e,t)=>{var n;const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:a,onInteractOutside:s,onDismiss:l,...d}=e,p=C.exports.useContext(N4e),[g,m]=C.exports.useState(null),y=(n=g?.ownerDocument)!==null&&n!==void 0?n:globalThis?.document,[,b]=C.exports.useState({}),S=ss(t,F=>m(F)),E=Array.from(p.layers),[P]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),k=E.indexOf(P),L=g?E.indexOf(g):-1,R=p.layersWithOutsidePointerEventsDisabled.size>0,N=L>=k,z=z4e(F=>{const q=F.target,j=[...p.branches].some(Y=>Y.contains(q));!N||j||(o?.(F),s?.(F),F.defaultPrevented||l?.())},y),$=$4e(F=>{const q=F.target;[...p.branches].some(Y=>Y.contains(q))||(a?.(F),s?.(F),F.defaultPrevented||l?.())},y);return R4e(F=>{L===p.layers.size-1&&(i?.(F),!F.defaultPrevented&&l&&(F.preventDefault(),l()))},y),C.exports.useEffect(()=>{if(!!g)return r&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(zA=y.body.style.pointerEvents,y.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(g)),p.layers.add(g),$A(),()=>{r&&p.layersWithOutsidePointerEventsDisabled.size===1&&(y.body.style.pointerEvents=zA)}},[g,y,r,p]),C.exports.useEffect(()=>()=>{!g||(p.layers.delete(g),p.layersWithOutsidePointerEventsDisabled.delete(g),$A())},[g,p]),C.exports.useEffect(()=>{const F=()=>b({});return document.addEventListener(TC,F),()=>document.removeEventListener(TC,F)},[]),C.exports.createElement(Gu.div,Rn({},d,{ref:S,style:{pointerEvents:R?N?"auto":"none":void 0,...e.style},onFocusCapture:Xn(e.onFocusCapture,$.onFocusCapture),onBlurCapture:Xn(e.onBlurCapture,$.onBlurCapture),onPointerDownCapture:Xn(e.onPointerDownCapture,z.onPointerDownCapture)}))});function z4e(e,t=globalThis?.document){const n=Vl(e),r=C.exports.useRef(!1),i=C.exports.useRef(()=>{});return C.exports.useEffect(()=>{const o=s=>{if(s.target&&!r.current){let d=function(){BB(M4e,n,l,{discrete:!0})};const l={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",i.current),i.current=d,t.addEventListener("click",i.current,{once:!0})):d()}r.current=!1},a=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(a),t.removeEventListener("pointerdown",o),t.removeEventListener("click",i.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function $4e(e,t=globalThis?.document){const n=Vl(e),r=C.exports.useRef(!1);return C.exports.useEffect(()=>{const i=o=>{o.target&&!r.current&&BB(O4e,n,{originalEvent:o},{discrete:!1})};return t.addEventListener("focusin",i),()=>t.removeEventListener("focusin",i)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function $A(){const e=new CustomEvent(TC);document.dispatchEvent(e)}function BB(e,t,n,{discrete:r}){const i=n.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&i.addEventListener(e,t,{once:!0}),r?zB(i,o):i.dispatchEvent(o)}let qS=0;function F4e(){C.exports.useEffect(()=>{var e,t;const n=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",(e=n[0])!==null&&e!==void 0?e:FA()),document.body.insertAdjacentElement("beforeend",(t=n[1])!==null&&t!==void 0?t:FA()),qS++,()=>{qS===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(r=>r.remove()),qS--}},[])}function FA(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}const KS="focusScope.autoFocusOnMount",YS="focusScope.autoFocusOnUnmount",BA={bubbles:!1,cancelable:!0},B4e=C.exports.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:i,onUnmountAutoFocus:o,...a}=e,[s,l]=C.exports.useState(null),d=Vl(i),p=Vl(o),g=C.exports.useRef(null),m=ss(t,S=>l(S)),y=C.exports.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;C.exports.useEffect(()=>{if(r){let S=function(P){if(y.paused||!s)return;const k=P.target;s.contains(k)?g.current=k:Hf(g.current,{select:!0})},E=function(P){y.paused||!s||s.contains(P.relatedTarget)||Hf(g.current,{select:!0})};return document.addEventListener("focusin",S),document.addEventListener("focusout",E),()=>{document.removeEventListener("focusin",S),document.removeEventListener("focusout",E)}}},[r,s,y.paused]),C.exports.useEffect(()=>{if(s){WA.add(y);const S=document.activeElement;if(!s.contains(S)){const P=new CustomEvent(KS,BA);s.addEventListener(KS,d),s.dispatchEvent(P),P.defaultPrevented||(H4e(j4e(HB(s)),{select:!0}),document.activeElement===S&&Hf(s))}return()=>{s.removeEventListener(KS,d),setTimeout(()=>{const P=new CustomEvent(YS,BA);s.addEventListener(YS,p),s.dispatchEvent(P),P.defaultPrevented||Hf(S??document.body,{select:!0}),s.removeEventListener(YS,p),WA.remove(y)},0)}}},[s,d,p,y]);const b=C.exports.useCallback(S=>{if(!n&&!r||y.paused)return;const E=S.key==="Tab"&&!S.altKey&&!S.ctrlKey&&!S.metaKey,P=document.activeElement;if(E&&P){const k=S.currentTarget,[L,R]=W4e(k);L&&R?!S.shiftKey&&P===R?(S.preventDefault(),n&&Hf(L,{select:!0})):S.shiftKey&&P===L&&(S.preventDefault(),n&&Hf(R,{select:!0})):P===k&&S.preventDefault()}},[n,r,y.paused]);return C.exports.createElement(Gu.div,Rn({tabIndex:-1},a,{ref:m,onKeyDown:b}))});function H4e(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(Hf(r,{select:t}),document.activeElement!==n)return}function W4e(e){const t=HB(e),n=HA(t,e),r=HA(t.reverse(),e);return[n,r]}function HB(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const i=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||i?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function HA(e,t){for(const n of e)if(!V4e(n,{upTo:t}))return n}function V4e(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function U4e(e){return e instanceof HTMLInputElement&&"select"in e}function Hf(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&U4e(e)&&t&&e.select()}}const WA=G4e();function G4e(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=VA(e,t),e.unshift(t)},remove(t){var n;e=VA(e,t),(n=e[0])===null||n===void 0||n.resume()}}}function VA(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function j4e(e){return e.filter(t=>t.tagName!=="A")}const B0=Boolean(globalThis?.document)?C.exports.useLayoutEffect:()=>{},q4e=cw["useId".toString()]||(()=>{});let K4e=0;function Y4e(e){const[t,n]=C.exports.useState(q4e());return B0(()=>{e||n(r=>r??String(K4e++))},[e]),e||(t?`radix-${t}`:"")}function o1(e){return e.split("-")[0]}function Ob(e){return e.split("-")[1]}function a1(e){return["top","bottom"].includes(o1(e))?"x":"y"}function C7(e){return e==="y"?"height":"width"}function UA(e,t,n){let{reference:r,floating:i}=e;const o=r.x+r.width/2-i.width/2,a=r.y+r.height/2-i.height/2,s=a1(t),l=C7(s),d=r[l]/2-i[l]/2,p=o1(t),g=s==="x";let m;switch(p){case"top":m={x:o,y:r.y-i.height};break;case"bottom":m={x:o,y:r.y+r.height};break;case"right":m={x:r.x+r.width,y:a};break;case"left":m={x:r.x-i.width,y:a};break;default:m={x:r.x,y:r.y}}switch(Ob(t)){case"start":m[s]-=d*(n&&g?-1:1);break;case"end":m[s]+=d*(n&&g?-1:1);break}return m}const Z4e=async(e,t,n)=>{const{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:a}=n,s=await(a.isRTL==null?void 0:a.isRTL(t));let l=await a.getElementRects({reference:e,floating:t,strategy:i}),{x:d,y:p}=UA(l,r,s),g=r,m={},y=0;for(let b=0;b({name:"arrow",options:e,async fn(t){const{element:n,padding:r=0}=e??{},{x:i,y:o,placement:a,rects:s,platform:l}=t;if(n==null)return{};const d=WB(r),p={x:i,y:o},g=a1(a),m=Ob(a),y=C7(g),b=await l.getDimensions(n),S=g==="y"?"top":"left",E=g==="y"?"bottom":"right",P=s.reference[y]+s.reference[g]-p[g]-s.floating[y],k=p[g]-s.reference[g],L=await(l.getOffsetParent==null?void 0:l.getOffsetParent(n));let R=L?g==="y"?L.clientHeight||0:L.clientWidth||0:0;R===0&&(R=s.floating[y]);const N=P/2-k/2,z=d[S],$=R-b[y]-d[E],F=R/2-b[y]/2+N,q=LC(z,F,$),ve=(m==="start"?d[S]:d[E])>0&&F!==q&&s.reference[y]<=s.floating[y]?Febe[t])}function tbe(e,t,n){n===void 0&&(n=!1);const r=Ob(e),i=a1(e),o=C7(i);let a=i==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(a=G3(a)),{main:a,cross:G3(a)}}const nbe={start:"end",end:"start"};function jA(e){return e.replace(/start|end/g,t=>nbe[t])}const rbe=["top","right","bottom","left"];function ibe(e){const t=G3(e);return[jA(e),t,jA(t)]}const obe=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:r,middlewareData:i,rects:o,initialPlacement:a,platform:s,elements:l}=t,{mainAxis:d=!0,crossAxis:p=!0,fallbackPlacements:g,fallbackStrategy:m="bestFit",flipAlignment:y=!0,...b}=e,S=o1(r),P=g||(S===a||!y?[G3(a)]:ibe(a)),k=[a,...P],L=await U3(t,b),R=[];let N=((n=i.flip)==null?void 0:n.overflows)||[];if(d&&R.push(L[S]),p){const{main:q,cross:j}=tbe(r,o,await(s.isRTL==null?void 0:s.isRTL(l.floating)));R.push(L[q],L[j])}if(N=[...N,{placement:r,overflows:R}],!R.every(q=>q<=0)){var z,$;const q=((z=($=i.flip)==null?void 0:$.index)!=null?z:0)+1,j=k[q];if(j)return{data:{index:q,overflows:N},reset:{placement:j}};let Y="bottom";switch(m){case"bestFit":{var F;const ve=(F=N.map(ge=>[ge,ge.overflows.filter(Se=>Se>0).reduce((Se,_e)=>Se+_e,0)]).sort((ge,Se)=>ge[1]-Se[1])[0])==null?void 0:F[0].placement;ve&&(Y=ve);break}case"initialPlacement":Y=a;break}if(r!==Y)return{reset:{placement:Y}}}return{}}}};function qA(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function KA(e){return rbe.some(t=>e[t]>=0)}const abe=function(e){let{strategy:t="referenceHidden",...n}=e===void 0?{}:e;return{name:"hide",async fn(r){const{rects:i}=r;switch(t){case"referenceHidden":{const o=await U3(r,{...n,elementContext:"reference"}),a=qA(o,i.reference);return{data:{referenceHiddenOffsets:a,referenceHidden:KA(a)}}}case"escaped":{const o=await U3(r,{...n,altBoundary:!0}),a=qA(o,i.floating);return{data:{escapedOffsets:a,escaped:KA(a)}}}default:return{}}}}};async function sbe(e,t){const{placement:n,platform:r,elements:i}=e,o=await(r.isRTL==null?void 0:r.isRTL(i.floating)),a=o1(n),s=Ob(n),l=a1(n)==="x",d=["left","top"].includes(a)?-1:1,p=o&&l?-1:1,g=typeof t=="function"?t(e):t;let{mainAxis:m,crossAxis:y,alignmentAxis:b}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...g};return s&&typeof b=="number"&&(y=s==="end"?b*-1:b),l?{x:y*p,y:m*d}:{x:m*d,y:y*p}}const lbe=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:r}=t,i=await sbe(t,e);return{x:n+i.x,y:r+i.y,data:i}}}};function VB(e){return e==="x"?"y":"x"}const ube=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:s={fn:E=>{let{x:P,y:k}=E;return{x:P,y:k}}},...l}=e,d={x:n,y:r},p=await U3(t,l),g=a1(o1(i)),m=VB(g);let y=d[g],b=d[m];if(o){const E=g==="y"?"top":"left",P=g==="y"?"bottom":"right",k=y+p[E],L=y-p[P];y=LC(k,y,L)}if(a){const E=m==="y"?"top":"left",P=m==="y"?"bottom":"right",k=b+p[E],L=b-p[P];b=LC(k,b,L)}const S=s.fn({...t,[g]:y,[m]:b});return{...S,data:{x:S.x-n,y:S.y-r}}}}},cbe=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:i,rects:o,middlewareData:a}=t,{offset:s=0,mainAxis:l=!0,crossAxis:d=!0}=e,p={x:n,y:r},g=a1(i),m=VB(g);let y=p[g],b=p[m];const S=typeof s=="function"?s({...o,placement:i}):s,E=typeof S=="number"?{mainAxis:S,crossAxis:0}:{mainAxis:0,crossAxis:0,...S};if(l){const N=g==="y"?"height":"width",z=o.reference[g]-o.floating[N]+E.mainAxis,$=o.reference[g]+o.reference[N]-E.mainAxis;y$&&(y=$)}if(d){var P,k,L,R;const N=g==="y"?"width":"height",z=["top","left"].includes(o1(i)),$=o.reference[m]-o.floating[N]+(z&&(P=(k=a.offset)==null?void 0:k[m])!=null?P:0)+(z?0:E.crossAxis),F=o.reference[m]+o.reference[N]+(z?0:(L=(R=a.offset)==null?void 0:R[m])!=null?L:0)-(z?E.crossAxis:0);b<$?b=$:b>F&&(b=F)}return{[g]:y,[m]:b}}}};function UB(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function Qu(e){if(e==null)return window;if(!UB(e)){const t=e.ownerDocument;return t&&t.defaultView||window}return e}function Fv(e){return Qu(e).getComputedStyle(e)}function ju(e){return UB(e)?"":e?(e.nodeName||"").toLowerCase():""}function GB(){const e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(t=>t.brand+"/"+t.version).join(" "):navigator.userAgent}function Ul(e){return e instanceof Qu(e).HTMLElement}function _d(e){return e instanceof Qu(e).Element}function dbe(e){return e instanceof Qu(e).Node}function _7(e){if(typeof ShadowRoot>"u")return!1;const t=Qu(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Nb(e){const{overflow:t,overflowX:n,overflowY:r}=Fv(e);return/auto|scroll|overlay|hidden/.test(t+r+n)}function fbe(e){return["table","td","th"].includes(ju(e))}function jB(e){const t=/firefox/i.test(GB()),n=Fv(e);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||t&&n.willChange==="filter"||t&&(n.filter?n.filter!=="none":!1)}function qB(){return!/^((?!chrome|android).)*safari/i.test(GB())}const YA=Math.min,fm=Math.max,j3=Math.round;function qu(e,t,n){var r,i,o,a;t===void 0&&(t=!1),n===void 0&&(n=!1);const s=e.getBoundingClientRect();let l=1,d=1;t&&Ul(e)&&(l=e.offsetWidth>0&&j3(s.width)/e.offsetWidth||1,d=e.offsetHeight>0&&j3(s.height)/e.offsetHeight||1);const p=_d(e)?Qu(e):window,g=!qB()&&n,m=(s.left+(g&&(r=(i=p.visualViewport)==null?void 0:i.offsetLeft)!=null?r:0))/l,y=(s.top+(g&&(o=(a=p.visualViewport)==null?void 0:a.offsetTop)!=null?o:0))/d,b=s.width/l,S=s.height/d;return{width:b,height:S,top:y,right:m+b,bottom:y+S,left:m,x:m,y}}function Rd(e){return((dbe(e)?e.ownerDocument:e.document)||window.document).documentElement}function Db(e){return _d(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function KB(e){return qu(Rd(e)).left+Db(e).scrollLeft}function hbe(e){const t=qu(e);return j3(t.width)!==e.offsetWidth||j3(t.height)!==e.offsetHeight}function pbe(e,t,n){const r=Ul(t),i=Rd(t),o=qu(e,r&&hbe(t),n==="fixed");let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if(r||!r&&n!=="fixed")if((ju(t)!=="body"||Nb(i))&&(a=Db(t)),Ul(t)){const l=qu(t,!0);s.x=l.x+t.clientLeft,s.y=l.y+t.clientTop}else i&&(s.x=KB(i));return{x:o.left+a.scrollLeft-s.x,y:o.top+a.scrollTop-s.y,width:o.width,height:o.height}}function YB(e){return ju(e)==="html"?e:e.assignedSlot||e.parentNode||(_7(e)?e.host:null)||Rd(e)}function ZA(e){return!Ul(e)||getComputedStyle(e).position==="fixed"?null:e.offsetParent}function gbe(e){let t=YB(e);for(_7(t)&&(t=t.host);Ul(t)&&!["html","body"].includes(ju(t));){if(jB(t))return t;t=t.parentNode}return null}function AC(e){const t=Qu(e);let n=ZA(e);for(;n&&fbe(n)&&getComputedStyle(n).position==="static";)n=ZA(n);return n&&(ju(n)==="html"||ju(n)==="body"&&getComputedStyle(n).position==="static"&&!jB(n))?t:n||gbe(e)||t}function XA(e){if(Ul(e))return{width:e.offsetWidth,height:e.offsetHeight};const t=qu(e);return{width:t.width,height:t.height}}function mbe(e){let{rect:t,offsetParent:n,strategy:r}=e;const i=Ul(n),o=Rd(n);if(n===o)return t;let a={scrollLeft:0,scrollTop:0};const s={x:0,y:0};if((i||!i&&r!=="fixed")&&((ju(n)!=="body"||Nb(o))&&(a=Db(n)),Ul(n))){const l=qu(n,!0);s.x=l.x+n.clientLeft,s.y=l.y+n.clientTop}return{...t,x:t.x-a.scrollLeft+s.x,y:t.y-a.scrollTop+s.y}}function vbe(e,t){const n=Qu(e),r=Rd(e),i=n.visualViewport;let o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;const d=qB();(d||!d&&t==="fixed")&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s,y:l}}function ybe(e){var t;const n=Rd(e),r=Db(e),i=(t=e.ownerDocument)==null?void 0:t.body,o=fm(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=fm(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0);let s=-r.scrollLeft+KB(e);const l=-r.scrollTop;return Fv(i||n).direction==="rtl"&&(s+=fm(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}function ZB(e){const t=YB(e);return["html","body","#document"].includes(ju(t))?e.ownerDocument.body:Ul(t)&&Nb(t)?t:ZB(t)}function q3(e,t){var n;t===void 0&&(t=[]);const r=ZB(e),i=r===((n=e.ownerDocument)==null?void 0:n.body),o=Qu(r),a=i?[o].concat(o.visualViewport||[],Nb(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(q3(a))}function bbe(e,t){const n=t.getRootNode==null?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&_7(n)){let r=t;do{if(r&&e===r)return!0;r=r.parentNode||r.host}while(r)}return!1}function xbe(e,t){const n=qu(e,!1,t==="fixed"),r=n.top+e.clientTop,i=n.left+e.clientLeft;return{top:r,left:i,x:i,y:r,right:i+e.clientWidth,bottom:r+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}function QA(e,t,n){return t==="viewport"?V3(vbe(e,n)):_d(t)?xbe(t,n):V3(ybe(Rd(e)))}function Sbe(e){const t=q3(e),r=["absolute","fixed"].includes(Fv(e).position)&&Ul(e)?AC(e):e;return _d(r)?t.filter(i=>_d(i)&&bbe(i,r)&&ju(i)!=="body"):[]}function wbe(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e;const a=[...n==="clippingAncestors"?Sbe(t):[].concat(n),r],s=a[0],l=a.reduce((d,p)=>{const g=QA(t,p,i);return d.top=fm(g.top,d.top),d.right=YA(g.right,d.right),d.bottom=YA(g.bottom,d.bottom),d.left=fm(g.left,d.left),d},QA(t,s,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}const Cbe={getClippingRect:wbe,convertOffsetParentRelativeRectToViewportRelativeRect:mbe,isElement:_d,getDimensions:XA,getOffsetParent:AC,getDocumentElement:Rd,getElementRects:e=>{let{reference:t,floating:n,strategy:r}=e;return{reference:pbe(t,AC(n),r),floating:{...XA(n),x:0,y:0}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>Fv(e).direction==="rtl"};function _be(e,t,n,r){r===void 0&&(r={});const{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:a=!0,animationFrame:s=!1}=r,l=i&&!s,d=o&&!s,p=l||d?[..._d(e)?q3(e):[],...q3(t)]:[];p.forEach(S=>{l&&S.addEventListener("scroll",n,{passive:!0}),d&&S.addEventListener("resize",n)});let g=null;if(a){let S=!0;g=new ResizeObserver(()=>{S||n(),S=!1}),_d(e)&&!s&&g.observe(e),g.observe(t)}let m,y=s?qu(e):null;s&&b();function b(){const S=qu(e);y&&(S.x!==y.x||S.y!==y.y||S.width!==y.width||S.height!==y.height)&&n(),y=S,m=requestAnimationFrame(b)}return n(),()=>{var S;p.forEach(E=>{l&&E.removeEventListener("scroll",n),d&&E.removeEventListener("resize",n)}),(S=g)==null||S.disconnect(),g=null,s&&cancelAnimationFrame(m)}}const kbe=(e,t,n)=>Z4e(e,t,{platform:Cbe,...n});var IC=typeof document<"u"?C.exports.useLayoutEffect:C.exports.useEffect;function RC(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(!RC(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!Object.prototype.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){const o=i[r];if(!(o==="_owner"&&e.$$typeof)&&!RC(e[o],t[o]))return!1}return!0}return e!==e&&t!==t}function Ebe(e){const t=C.exports.useRef(e);return IC(()=>{t.current=e}),t}function Pbe(e){let{middleware:t,placement:n="bottom",strategy:r="absolute",whileElementsMounted:i}=e===void 0?{}:e;const o=C.exports.useRef(null),a=C.exports.useRef(null),s=Ebe(i),l=C.exports.useRef(null),[d,p]=C.exports.useState({x:null,y:null,strategy:r,placement:n,middlewareData:{}}),[g,m]=C.exports.useState(t);RC(g?.map(L=>{let{options:R}=L;return R}),t?.map(L=>{let{options:R}=L;return R}))||m(t);const y=C.exports.useCallback(()=>{!o.current||!a.current||kbe(o.current,a.current,{middleware:g,placement:n,strategy:r}).then(L=>{b.current&&jl.exports.flushSync(()=>{p(L)})})},[g,n,r]);IC(()=>{b.current&&y()},[y]);const b=C.exports.useRef(!1);IC(()=>(b.current=!0,()=>{b.current=!1}),[]);const S=C.exports.useCallback(()=>{if(typeof l.current=="function"&&(l.current(),l.current=null),o.current&&a.current)if(s.current){const L=s.current(o.current,a.current,y);l.current=L}else y()},[y,s]),E=C.exports.useCallback(L=>{o.current=L,S()},[S]),P=C.exports.useCallback(L=>{a.current=L,S()},[S]),k=C.exports.useMemo(()=>({reference:o,floating:a}),[]);return C.exports.useMemo(()=>({...d,update:y,refs:k,reference:E,floating:P}),[d,y,k,E,P])}const Tbe=e=>{const{element:t,padding:n}=e;function r(i){return Object.prototype.hasOwnProperty.call(i,"current")}return{name:"arrow",options:e,fn(i){return r(t)?t.current!=null?GA({element:t.current,padding:n}).fn(i):{}:t?GA({element:t,padding:n}).fn(i):{}}}};function Lbe(e){const[t,n]=C.exports.useState(void 0);return B0(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(i=>{if(!Array.isArray(i)||!i.length)return;const o=i[0];let a,s;if("borderBoxSize"in o){const l=o.borderBoxSize,d=Array.isArray(l)?l[0]:l;a=d.inlineSize,s=d.blockSize}else a=e.offsetWidth,s=e.offsetHeight;n({width:a,height:s})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}const XB="Popper",[k7,QB]=$v(XB),[Abe,JB]=k7(XB),Ibe=e=>{const{__scopePopper:t,children:n}=e,[r,i]=C.exports.useState(null);return C.exports.createElement(Abe,{scope:t,anchor:r,onAnchorChange:i},n)},Rbe="PopperAnchor",Mbe=C.exports.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...i}=e,o=JB(Rbe,n),a=C.exports.useRef(null),s=ss(t,a);return C.exports.useEffect(()=>{o.onAnchorChange(r?.current||a.current)}),r?null:C.exports.createElement(Gu.div,Rn({},i,{ref:s}))}),K3="PopperContent",[Obe,p7e]=k7(K3),[Nbe,Dbe]=k7(K3,{hasParent:!1,positionUpdateFns:new Set}),zbe=C.exports.forwardRef((e,t)=>{var n,r,i,o,a,s,l,d;const{__scopePopper:p,side:g="bottom",sideOffset:m=0,align:y="center",alignOffset:b=0,arrowPadding:S=0,collisionBoundary:E=[],collisionPadding:P=0,sticky:k="partial",hideWhenDetached:L=!1,avoidCollisions:R=!0,...N}=e,z=JB(K3,p),[$,F]=C.exports.useState(null),q=ss(t,yt=>F(yt)),[j,Y]=C.exports.useState(null),ve=Lbe(j),ge=(n=ve?.width)!==null&&n!==void 0?n:0,Se=(r=ve?.height)!==null&&r!==void 0?r:0,_e=g+(y!=="center"?"-"+y:""),we=typeof P=="number"?P:{top:0,right:0,bottom:0,left:0,...P},J=Array.isArray(E)?E:[E],G=J.length>0,te={padding:we,boundary:J.filter(Fbe),altBoundary:G},{reference:Q,floating:W,strategy:se,x:de,y:xe,placement:ze,middlewareData:Me,update:Ue}=Pbe({strategy:"fixed",placement:_e,whileElementsMounted:_be,middleware:[lbe({mainAxis:m+Se,alignmentAxis:b}),R?ube({mainAxis:!0,crossAxis:!1,limiter:k==="partial"?cbe():void 0,...te}):void 0,j?Tbe({element:j,padding:S}):void 0,R?obe({...te}):void 0,Bbe({arrowWidth:ge,arrowHeight:Se}),L?abe({strategy:"referenceHidden"}):void 0].filter($be)});B0(()=>{Q(z.anchor)},[Q,z.anchor]);const Ee=de!==null&&xe!==null,[Ve,ot]=eH(ze),pt=(i=Me.arrow)===null||i===void 0?void 0:i.x,Wt=(o=Me.arrow)===null||o===void 0?void 0:o.y,Dt=((a=Me.arrow)===null||a===void 0?void 0:a.centerOffset)!==0,[Oe,nt]=C.exports.useState();B0(()=>{$&&nt(window.getComputedStyle($).zIndex)},[$]);const{hasParent:mt,positionUpdateFns:st}=Dbe(K3,p),vt=!mt;C.exports.useLayoutEffect(()=>{if(!vt)return st.add(Ue),()=>{st.delete(Ue)}},[vt,st,Ue]),C.exports.useLayoutEffect(()=>{vt&&Ee&&Array.from(st).reverse().forEach(yt=>requestAnimationFrame(yt))},[vt,Ee,st]);const yn={"data-side":Ve,"data-align":ot,...N,ref:q,style:{...N.style,animation:Ee?void 0:"none",opacity:(s=Me.hide)!==null&&s!==void 0&&s.referenceHidden?0:void 0}};return C.exports.createElement("div",{ref:W,"data-radix-popper-content-wrapper":"",style:{position:se,left:0,top:0,transform:Ee?`translate3d(${Math.round(de)}px, ${Math.round(xe)}px, 0)`:"translate3d(0, -200%, 0)",minWidth:"max-content",zIndex:Oe,["--radix-popper-transform-origin"]:[(l=Me.transformOrigin)===null||l===void 0?void 0:l.x,(d=Me.transformOrigin)===null||d===void 0?void 0:d.y].join(" ")}},C.exports.createElement(Obe,{scope:p,placedSide:Ve,onArrowChange:Y,arrowX:pt,arrowY:Wt,shouldHideArrow:Dt},vt?C.exports.createElement(Nbe,{scope:p,hasParent:!0,positionUpdateFns:st},C.exports.createElement(Gu.div,yn)):C.exports.createElement(Gu.div,yn)))});function $be(e){return e!==void 0}function Fbe(e){return e!==null}const Bbe=e=>({name:"transformOrigin",options:e,fn(t){var n,r,i,o,a;const{placement:s,rects:l,middlewareData:d}=t,g=((n=d.arrow)===null||n===void 0?void 0:n.centerOffset)!==0,m=g?0:e.arrowWidth,y=g?0:e.arrowHeight,[b,S]=eH(s),E={start:"0%",center:"50%",end:"100%"}[S],P=((r=(i=d.arrow)===null||i===void 0?void 0:i.x)!==null&&r!==void 0?r:0)+m/2,k=((o=(a=d.arrow)===null||a===void 0?void 0:a.y)!==null&&o!==void 0?o:0)+y/2;let L="",R="";return b==="bottom"?(L=g?E:`${P}px`,R=`${-y}px`):b==="top"?(L=g?E:`${P}px`,R=`${l.floating.height+y}px`):b==="right"?(L=`${-y}px`,R=g?E:`${k}px`):b==="left"&&(L=`${l.floating.width+y}px`,R=g?E:`${k}px`),{data:{x:L,y:R}}}});function eH(e){const[t,n="center"]=e.split("-");return[t,n]}const Hbe=Ibe,Wbe=Mbe,Vbe=zbe;function Ube(e,t){return C.exports.useReducer((n,r)=>{const i=t[n][r];return i??n},e)}const tH=e=>{const{present:t,children:n}=e,r=Gbe(t),i=typeof n=="function"?n({present:r.isPresent}):C.exports.Children.only(n),o=ss(r.ref,i.ref);return typeof n=="function"||r.isPresent?C.exports.cloneElement(i,{ref:o}):null};tH.displayName="Presence";function Gbe(e){const[t,n]=C.exports.useState(),r=C.exports.useRef({}),i=C.exports.useRef(e),o=C.exports.useRef("none"),a=e?"mounted":"unmounted",[s,l]=Ube(a,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return C.exports.useEffect(()=>{const d=ky(r.current);o.current=s==="mounted"?d:"none"},[s]),B0(()=>{const d=r.current,p=i.current;if(p!==e){const m=o.current,y=ky(d);e?l("MOUNT"):y==="none"||d?.display==="none"?l("UNMOUNT"):l(p&&m!==y?"ANIMATION_OUT":"UNMOUNT"),i.current=e}},[e,l]),B0(()=>{if(t){const d=g=>{const y=ky(r.current).includes(g.animationName);g.target===t&&y&&jl.exports.flushSync(()=>l("ANIMATION_END"))},p=g=>{g.target===t&&(o.current=ky(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:C.exports.useCallback(d=>{d&&(r.current=getComputedStyle(d)),n(d)},[])}}function ky(e){return e?.animationName||"none"}function jbe({prop:e,defaultProp:t,onChange:n=()=>{}}){const[r,i]=qbe({defaultProp:t,onChange:n}),o=e!==void 0,a=o?e:r,s=Vl(n),l=C.exports.useCallback(d=>{if(o){const g=typeof d=="function"?d(e):d;g!==e&&s(g)}else i(d)},[o,e,i,s]);return[a,l]}function qbe({defaultProp:e,onChange:t}){const n=C.exports.useState(e),[r]=n,i=C.exports.useRef(r),o=Vl(t);return C.exports.useEffect(()=>{i.current!==r&&(o(r),i.current=r)},[r,i,o]),n}const ZS="rovingFocusGroup.onEntryFocus",Kbe={bubbles:!1,cancelable:!0},E7="RovingFocusGroup",[MC,nH,Ybe]=$B(E7),[Zbe,rH]=$v(E7,[Ybe]),[Xbe,Qbe]=Zbe(E7),Jbe=C.exports.forwardRef((e,t)=>C.exports.createElement(MC.Provider,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(MC.Slot,{scope:e.__scopeRovingFocusGroup},C.exports.createElement(exe,Rn({},e,{ref:t}))))),exe=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:i=!1,dir:o,currentTabStopId:a,defaultCurrentTabStopId:s,onCurrentTabStopIdChange:l,onEntryFocus:d,...p}=e,g=C.exports.useRef(null),m=ss(t,g),y=FB(o),[b=null,S]=jbe({prop:a,defaultProp:s,onChange:l}),[E,P]=C.exports.useState(!1),k=Vl(d),L=nH(n),R=C.exports.useRef(!1),[N,z]=C.exports.useState(0);return C.exports.useEffect(()=>{const $=g.current;if($)return $.addEventListener(ZS,k),()=>$.removeEventListener(ZS,k)},[k]),C.exports.createElement(Xbe,{scope:n,orientation:r,dir:y,loop:i,currentTabStopId:b,onItemFocus:C.exports.useCallback($=>S($),[S]),onItemShiftTab:C.exports.useCallback(()=>P(!0),[]),onFocusableItemAdd:C.exports.useCallback(()=>z($=>$+1),[]),onFocusableItemRemove:C.exports.useCallback(()=>z($=>$-1),[])},C.exports.createElement(Gu.div,Rn({tabIndex:E||N===0?-1:0,"data-orientation":r},p,{ref:m,style:{outline:"none",...e.style},onMouseDown:Xn(e.onMouseDown,()=>{R.current=!0}),onFocus:Xn(e.onFocus,$=>{const F=!R.current;if($.target===$.currentTarget&&F&&!E){const q=new CustomEvent(ZS,Kbe);if($.currentTarget.dispatchEvent(q),!q.defaultPrevented){const j=L().filter(_e=>_e.focusable),Y=j.find(_e=>_e.active),ve=j.find(_e=>_e.id===b),Se=[Y,ve,...j].filter(Boolean).map(_e=>_e.ref.current);iH(Se)}}R.current=!1}),onBlur:Xn(e.onBlur,()=>P(!1))})))}),txe="RovingFocusGroupItem",nxe=C.exports.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:i=!1,...o}=e,a=Y4e(),s=Qbe(txe,n),l=s.currentTabStopId===a,d=nH(n),{onFocusableItemAdd:p,onFocusableItemRemove:g}=s;return C.exports.useEffect(()=>{if(r)return p(),()=>g()},[r,p,g]),C.exports.createElement(MC.ItemSlot,{scope:n,id:a,focusable:r,active:i},C.exports.createElement(Gu.span,Rn({tabIndex:l?0:-1,"data-orientation":s.orientation},o,{ref:t,onMouseDown:Xn(e.onMouseDown,m=>{r?s.onItemFocus(a):m.preventDefault()}),onFocus:Xn(e.onFocus,()=>s.onItemFocus(a)),onKeyDown:Xn(e.onKeyDown,m=>{if(m.key==="Tab"&&m.shiftKey){s.onItemShiftTab();return}if(m.target!==m.currentTarget)return;const y=oxe(m,s.orientation,s.dir);if(y!==void 0){m.preventDefault();let S=d().filter(E=>E.focusable).map(E=>E.ref.current);if(y==="last")S.reverse();else if(y==="prev"||y==="next"){y==="prev"&&S.reverse();const E=S.indexOf(m.currentTarget);S=s.loop?axe(S,E+1):S.slice(E+1)}setTimeout(()=>iH(S))}})})))}),rxe={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function ixe(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function oxe(e,t,n){const r=ixe(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return rxe[r]}function iH(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function axe(e,t){return e.map((n,r)=>e[(t+r)%e.length])}const sxe=Jbe,lxe=nxe,uxe=["Enter"," "],cxe=["ArrowDown","PageUp","Home"],oH=["ArrowUp","PageDown","End"],dxe=[...cxe,...oH],zb="Menu",[OC,fxe,hxe]=$B(zb),[Ph,aH]=$v(zb,[hxe,QB,rH]),P7=QB(),sH=rH(),[pxe,$b]=Ph(zb),[gxe,T7]=Ph(zb),mxe=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:i,onOpenChange:o,modal:a=!0}=e,s=P7(t),[l,d]=C.exports.useState(null),p=C.exports.useRef(!1),g=Vl(o),m=FB(i);return C.exports.useEffect(()=>{const y=()=>{p.current=!0,document.addEventListener("pointerdown",b,{capture:!0,once:!0}),document.addEventListener("pointermove",b,{capture:!0,once:!0})},b=()=>p.current=!1;return document.addEventListener("keydown",y,{capture:!0}),()=>{document.removeEventListener("keydown",y,{capture:!0}),document.removeEventListener("pointerdown",b,{capture:!0}),document.removeEventListener("pointermove",b,{capture:!0})}},[]),C.exports.createElement(Hbe,s,C.exports.createElement(pxe,{scope:t,open:n,onOpenChange:g,content:l,onContentChange:d},C.exports.createElement(gxe,{scope:t,onClose:C.exports.useCallback(()=>g(!1),[g]),isUsingKeyboardRef:p,dir:m,modal:a},r)))},vxe=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,i=P7(n);return C.exports.createElement(Wbe,Rn({},i,r,{ref:t}))}),yxe="MenuPortal",[g7e,bxe]=Ph(yxe,{forceMount:void 0}),md="MenuContent",[xxe,lH]=Ph(md),Sxe=C.exports.forwardRef((e,t)=>{const n=bxe(md,e.__scopeMenu),{forceMount:r=n.forceMount,...i}=e,o=$b(md,e.__scopeMenu),a=T7(md,e.__scopeMenu);return C.exports.createElement(OC.Provider,{scope:e.__scopeMenu},C.exports.createElement(tH,{present:r||o.open},C.exports.createElement(OC.Slot,{scope:e.__scopeMenu},a.modal?C.exports.createElement(wxe,Rn({},i,{ref:t})):C.exports.createElement(Cxe,Rn({},i,{ref:t})))))}),wxe=C.exports.forwardRef((e,t)=>{const n=$b(md,e.__scopeMenu),r=C.exports.useRef(null),i=ss(t,r);return C.exports.useEffect(()=>{const o=r.current;if(o)return Lz(o)},[]),C.exports.createElement(uH,Rn({},e,{ref:i,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:Xn(e.onFocusOutside,o=>o.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)}))}),Cxe=C.exports.forwardRef((e,t)=>{const n=$b(md,e.__scopeMenu);return C.exports.createElement(uH,Rn({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)}))}),uH=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:i,onOpenAutoFocus:o,onCloseAutoFocus:a,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m,disableOutsideScroll:y,...b}=e,S=$b(md,n),E=T7(md,n),P=P7(n),k=sH(n),L=fxe(n),[R,N]=C.exports.useState(null),z=C.exports.useRef(null),$=ss(t,z,S.onContentChange),F=C.exports.useRef(0),q=C.exports.useRef(""),j=C.exports.useRef(0),Y=C.exports.useRef(null),ve=C.exports.useRef("right"),ge=C.exports.useRef(0),Se=y?g$:C.exports.Fragment,_e=y?{as:lv,allowPinchZoom:!0}:void 0,we=G=>{var te,Q;const W=q.current+G,se=L().filter(Ee=>!Ee.disabled),de=document.activeElement,xe=(te=se.find(Ee=>Ee.ref.current===de))===null||te===void 0?void 0:te.textValue,ze=se.map(Ee=>Ee.textValue),Me=Rxe(ze,W,xe),Ue=(Q=se.find(Ee=>Ee.textValue===Me))===null||Q===void 0?void 0:Q.ref.current;(function Ee(Ve){q.current=Ve,window.clearTimeout(F.current),Ve!==""&&(F.current=window.setTimeout(()=>Ee(""),1e3))})(W),Ue&&setTimeout(()=>Ue.focus())};C.exports.useEffect(()=>()=>window.clearTimeout(F.current),[]),F4e();const J=C.exports.useCallback(G=>{var te,Q;return ve.current===((te=Y.current)===null||te===void 0?void 0:te.side)&&Oxe(G,(Q=Y.current)===null||Q===void 0?void 0:Q.area)},[]);return C.exports.createElement(xxe,{scope:n,searchRef:q,onItemEnter:C.exports.useCallback(G=>{J(G)&&G.preventDefault()},[J]),onItemLeave:C.exports.useCallback(G=>{var te;J(G)||((te=z.current)===null||te===void 0||te.focus(),N(null))},[J]),onTriggerLeave:C.exports.useCallback(G=>{J(G)&&G.preventDefault()},[J]),pointerGraceTimerRef:j,onPointerGraceIntentChange:C.exports.useCallback(G=>{Y.current=G},[])},C.exports.createElement(Se,_e,C.exports.createElement(B4e,{asChild:!0,trapped:i,onMountAutoFocus:Xn(o,G=>{var te;G.preventDefault(),(te=z.current)===null||te===void 0||te.focus()}),onUnmountAutoFocus:a},C.exports.createElement(D4e,{asChild:!0,disableOutsidePointerEvents:s,onEscapeKeyDown:l,onPointerDownOutside:d,onFocusOutside:p,onInteractOutside:g,onDismiss:m},C.exports.createElement(sxe,Rn({asChild:!0},k,{dir:E.dir,orientation:"vertical",loop:r,currentTabStopId:R,onCurrentTabStopIdChange:N,onEntryFocus:G=>{E.isUsingKeyboardRef.current||G.preventDefault()}}),C.exports.createElement(Vbe,Rn({role:"menu","aria-orientation":"vertical","data-state":Lxe(S.open),"data-radix-menu-content":"",dir:E.dir},P,b,{ref:$,style:{outline:"none",...b.style},onKeyDown:Xn(b.onKeyDown,G=>{const Q=G.target.closest("[data-radix-menu-content]")===G.currentTarget,W=G.ctrlKey||G.altKey||G.metaKey,se=G.key.length===1;Q&&(G.key==="Tab"&&G.preventDefault(),!W&&se&&we(G.key));const de=z.current;if(G.target!==de||!dxe.includes(G.key))return;G.preventDefault();const ze=L().filter(Me=>!Me.disabled).map(Me=>Me.ref.current);oH.includes(G.key)&&ze.reverse(),Axe(ze)}),onBlur:Xn(e.onBlur,G=>{G.currentTarget.contains(G.target)||(window.clearTimeout(F.current),q.current="")}),onPointerMove:Xn(e.onPointerMove,DC(G=>{const te=G.target,Q=ge.current!==G.clientX;if(G.currentTarget.contains(te)&&Q){const W=G.clientX>ge.current?"right":"left";ve.current=W,ge.current=G.clientX}}))})))))))}),NC="MenuItem",JA="menu.itemSelect",_xe=C.exports.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...i}=e,o=C.exports.useRef(null),a=T7(NC,e.__scopeMenu),s=lH(NC,e.__scopeMenu),l=ss(t,o),d=C.exports.useRef(!1),p=()=>{const g=o.current;if(!n&&g){const m=new CustomEvent(JA,{bubbles:!0,cancelable:!0});g.addEventListener(JA,y=>r?.(y),{once:!0}),zB(g,m),m.defaultPrevented?d.current=!1:a.onClose()}};return C.exports.createElement(kxe,Rn({},i,{ref:l,disabled:n,onClick:Xn(e.onClick,p),onPointerDown:g=>{var m;(m=e.onPointerDown)===null||m===void 0||m.call(e,g),d.current=!0},onPointerUp:Xn(e.onPointerUp,g=>{var m;d.current||(m=g.currentTarget)===null||m===void 0||m.click()}),onKeyDown:Xn(e.onKeyDown,g=>{const m=s.searchRef.current!=="";n||m&&g.key===" "||uxe.includes(g.key)&&(g.currentTarget.click(),g.preventDefault())})}))}),kxe=C.exports.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:i,...o}=e,a=lH(NC,n),s=sH(n),l=C.exports.useRef(null),d=ss(t,l),[p,g]=C.exports.useState(!1),[m,y]=C.exports.useState("");return C.exports.useEffect(()=>{const b=l.current;if(b){var S;y(((S=b.textContent)!==null&&S!==void 0?S:"").trim())}},[o.children]),C.exports.createElement(OC.ItemSlot,{scope:n,disabled:r,textValue:i??m},C.exports.createElement(lxe,Rn({asChild:!0},s,{focusable:!r}),C.exports.createElement(Gu.div,Rn({role:"menuitem","data-highlighted":p?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0},o,{ref:d,onPointerMove:Xn(e.onPointerMove,DC(b=>{r?a.onItemLeave(b):(a.onItemEnter(b),b.defaultPrevented||b.currentTarget.focus())})),onPointerLeave:Xn(e.onPointerLeave,DC(b=>a.onItemLeave(b))),onFocus:Xn(e.onFocus,()=>g(!0)),onBlur:Xn(e.onBlur,()=>g(!1))}))))}),Exe="MenuRadioGroup";Ph(Exe,{value:void 0,onValueChange:()=>{}});const Pxe="MenuItemIndicator";Ph(Pxe,{checked:!1});const Txe="MenuSub";Ph(Txe);function Lxe(e){return e?"open":"closed"}function Axe(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function Ixe(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function Rxe(e,t,n){const i=t.length>1&&Array.from(t).every(d=>d===t[0])?t[0]:t,o=n?e.indexOf(n):-1;let a=Ixe(e,Math.max(o,0));i.length===1&&(a=a.filter(d=>d!==n));const l=a.find(d=>d.toLowerCase().startsWith(i.toLowerCase()));return l!==n?l:void 0}function Mxe(e,t){const{x:n,y:r}=e;let i=!1;for(let o=0,a=t.length-1;or!=p>r&&n<(d-s)*(r-l)/(p-l)+s&&(i=!i)}return i}function Oxe(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return Mxe(n,t)}function DC(e){return t=>t.pointerType==="mouse"?e(t):void 0}const Nxe=mxe,Dxe=vxe,zxe=Sxe,$xe=_xe,cH="ContextMenu",[Fxe,m7e]=$v(cH,[aH]),Fb=aH(),[Bxe,dH]=Fxe(cH),Hxe=e=>{const{__scopeContextMenu:t,children:n,onOpenChange:r,dir:i,modal:o=!0}=e,[a,s]=C.exports.useState(!1),l=Fb(t),d=Vl(r),p=C.exports.useCallback(g=>{s(g),d(g)},[d]);return C.exports.createElement(Bxe,{scope:t,open:a,onOpenChange:p,modal:o},C.exports.createElement(Nxe,Rn({},l,{dir:i,open:a,onOpenChange:p,modal:o}),n))},Wxe="ContextMenuTrigger",Vxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=dH(Wxe,n),o=Fb(n),a=C.exports.useRef({x:0,y:0}),s=C.exports.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...a.current})}),l=C.exports.useRef(0),d=C.exports.useCallback(()=>window.clearTimeout(l.current),[]),p=g=>{a.current={x:g.clientX,y:g.clientY},i.onOpenChange(!0)};return C.exports.useEffect(()=>d,[d]),C.exports.createElement(C.exports.Fragment,null,C.exports.createElement(Dxe,Rn({},o,{virtualRef:s})),C.exports.createElement(Gu.span,Rn({"data-state":i.open?"open":"closed"},r,{ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:Xn(e.onContextMenu,g=>{d(),p(g),g.preventDefault()}),onPointerDown:Xn(e.onPointerDown,Ey(g=>{d(),l.current=window.setTimeout(()=>p(g),700)})),onPointerMove:Xn(e.onPointerMove,Ey(d)),onPointerCancel:Xn(e.onPointerCancel,Ey(d)),onPointerUp:Xn(e.onPointerUp,Ey(d))})))}),Uxe="ContextMenuContent",Gxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=dH(Uxe,n),o=Fb(n),a=C.exports.useRef(!1);return C.exports.createElement(zxe,Rn({},o,r,{ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:s=>{var l;(l=e.onCloseAutoFocus)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&a.current&&s.preventDefault(),a.current=!1},onInteractOutside:s=>{var l;(l=e.onInteractOutside)===null||l===void 0||l.call(e,s),!s.defaultPrevented&&!i.modal&&(a.current=!0)},style:{...e.style,["--radix-context-menu-content-transform-origin"]:"var(--radix-popper-transform-origin)"}}))}),jxe=C.exports.forwardRef((e,t)=>{const{__scopeContextMenu:n,...r}=e,i=Fb(n);return C.exports.createElement($xe,Rn({},i,r,{ref:t}))});function Ey(e){return t=>t.pointerType!=="mouse"?e(t):void 0}const qxe=Hxe,Kxe=Vxe,Yxe=Gxe,Nf=jxe,Zxe=Jt([e=>e.gallery,e=>e.options,ds],(e,t,n)=>{const{categories:r,currentCategory:i,currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,galleryWidth:y}=e;return{currentImageUuid:o,shouldPinGallery:a,shouldShowGallery:s,galleryScrollPosition:l,galleryImageMinimumWidth:d,galleryImageObjectFit:p,galleryGridTemplateColumns:`repeat(auto-fill, minmax(${d}px, auto))`,activeTabName:n,shouldHoldGalleryOpen:g,shouldAutoSwitchToNewImages:m,images:r[i].images,areMoreImagesAvailable:r[i].areMoreImagesAvailable,currentCategory:i,galleryWidth:y}}),Xxe=Jt([e=>e.options,e=>e.gallery,e=>e.system,ds],(e,t,n,r)=>({mayDeleteImage:n.isConnected&&!n.isProcessing,galleryImageObjectFit:t.galleryImageObjectFit,galleryImageMinimumWidth:t.galleryImageMinimumWidth,activeTabName:r})),Qxe=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,Jxe=C.exports.memo(e=>{const t=gt(),{activeTabName:n,galleryImageObjectFit:r,galleryImageMinimumWidth:i,mayDeleteImage:o}=Ze(Xxe),{image:a,isSelected:s}=e,{url:l,uuid:d,metadata:p}=a,[g,m]=C.exports.useState(!1),y=Id(),b=()=>m(!0),S=()=>m(!1),E=()=>{a.metadata&&t(H7(a.metadata.image.prompt)),y({title:"Prompt Set",status:"success",duration:2500,isClosable:!0})},P=()=>{a.metadata&&t(Wv(a.metadata.image.seed)),y({title:"Seed Set",status:"success",duration:2500,isClosable:!0})},k=()=>{t(cv(a)),n!=="img2img"&&t(Ka("img2img")),y({title:"Sent to Image To Image",status:"success",duration:2500,isClosable:!0})},L=()=>{t(W3(a)),n!=="inpainting"&&t(Ka("inpainting")),y({title:"Sent to Inpainting",status:"success",duration:2500,isClosable:!0})},R=()=>{p&&t(b9e(p)),y({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})},N=async()=>{if(p?.image?.init_image_path&&(await fetch(p.image.init_image_path)).ok){t(Ka("img2img")),t(x9e(p)),y({title:"Initial Image Set",status:"success",duration:2500,isClosable:!0});return}y({title:"Initial Image Not Set",description:"Could not load initial image.",status:"error",duration:2500,isClosable:!0})};return ne(qxe,{children:[w(Kxe,{children:ne(ql,{position:"relative",className:"hoverable-image",onMouseOver:b,onMouseOut:S,children:[w(J4,{className:"hoverable-image-image",objectFit:r,rounded:"md",src:l,loading:"lazy"}),w("div",{className:"hoverable-image-content",onClick:()=>t(AB(a)),children:s&&w(ib,{width:"50%",height:"50%",as:X5e,className:"hoverable-image-check"})}),g&&i>=64&&w("div",{className:"hoverable-image-delete-button",children:w(li,{label:"Delete image",hasArrow:!0,children:w(kC,{image:a,children:w(no,{"aria-label":"Delete image",icon:w(d3e,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14,isDisabled:!o})})})})]},d)}),ne(Yxe,{className:"hoverable-image-context-menu",sticky:"always",children:[w(Nf,{onClickCapture:E,disabled:a?.metadata?.image?.prompt===void 0,children:"Use Prompt"}),w(Nf,{onClickCapture:P,disabled:a?.metadata?.image?.seed===void 0,children:"Use Seed"}),w(Nf,{onClickCapture:R,disabled:!["txt2img","img2img"].includes(a?.metadata?.image?.type),children:"Use All Parameters"}),w(li,{label:"Load initial image used for this generation",children:w(Nf,{onClickCapture:N,disabled:a?.metadata?.image?.type!=="img2img",children:"Use Initial Image"})}),w(Nf,{onClickCapture:k,children:"Send to Image To Image"}),w(Nf,{onClickCapture:L,children:"Send to Inpainting"}),w(kC,{image:a,children:w(Nf,{"data-warning":!0,children:"Delete Image"})})]})]})},Qxe),w5=e=>{const{triggerComponent:t,children:n,styleClass:r,hasArrow:i=!0,...o}=e;return ne(ub,{...o,children:[w(fb,{children:w(ql,{children:t})}),ne(db,{className:`invokeai__popover-content ${r}`,children:[i&&w(cb,{className:"invokeai__popover-arrow"}),n]})]})},Y3=e=>{const{label:t,styleClass:n,formControlProps:r,formLabelProps:i,sliderTrackProps:o,sliderInnerTrackProps:a,sliderThumbProps:s,sliderThumbTooltipProps:l,...d}=e;return w(Td,{className:`invokeai__slider-form-control ${n}`,...r,children:ne("div",{className:"invokeai__slider-inner-container",children:[w(Sh,{className:"invokeai__slider-form-label",whiteSpace:"nowrap",...i,children:t}),ne(z_,{className:"invokeai__slider-root","aria-label":t,...d,children:[w($$,{className:"invokeai__slider-track",...o,children:w(F$,{className:"invokeai__slider-filled-track",...a})}),w(li,{className:"invokeai__slider-thumb-tooltip",placement:"top",hasArrow:!0,...l,children:w(z$,{className:"invokeai__slider-thumb",...s})})]})]})})};function fH(e){return Ct({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 19c.946 0 1.81-.103 2.598-.281l-1.757-1.757c-.273.021-.55.038-.841.038-5.351 0-7.424-3.846-7.926-5a8.642 8.642 0 0 1 1.508-2.297L4.184 8.305c-1.538 1.667-2.121 3.346-2.132 3.379a.994.994 0 0 0 0 .633C2.073 12.383 4.367 19 12 19zm0-14c-1.837 0-3.346.396-4.604.981L3.707 2.293 2.293 3.707l18 18 1.414-1.414-3.319-3.319c2.614-1.951 3.547-4.615 3.561-4.657a.994.994 0 0 0 0-.633C21.927 11.617 19.633 5 12 5zm4.972 10.558-2.28-2.28c.19-.39.308-.819.308-1.278 0-1.641-1.359-3-3-3-.459 0-.888.118-1.277.309L8.915 7.501A9.26 9.26 0 0 1 12 7c5.351 0 7.424 3.846 7.926 5-.302.692-1.166 2.342-2.954 3.558z"}}]})(e)}function zC(e){return Ct({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 16c1.671 0 3-1.331 3-3s-1.329-3-3-3-3 1.331-3 3 1.329 3 3 3z"}},{tag:"path",attr:{d:"M20.817 11.186a8.94 8.94 0 0 0-1.355-3.219 9.053 9.053 0 0 0-2.43-2.43 8.95 8.95 0 0 0-3.219-1.355 9.028 9.028 0 0 0-1.838-.18V2L8 5l3.975 3V6.002c.484-.002.968.044 1.435.14a6.961 6.961 0 0 1 2.502 1.053 7.005 7.005 0 0 1 1.892 1.892A6.967 6.967 0 0 1 19 13a7.032 7.032 0 0 1-.55 2.725 7.11 7.11 0 0 1-.644 1.188 7.2 7.2 0 0 1-.858 1.039 7.028 7.028 0 0 1-3.536 1.907 7.13 7.13 0 0 1-2.822 0 6.961 6.961 0 0 1-2.503-1.054 7.002 7.002 0 0 1-1.89-1.89A6.996 6.996 0 0 1 5 13H3a9.02 9.02 0 0 0 1.539 5.034 9.096 9.096 0 0 0 2.428 2.428A8.95 8.95 0 0 0 12 22a9.09 9.09 0 0 0 1.814-.183 9.014 9.014 0 0 0 3.218-1.355 8.886 8.886 0 0 0 1.331-1.099 9.228 9.228 0 0 0 1.1-1.332A8.952 8.952 0 0 0 21 13a9.09 9.09 0 0 0-.183-1.814z"}}]})(e)}function hH(e){return Ct({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{d:"M12 9a3.02 3.02 0 0 0-3 3c0 1.642 1.358 3 3 3 1.641 0 3-1.358 3-3 0-1.641-1.359-3-3-3z"}},{tag:"path",attr:{d:"M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316-.105-.316C21.927 11.617 19.633 5 12 5zm0 12c-5.351 0-7.424-3.846-7.926-5C4.578 10.842 6.652 7 12 7c5.351 0 7.424 3.846 7.926 5-.504 1.158-2.578 5-7.926 5z"}}]})(e)}const eSe=320;function tSe(){const e=gt(),t=Id(),{images:n,currentCategory:r,currentImageUuid:i,shouldPinGallery:o,shouldShowGallery:a,galleryScrollPosition:s,galleryImageMinimumWidth:l,galleryGridTemplateColumns:d,activeTabName:p,galleryImageObjectFit:g,shouldHoldGalleryOpen:m,shouldAutoSwitchToNewImages:y,areMoreImagesAvailable:b,galleryWidth:S}=Ze(Zxe),[E,P]=C.exports.useState(300),[k,L]=C.exports.useState(590),[R,N]=C.exports.useState(S>=eSe);C.exports.useEffect(()=>{!o||(p==="inpainting"?(e(xy(220)),P(220),L(220)):p==="img2img"?(e(xy(Math.min(Math.max(Number(S),0),490))),L(490)):(e(xy(Math.min(Math.max(Number(S),0),590))),L(590)),e(th(!0)))},[e,p,o,S]),C.exports.useEffect(()=>{o||L(window.innerWidth)},[o]);const z=C.exports.useRef(null),$=C.exports.useRef(null),F=C.exports.useRef(null),q=()=>{e(r4e(!o)),e(th(!0))},j=()=>{a?ve():Y()},Y=()=>{e(EC(!0)),o&&e(th(!0))},ve=()=>{e(EC(!1)),e(i4e($.current?$.current.scrollTop:0)),e(a4e(!1))},ge=()=>{e(CC(r))},Se=G=>{e(Of(G)),e(th(!0))},_e=()=>{F.current=window.setTimeout(()=>ve(),500)},we=()=>{F.current&&window.clearTimeout(F.current)};Ht("g",()=>{j()},[a]),Ht("left",()=>{e(RB())}),Ht("right",()=>{e(IB())}),Ht("shift+g",()=>{q()},[o]);const J=32;return Ht("shift+up",()=>{if(!(l>=256)&&l<256){const G=l+J;G<=256?(e(Of(G)),t({title:`Gallery Thumbnail Size set to ${G}`,status:"success",duration:1e3,isClosable:!0})):(e(Of(256)),t({title:"Gallery Thumbnail Size set to 256",status:"success",duration:1e3,isClosable:!0}))}},[l]),Ht("shift+down",()=>{if(!(l<=32)&&l>32){const G=l-J;G>32?(e(Of(G)),t({title:`Gallery Thumbnail Size set to ${G}`,status:"success",duration:1e3,isClosable:!0})):(e(Of(32)),t({title:"Gallery Thumbnail Size set to 32",status:"success",duration:1e3,isClosable:!0}))}},[l]),Ht("shift+r",()=>{e(Of(64)),t({title:"Reset Gallery Image Size",status:"success",duration:2500,isClosable:!0})},[l]),C.exports.useEffect(()=>{!$.current||($.current.scrollTop=s)},[s,a]),C.exports.useEffect(()=>{N(S>=280)},[S]),wB(z,ve,!o),w(SB,{nodeRef:z,in:a||m&&!o,unmountOnExit:!0,timeout:200,classNames:"image-gallery-wrapper",children:w("div",{className:"image-gallery-wrapper","data-pinned":o,ref:z,onMouseLeave:o?void 0:_e,onMouseEnter:o?void 0:we,onMouseOver:o?void 0:we,children:ne(NB,{minWidth:E,maxWidth:k,className:"image-gallery-popup",handleStyles:{left:{width:"15px"}},enable:{top:!1,right:!1,bottom:!1,left:!0,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},size:{width:S,height:o?"100%":"100vh"},onResizeStop:(G,te,Q,W)=>{e(xy(Yt.clamp(Number(S)+W.width,0,Number(k)))),Q.removeAttribute("data-resize-alert")},onResize:(G,te,Q,W)=>{const se=Yt.clamp(Number(S)+W.width,0,Number(k));se>=280&&!R?N(!0):se<280&&R&&N(!1),se>=k?Q.setAttribute("data-resize-alert","true"):Q.removeAttribute("data-resize-alert")},children:[ne("div",{className:"image-gallery-header",children:[w("div",{children:w(FD,{size:"sm",isAttached:!0,variant:"solid",className:"image-gallery-category-btn-group",children:R?ne(Un,{children:[w(ts,{"data-selected":r==="result",onClick:()=>e(by("result")),children:"Invocations"}),w(ts,{"data-selected":r==="user",onClick:()=>e(by("user")),children:"User"})]}):ne(Un,{children:[w(vn,{"aria-label":"Show Invocations",tooltip:"Show Invocations","data-selected":r==="result",icon:w(e3e,{}),onClick:()=>e(by("result"))}),w(vn,{"aria-label":"Show Uploads",tooltip:"Show Uploads","data-selected":r==="user",icon:w(g3e,{}),onClick:()=>e(by("user"))})]})})}),ne("div",{children:[w(w5,{isLazy:!0,trigger:"hover",placement:"left",triggerComponent:w(vn,{size:"sm","aria-label":"Gallery Settings",icon:w(m3e,{}),className:"image-gallery-icon-btn",cursor:"pointer"}),children:ne("div",{className:"image-gallery-settings-popover",children:[ne("div",{children:[w(Y3,{value:l,onChange:Se,min:32,max:256,width:100,label:"Image Size",formLabelProps:{style:{fontSize:"0.9rem"}},sliderThumbTooltipProps:{label:`${l}px`}}),w(vn,{size:"sm","aria-label":"Reset",tooltip:"Reset Size",onClick:()=>e(Of(64)),icon:w(zC,{}),"data-selected":o,styleClass:"image-gallery-icon-btn"})]}),w("div",{children:w(sv,{label:"Maintain Aspect Ratio",isChecked:g==="contain",onChange:()=>e(o4e(g==="contain"?"cover":"contain"))})}),w("div",{children:w(sv,{label:"Auto-Switch to New Images",isChecked:y,onChange:G=>e(s4e(G.target.checked))})})]})}),w(vn,{size:"sm",className:"image-gallery-icon-btn","aria-label":"Pin Gallery",tooltip:"Pin Gallery (Shift+G)",onClick:q,icon:o?w(vB,{}):w(yB,{})})]})]}),w("div",{className:"image-gallery-container",ref:$,children:n.length||b?ne(Un,{children:[w("div",{className:"image-gallery",style:{gridTemplateColumns:d},children:n.map(G=>{const{uuid:te}=G;return w(Jxe,{image:G,isSelected:i===te},te)})}),w(ts,{onClick:ge,isDisabled:!b,className:"image-gallery-load-more-btn",children:b?"Load More":"All Images Loaded"})]}):ne("div",{className:"image-gallery-container-placeholder",children:[w(cB,{}),w("p",{children:"No Images In Gallery"})]})})]})})})}const L7=e=>{const{optionsPanel:t,children:n,styleClass:r}=e;return w("div",{className:r?`workarea-wrapper ${r}`:"workarea-wrapper",children:ne("div",{className:"workarea-main",children:[t,n,w(tSe,{})]})})};function nSe(){return w(L7,{optionsPanel:w(Z3e,{}),children:w(m4e,{})})}const rSe=Jt(e=>e.inpainting,e=>{const{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,pastLines:o,futureLines:a,shouldLockBoundingBox:s}=e;return{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,pastLines:o,futureLines:a,shouldLockBoundingBox:s}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),iSe=()=>{const e=gt(),{canvasDimensions:t,boundingBoxDimensions:n,shouldShowBoundingBox:r,shouldShowBoundingBoxFill:i,shouldLockBoundingBox:o}=Ze(rSe),a=y=>{e(Mg({...n,width:Math.floor(y)}))},s=y=>{e(Mg({...n,height:Math.floor(y)}))},l=()=>{e(V3e(!i))},d=()=>{e(_B(!o))},p=()=>{e(Mg({...n,width:Math.floor(t.width)}))},g=()=>{e(Mg({...n,height:Math.floor(t.height)}))};return ne("div",{className:"inpainting-bounding-box-settings",children:[ne("div",{className:"inpainting-bounding-box-header",children:[w("p",{children:"Inpaint Box"}),w(vn,{"aria-label":"Toggle Bounding Box Visibility",icon:r?w(hH,{size:22}):w(fH,{size:22}),onClick:()=>e(W3e(!r)),background:"none",padding:0})]}),ne("div",{className:"inpainting-bounding-box-settings-items",children:[ne("div",{className:"inpainting-bounding-box-dimensions-slider-numberinput",children:[w(Y3,{label:"Box W",min:64,max:qa(t.width,64),step:64,value:n.width,onChange:a,width:"5rem"}),w(Co,{value:n.width,onChange:a,min:64,max:qa(t.width,64),step:64,width:"5rem"}),w(vn,{size:"sm","aria-label":"Reset Width",tooltip:"Reset Width",onClick:p,icon:w(zC,{}),styleClass:"inpainting-bounding-box-reset-icon-btn",isDisabled:t.width===n.width})]}),ne("div",{className:"inpainting-bounding-box-dimensions-slider-numberinput",children:[w(Y3,{label:"Box H",min:64,max:qa(t.height,64),step:64,value:n.height,onChange:s,width:"5rem"}),w(Co,{value:n.height,onChange:s,min:64,max:qa(t.height,64),step:64,padding:"0",width:"5rem"}),w(vn,{size:"sm","aria-label":"Reset Height",tooltip:"Reset Height",onClick:g,icon:w(zC,{}),styleClass:"inpainting-bounding-box-reset-icon-btn",isDisabled:t.height===n.height})]}),ne(Wn,{alignItems:"center",justifyContent:"space-between",children:[w(sv,{label:"Darken Outside Box",isChecked:i,onChange:l,styleClass:"inpainting-bounding-box-darken"}),w(sv,{label:"Lock Bounding Box",isChecked:o,onChange:d,styleClass:"inpainting-bounding-box-darken"})]})]})]})},oSe=Jt(e=>e.inpainting,e=>{const{pastLines:t,futureLines:n,inpaintReplace:r,shouldUseInpaintReplace:i}=e;return{pastLines:t,futureLines:n,inpaintReplace:r,shouldUseInpaintReplace:i}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}});function aSe(){const e=gt(),t=Id(),{pastLines:n,futureLines:r,inpaintReplace:i,shouldUseInpaintReplace:o}=Ze(oSe);return ne(Un,{children:[ne("div",{style:{display:"flex",alignItems:"center",padding:"0 1rem 0 0.2rem"},children:[w(Co,{label:"Inpaint Replace",value:i,min:0,max:1,step:.05,width:"auto",formControlProps:{style:{paddingRight:"1rem"}},isInteger:!1,isDisabled:!o,onChange:s=>{e(j3e(s))}}),w(Zu,{isChecked:o,onChange:s=>e(G3e(s.target.checked))})]}),w(iSe,{}),w(H3,{label:"Clear Brush History",onClick:()=>{e(U3e()),t({title:"Brush Stroke History Cleared",status:"success",duration:2500,isClosable:!0})},tooltip:"Clears brush stroke history",disabled:!(r.length>0||n.length>0),styleClass:"inpainting-options-btn"})]})}function sSe(){const e=Ze(n=>n.options.showAdvancedOptions),t={seed:{header:w(l7,{}),feature:xo.SEED,options:w(u7,{})},variations:{header:w(d7,{}),feature:xo.VARIATIONS,options:w(f7,{})},face_restore:{header:w(o7,{}),feature:xo.FACE_CORRECTION,options:w(Rb,{})},upscale:{header:w(c7,{}),feature:xo.UPSCALE,options:w(Mb,{})}};return ne(S7,{children:[w(y7,{}),w(v7,{}),w(g7,{}),w(eB,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),w(aSe,{}),w(h7,{}),e?w(m7,{accordionInfo:t}):null]})}var lSe=Math.PI/180;function uSe(){return typeof window<"u"&&({}.toString.call(window)==="[object Window]"||{}.toString.call(window)==="[object global]")}const x0=typeof global<"u"?global:typeof window<"u"?window:typeof WorkerGlobalScope<"u"?self:{},lt={_global:x0,version:"8.3.13",isBrowser:uSe(),isUnminified:/param/.test(function(e){}.toString()),dblClickWindow:400,getAngle(e){return lt.angleDeg?e*lSe:e},enableTrace:!1,pointerEventsEnabled:!0,autoDrawEnabled:!0,hitOnDragEnabled:!1,capturePointerEventsEnabled:!1,_mouseListenClick:!1,_touchListenClick:!1,_pointerListenClick:!1,_mouseInDblClickWindow:!1,_touchInDblClickWindow:!1,_pointerInDblClickWindow:!1,_mouseDblClickPointerId:null,_touchDblClickPointerId:null,_pointerDblClickPointerId:null,pixelRatio:typeof window<"u"&&window.devicePixelRatio||1,dragDistance:3,angleDeg:!0,showWarnings:!0,dragButtons:[0,1],isDragging(){return lt.DD.isDragging},isDragReady(){return!!lt.DD.node},document:x0.document,_injectGlobal(e){x0.Konva=e}},wr=e=>{lt[e.prototype.getClassName()]=e};lt._injectGlobal(lt);class ma{constructor(t=[1,0,0,1,0,0]){this.dirty=!1,this.m=t&&t.slice()||[1,0,0,1,0,0]}reset(){this.m[0]=1,this.m[1]=0,this.m[2]=0,this.m[3]=1,this.m[4]=0,this.m[5]=0}copy(){return new ma(this.m)}copyInto(t){t.m[0]=this.m[0],t.m[1]=this.m[1],t.m[2]=this.m[2],t.m[3]=this.m[3],t.m[4]=this.m[4],t.m[5]=this.m[5]}point(t){var n=this.m;return{x:n[0]*t.x+n[2]*t.y+n[4],y:n[1]*t.x+n[3]*t.y+n[5]}}translate(t,n){return this.m[4]+=this.m[0]*t+this.m[2]*n,this.m[5]+=this.m[1]*t+this.m[3]*n,this}scale(t,n){return this.m[0]*=t,this.m[1]*=t,this.m[2]*=n,this.m[3]*=n,this}rotate(t){var n=Math.cos(t),r=Math.sin(t),i=this.m[0]*n+this.m[2]*r,o=this.m[1]*n+this.m[3]*r,a=this.m[0]*-r+this.m[2]*n,s=this.m[1]*-r+this.m[3]*n;return this.m[0]=i,this.m[1]=o,this.m[2]=a,this.m[3]=s,this}getTranslation(){return{x:this.m[4],y:this.m[5]}}skew(t,n){var r=this.m[0]+this.m[2]*n,i=this.m[1]+this.m[3]*n,o=this.m[2]+this.m[0]*t,a=this.m[3]+this.m[1]*t;return this.m[0]=r,this.m[1]=i,this.m[2]=o,this.m[3]=a,this}multiply(t){var n=this.m[0]*t.m[0]+this.m[2]*t.m[1],r=this.m[1]*t.m[0]+this.m[3]*t.m[1],i=this.m[0]*t.m[2]+this.m[2]*t.m[3],o=this.m[1]*t.m[2]+this.m[3]*t.m[3],a=this.m[0]*t.m[4]+this.m[2]*t.m[5]+this.m[4],s=this.m[1]*t.m[4]+this.m[3]*t.m[5]+this.m[5];return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}invert(){var t=1/(this.m[0]*this.m[3]-this.m[1]*this.m[2]),n=this.m[3]*t,r=-this.m[1]*t,i=-this.m[2]*t,o=this.m[0]*t,a=t*(this.m[2]*this.m[5]-this.m[3]*this.m[4]),s=t*(this.m[1]*this.m[4]-this.m[0]*this.m[5]);return this.m[0]=n,this.m[1]=r,this.m[2]=i,this.m[3]=o,this.m[4]=a,this.m[5]=s,this}getMatrix(){return this.m}decompose(){var t=this.m[0],n=this.m[1],r=this.m[2],i=this.m[3],o=this.m[4],a=this.m[5],s=t*i-n*r;let l={x:o,y:a,rotation:0,scaleX:0,scaleY:0,skewX:0,skewY:0};if(t!=0||n!=0){var d=Math.sqrt(t*t+n*n);l.rotation=n>0?Math.acos(t/d):-Math.acos(t/d),l.scaleX=d,l.scaleY=s/d,l.skewX=(t*r+n*i)/s,l.skewY=0}else if(r!=0||i!=0){var p=Math.sqrt(r*r+i*i);l.rotation=Math.PI/2-(i>0?Math.acos(-r/p):-Math.acos(r/p)),l.scaleX=s/p,l.scaleY=p,l.skewX=0,l.skewY=(t*r+n*i)/s}return l.rotation=ce._getRotation(l.rotation),l}}var cSe="[object Array]",dSe="[object Number]",fSe="[object String]",hSe="[object Boolean]",pSe=Math.PI/180,gSe=180/Math.PI,XS="#",mSe="",vSe="0",ySe="Konva warning: ",eI="Konva error: ",bSe="rgb(",QS={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,132,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,255,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,203],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[119,128,144],slategrey:[119,128,144],snow:[255,255,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],transparent:[255,255,255,0],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,5]},xSe=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/,Py=[];const SSe=typeof requestAnimationFrame<"u"&&requestAnimationFrame||function(e){setTimeout(e,60)},ce={_isElement(e){return!!(e&&e.nodeType==1)},_isFunction(e){return!!(e&&e.constructor&&e.call&&e.apply)},_isPlainObject(e){return!!e&&e.constructor===Object},_isArray(e){return Object.prototype.toString.call(e)===cSe},_isNumber(e){return Object.prototype.toString.call(e)===dSe&&!isNaN(e)&&isFinite(e)},_isString(e){return Object.prototype.toString.call(e)===fSe},_isBoolean(e){return Object.prototype.toString.call(e)===hSe},isObject(e){return e instanceof Object},isValidSelector(e){if(typeof e!="string")return!1;var t=e[0];return t==="#"||t==="."||t===t.toUpperCase()},_sign(e){return e===0||e>0?1:-1},requestAnimFrame(e){Py.push(e),Py.length===1&&SSe(function(){const t=Py;Py=[],t.forEach(function(n){n()})})},createCanvasElement(){var e=document.createElement("canvas");try{e.style=e.style||{}}catch{}return e},createImageElement(){return document.createElement("img")},_isInDocument(e){for(;e=e.parentNode;)if(e==document)return!0;return!1},_urlToImage(e,t){var n=ce.createImageElement();n.onload=function(){t(n)},n.src=e},_rgbToHex(e,t,n){return((1<<24)+(e<<16)+(t<<8)+n).toString(16).slice(1)},_hexToRgb(e){e=e.replace(XS,mSe);var t=parseInt(e,16);return{r:t>>16&255,g:t>>8&255,b:t&255}},getRandomColor(){for(var e=(Math.random()*16777215<<0).toString(16);e.length<6;)e=vSe+e;return XS+e},getRGB(e){var t;return e in QS?(t=QS[e],{r:t[0],g:t[1],b:t[2]}):e[0]===XS?this._hexToRgb(e.substring(1)):e.substr(0,4)===bSe?(t=xSe.exec(e.replace(/ /g,"")),{r:parseInt(t[1],10),g:parseInt(t[2],10),b:parseInt(t[3],10)}):{r:0,g:0,b:0}},colorToRGBA(e){return e=e||"black",ce._namedColorToRBA(e)||ce._hex3ColorToRGBA(e)||ce._hex6ColorToRGBA(e)||ce._rgbColorToRGBA(e)||ce._rgbaColorToRGBA(e)||ce._hslColorToRGBA(e)},_namedColorToRBA(e){var t=QS[e.toLowerCase()];return t?{r:t[0],g:t[1],b:t[2],a:1}:null},_rgbColorToRGBA(e){if(e.indexOf("rgb(")===0){e=e.match(/rgb\(([^)]+)\)/)[1];var t=e.split(/ *, */).map(Number);return{r:t[0],g:t[1],b:t[2],a:1}}},_rgbaColorToRGBA(e){if(e.indexOf("rgba(")===0){e=e.match(/rgba\(([^)]+)\)/)[1];var t=e.split(/ *, */).map((n,r)=>n.slice(-1)==="%"?r===3?parseInt(n)/100:parseInt(n)/100*255:Number(n));return{r:t[0],g:t[1],b:t[2],a:t[3]}}},_hex6ColorToRGBA(e){if(e[0]==="#"&&e.length===7)return{r:parseInt(e.slice(1,3),16),g:parseInt(e.slice(3,5),16),b:parseInt(e.slice(5,7),16),a:1}},_hex3ColorToRGBA(e){if(e[0]==="#"&&e.length===4)return{r:parseInt(e[1]+e[1],16),g:parseInt(e[2]+e[2],16),b:parseInt(e[3]+e[3],16),a:1}},_hslColorToRGBA(e){if(/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.test(e)){const[t,...n]=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(e),r=Number(n[0])/360,i=Number(n[1])/100,o=Number(n[2])/100;let a,s,l;if(i===0)return l=o*255,{r:Math.round(l),g:Math.round(l),b:Math.round(l),a:1};o<.5?a=o*(1+i):a=o+i-o*i;const d=2*o-a,p=[0,0,0];for(let g=0;g<3;g++)s=r+1/3*-(g-1),s<0&&s++,s>1&&s--,6*s<1?l=d+(a-d)*6*s:2*s<1?l=a:3*s<2?l=d+(a-d)*(2/3-s)*6:l=d,p[g]=l*255;return{r:Math.round(p[0]),g:Math.round(p[1]),b:Math.round(p[2]),a:1}}},haveIntersection(e,t){return!(t.x>e.x+e.width||t.x+t.widthe.y+e.height||t.y+t.height1?(a=n,s=r,l=(n-i)*(n-i)+(r-o)*(r-o)):(a=e+p*(n-e),s=t+p*(r-t),l=(a-i)*(a-i)+(s-o)*(s-o))}return[a,s,l]},_getProjectionToLine(e,t,n){var r=ce.cloneObject(e),i=Number.MAX_VALUE;return t.forEach(function(o,a){if(!(!n&&a===t.length-1)){var s=t[(a+1)%t.length],l=ce._getProjectionToSegment(o.x,o.y,s.x,s.y,e.x,e.y),d=l[0],p=l[1],g=l[2];gt.length){var a=t;t=e,e=a}for(r=0;r255?255:e<0?0:Math.round(e)}function He(){if(lt.isUnminified)return function(e,t){return ce._isNumber(e)||ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a number.'),e}}function gH(e){if(lt.isUnminified)return function(t,n){let r=ce._isNumber(t),i=ce._isArray(t)&&t.length==e;return!r&&!i&&ce.warn(Md(t)+' is a not valid value for "'+n+'" attribute. The value should be a number or Array('+e+")"),t}}function A7(){if(lt.isUnminified)return function(e,t){var n=ce._isNumber(e),r=e==="auto";return n||r||ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a number or "auto".'),e}}function s1(){if(lt.isUnminified)return function(e,t){return ce._isString(e)||ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a string.'),e}}function mH(){if(lt.isUnminified)return function(e,t){const n=ce._isString(e),r=Object.prototype.toString.call(e)==="[object CanvasGradient]"||e&&e.addColorStop;return n||r||ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a string or a native gradient.'),e}}function wSe(){if(lt.isUnminified)return function(e,t){const n=Int8Array?Object.getPrototypeOf(Int8Array):null;return n&&e instanceof n||(ce._isArray(e)?e.forEach(function(r){ce._isNumber(r)||ce.warn('"'+t+'" attribute has non numeric element '+r+". Make sure that all elements are numbers.")}):ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a array of numbers.')),e}}function Us(){if(lt.isUnminified)return function(e,t){var n=e===!0||e===!1;return n||ce.warn(Md(e)+' is a not valid value for "'+t+'" attribute. The value should be a boolean.'),e}}function CSe(e){if(lt.isUnminified)return function(t,n){return t==null||ce.isObject(t)||ce.warn(Md(t)+' is a not valid value for "'+n+'" attribute. The value should be an object with properties '+e),t}}var gg="get",mg="set";const Z={addGetterSetter(e,t,n,r,i){Z.addGetter(e,t,n),Z.addSetter(e,t,r,i),Z.addOverloadedGetterSetter(e,t)},addGetter(e,t,n){var r=gg+ce._capitalize(t);e.prototype[r]=e.prototype[r]||function(){var i=this.attrs[t];return i===void 0?n:i}},addSetter(e,t,n,r){var i=mg+ce._capitalize(t);e.prototype[i]||Z.overWriteSetter(e,t,n,r)},overWriteSetter(e,t,n,r){var i=mg+ce._capitalize(t);e.prototype[i]=function(o){return n&&o!==void 0&&o!==null&&(o=n.call(this,o,t)),this._setAttr(t,o),r&&r.call(this),this}},addComponentsGetterSetter(e,t,n,r,i){var o=n.length,a=ce._capitalize,s=gg+a(t),l=mg+a(t),d,p;e.prototype[s]=function(){var m={};for(d=0;d{this._setAttr(t+a(S),void 0)}),this._fireChangeEvent(t,y,m),i&&i.call(this),this},Z.addOverloadedGetterSetter(e,t)},addOverloadedGetterSetter(e,t){var n=ce._capitalize(t),r=mg+n,i=gg+n;e.prototype[t]=function(){return arguments.length?(this[r](arguments[0]),this):this[i]()}},addDeprecatedGetterSetter(e,t,n,r){ce.error("Adding deprecated "+t);var i=gg+ce._capitalize(t),o=t+" property is deprecated and will be removed soon. Look at Konva change log for more information.";e.prototype[i]=function(){ce.error(o);var a=this.attrs[t];return a===void 0?n:a},Z.addSetter(e,t,r,function(){ce.error(o)}),Z.addOverloadedGetterSetter(e,t)},backCompat(e,t){ce.each(t,function(n,r){var i=e.prototype[r],o=gg+ce._capitalize(n),a=mg+ce._capitalize(n);function s(){i.apply(this,arguments),ce.error('"'+n+'" method is deprecated and will be removed soon. Use ""'+r+'" instead.')}e.prototype[n]=s,e.prototype[o]=s,e.prototype[a]=s})},afterSetFilter(){this._filterUpToDate=!1}};function _Se(e){var t=[],n=e.length,r=ce,i,o;for(i=0;itypeof p=="number"?Math.floor(p):p)),o+=kSe+d.join(tI)+ESe)):(o+=s.property,t||(o+=ISe+s.val)),o+=LSe;return o}clearTrace(){this.traceArr=[]}_trace(t){var n=this.traceArr,r;n.push(t),r=n.length,r>=MSe&&n.shift()}reset(){var t=this.getCanvas().getPixelRatio();this.setTransform(1*t,0,0,1*t,0,0)}getCanvas(){return this.canvas}clear(t){var n=this.getCanvas();t?this.clearRect(t.x||0,t.y||0,t.width||0,t.height||0):this.clearRect(0,0,n.getWidth()/n.pixelRatio,n.getHeight()/n.pixelRatio)}_applyLineCap(t){var n=t.getLineCap();n&&this.setAttr("lineCap",n)}_applyOpacity(t){var n=t.getAbsoluteOpacity();n!==1&&this.setAttr("globalAlpha",n)}_applyLineJoin(t){var n=t.attrs.lineJoin;n&&this.setAttr("lineJoin",n)}setAttr(t,n){this._context[t]=n}arc(t,n,r,i,o,a){this._context.arc(t,n,r,i,o,a)}arcTo(t,n,r,i,o){this._context.arcTo(t,n,r,i,o)}beginPath(){this._context.beginPath()}bezierCurveTo(t,n,r,i,o,a){this._context.bezierCurveTo(t,n,r,i,o,a)}clearRect(t,n,r,i){this._context.clearRect(t,n,r,i)}clip(){this._context.clip()}closePath(){this._context.closePath()}createImageData(t,n){var r=arguments;if(r.length===2)return this._context.createImageData(t,n);if(r.length===1)return this._context.createImageData(t)}createLinearGradient(t,n,r,i){return this._context.createLinearGradient(t,n,r,i)}createPattern(t,n){return this._context.createPattern(t,n)}createRadialGradient(t,n,r,i,o,a){return this._context.createRadialGradient(t,n,r,i,o,a)}drawImage(t,n,r,i,o,a,s,l,d){var p=arguments,g=this._context;p.length===3?g.drawImage(t,n,r):p.length===5?g.drawImage(t,n,r,i,o):p.length===9&&g.drawImage(t,n,r,i,o,a,s,l,d)}ellipse(t,n,r,i,o,a,s,l){this._context.ellipse(t,n,r,i,o,a,s,l)}isPointInPath(t,n){return this._context.isPointInPath(t,n)}fill(t){t?this._context.fill(t):this._context.fill()}fillRect(t,n,r,i){this._context.fillRect(t,n,r,i)}strokeRect(t,n,r,i){this._context.strokeRect(t,n,r,i)}fillText(t,n,r,i){i?this._context.fillText(t,n,r,i):this._context.fillText(t,n,r)}measureText(t){return this._context.measureText(t)}getImageData(t,n,r,i){return this._context.getImageData(t,n,r,i)}lineTo(t,n){this._context.lineTo(t,n)}moveTo(t,n){this._context.moveTo(t,n)}rect(t,n,r,i){this._context.rect(t,n,r,i)}putImageData(t,n,r){this._context.putImageData(t,n,r)}quadraticCurveTo(t,n,r,i){this._context.quadraticCurveTo(t,n,r,i)}restore(){this._context.restore()}rotate(t){this._context.rotate(t)}save(){this._context.save()}scale(t,n){this._context.scale(t,n)}setLineDash(t){this._context.setLineDash?this._context.setLineDash(t):"mozDash"in this._context?this._context.mozDash=t:"webkitLineDash"in this._context&&(this._context.webkitLineDash=t)}getLineDash(){return this._context.getLineDash()}setTransform(t,n,r,i,o,a){this._context.setTransform(t,n,r,i,o,a)}stroke(t){t?this._context.stroke(t):this._context.stroke()}strokeText(t,n,r,i){this._context.strokeText(t,n,r,i)}transform(t,n,r,i,o,a){this._context.transform(t,n,r,i,o,a)}translate(t,n){this._context.translate(t,n)}_enableTrace(){var t=this,n=nI.length,r=this.setAttr,i,o,a=function(s){var l=t[s],d;t[s]=function(){return o=_Se(Array.prototype.slice.call(arguments,0)),d=l.apply(t,arguments),t._trace({method:s,args:o}),d}};for(i=0;i{t.dragStatus==="dragging"&&(e=!0)}),e},justDragged:!1,get node(){var e;return mn._dragElements.forEach(t=>{e=t.node}),e},_dragElements:new Map,_drag(e){const t=[];mn._dragElements.forEach((n,r)=>{const{node:i}=n,o=i.getStage();o.setPointersPositions(e),n.pointerId===void 0&&(n.pointerId=ce._getFirstPointerId(e));const a=o._changedPointerPositions.find(d=>d.id===n.pointerId);if(!!a){if(n.dragStatus!=="dragging"){var s=i.dragDistance(),l=Math.max(Math.abs(a.x-n.startPointerPos.x),Math.abs(a.y-n.startPointerPos.y));if(l{n.fire("dragmove",{type:"dragmove",target:n,evt:e},!0)})},_endDragBefore(e){const t=[];mn._dragElements.forEach(n=>{const{node:r}=n,i=r.getStage();if(e&&i.setPointersPositions(e),!i._changedPointerPositions.find(s=>s.id===n.pointerId))return;(n.dragStatus==="dragging"||n.dragStatus==="stopped")&&(mn.justDragged=!0,lt._mouseListenClick=!1,lt._touchListenClick=!1,lt._pointerListenClick=!1,n.dragStatus="stopped");const a=n.node.getLayer()||n.node instanceof lt.Stage&&n.node;a&&t.indexOf(a)===-1&&t.push(a)}),t.forEach(n=>{n.draw()})},_endDragAfter(e){mn._dragElements.forEach((t,n)=>{t.dragStatus==="stopped"&&t.node.fire("dragend",{type:"dragend",target:t.node,evt:e},!0),t.dragStatus!=="dragging"&&mn._dragElements.delete(n)})}};lt.isBrowser&&(window.addEventListener("mouseup",mn._endDragBefore,!0),window.addEventListener("touchend",mn._endDragBefore,!0),window.addEventListener("mousemove",mn._drag),window.addEventListener("touchmove",mn._drag),window.addEventListener("mouseup",mn._endDragAfter,!1),window.addEventListener("touchend",mn._endDragAfter,!1));var C5="absoluteOpacity",Ly="allEventListeners",Pu="absoluteTransform",rI="absoluteScale",vg="canvas",zSe="Change",$Se="children",FSe="konva",$C="listening",iI="mouseenter",oI="mouseleave",aI="set",sI="Shape",_5=" ",lI="stage",qc="transform",BSe="Stage",FC="visible",HSe=["xChange.konva","yChange.konva","scaleXChange.konva","scaleYChange.konva","skewXChange.konva","skewYChange.konva","rotationChange.konva","offsetXChange.konva","offsetYChange.konva","transformsEnabledChange.konva"].join(_5);let WSe=1;class We{constructor(t){this._id=WSe++,this.eventListeners={},this.attrs={},this.index=0,this._allEventListeners=null,this.parent=null,this._cache=new Map,this._attachedDepsListeners=new Map,this._lastPos=null,this._batchingTransformChange=!1,this._needClearTransformCache=!1,this._filterUpToDate=!1,this._isUnderCache=!1,this._dragEventId=null,this._shouldFireChangeEvents=!1,this.setAttrs(t),this._shouldFireChangeEvents=!0}hasChildren(){return!1}_clearCache(t){(t===qc||t===Pu)&&this._cache.get(t)?this._cache.get(t).dirty=!0:t?this._cache.delete(t):this._cache.clear()}_getCache(t,n){var r=this._cache.get(t),i=t===qc||t===Pu,o=r===void 0||i&&r.dirty===!0;return o&&(r=n.call(this),this._cache.set(t,r)),r}_calculate(t,n,r){if(!this._attachedDepsListeners.get(t)){const i=n.map(o=>o+"Change.konva").join(_5);this.on(i,()=>{this._clearCache(t)}),this._attachedDepsListeners.set(t,!0)}return this._getCache(t,r)}_getCanvasCache(){return this._cache.get(vg)}_clearSelfAndDescendantCache(t){this._clearCache(t),t===Pu&&this.fire("absoluteTransformChange")}clearCache(){return this._cache.delete(vg),this._clearSelfAndDescendantCache(),this._requestDraw(),this}cache(t){var n=t||{},r={};(n.x===void 0||n.y===void 0||n.width===void 0||n.height===void 0)&&(r=this.getClientRect({skipTransform:!0,relativeTo:this.getParent()}));var i=Math.ceil(n.width||r.width),o=Math.ceil(n.height||r.height),a=n.pixelRatio,s=n.x===void 0?Math.floor(r.x):n.x,l=n.y===void 0?Math.floor(r.y):n.y,d=n.offset||0,p=n.drawBorder||!1,g=n.hitCanvasPixelRatio||1;if(!i||!o){ce.error("Can not cache the node. Width or height of the node equals 0. Caching is skipped.");return}i+=d*2+1,o+=d*2+1,s-=d,l-=d;var m=new S0({pixelRatio:a,width:i,height:o}),y=new S0({pixelRatio:a,width:0,height:0}),b=new I7({pixelRatio:g,width:i,height:o}),S=m.getContext(),E=b.getContext();return b.isCache=!0,m.isCache=!0,this._cache.delete(vg),this._filterUpToDate=!1,n.imageSmoothingEnabled===!1&&(m.getContext()._context.imageSmoothingEnabled=!1,y.getContext()._context.imageSmoothingEnabled=!1),S.save(),E.save(),S.translate(-s,-l),E.translate(-s,-l),this._isUnderCache=!0,this._clearSelfAndDescendantCache(C5),this._clearSelfAndDescendantCache(rI),this.drawScene(m,this),this.drawHit(b,this),this._isUnderCache=!1,S.restore(),E.restore(),p&&(S.save(),S.beginPath(),S.rect(0,0,i,o),S.closePath(),S.setAttr("strokeStyle","red"),S.setAttr("lineWidth",5),S.stroke(),S.restore()),this._cache.set(vg,{scene:m,filter:y,hit:b,x:s,y:l}),this._requestDraw(),this}isCached(){return this._cache.has(vg)}getClientRect(t){throw new Error('abstract "getClientRect" method call')}_transformedRect(t,n){var r=[{x:t.x,y:t.y},{x:t.x+t.width,y:t.y},{x:t.x+t.width,y:t.y+t.height},{x:t.x,y:t.y+t.height}],i,o,a,s,l=this.getAbsoluteTransform(n);return r.forEach(function(d){var p=l.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),{x:i,y:o,width:a-i,height:s-o}}_drawCachedSceneCanvas(t){t.save(),t._applyOpacity(this),t._applyGlobalCompositeOperation(this);const n=this._getCanvasCache();t.translate(n.x,n.y);var r=this._getCachedSceneCanvas(),i=r.pixelRatio;t.drawImage(r._canvas,0,0,r.width/i,r.height/i),t.restore()}_drawCachedHitCanvas(t){var n=this._getCanvasCache(),r=n.hit;t.save(),t.translate(n.x,n.y),t.drawImage(r._canvas,0,0,r.width/r.pixelRatio,r.height/r.pixelRatio),t.restore()}_getCachedSceneCanvas(){var t=this.filters(),n=this._getCanvasCache(),r=n.scene,i=n.filter,o=i.getContext(),a,s,l,d;if(t){if(!this._filterUpToDate){var p=r.pixelRatio;i.setSize(r.width/r.pixelRatio,r.height/r.pixelRatio);try{for(a=t.length,o.clear(),o.drawImage(r._canvas,0,0,r.getWidth()/p,r.getHeight()/p),s=o.getImageData(0,0,i.getWidth(),i.getHeight()),l=0;l{var n,r;if(!t)return this;for(n in t)n!==$Se&&(r=aI+ce._capitalize(n),ce._isFunction(this[r])?this[r](t[n]):this._setAttr(n,t[n]))}),this}isListening(){return this._getCache($C,this._isListening)}_isListening(t){if(!this.listening())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isListening(t):!0}isVisible(){return this._getCache(FC,this._isVisible)}_isVisible(t){if(!this.visible())return!1;const r=this.getParent();return r&&r!==t&&this!==t?r._isVisible(t):!0}shouldDrawHit(t,n=!1){if(t)return this._isVisible(t)&&this._isListening(t);var r=this.getLayer(),i=!1;mn._dragElements.forEach(a=>{a.dragStatus==="dragging"&&(a.node.nodeType==="Stage"||a.node.getLayer()===r)&&(i=!0)});var o=!n&&!lt.hitOnDragEnabled&&i;return this.isListening()&&this.isVisible()&&!o}show(){return this.visible(!0),this}hide(){return this.visible(!1),this}getZIndex(){return this.index||0}getAbsoluteZIndex(){var t=this.getDepth(),n=this,r=0,i,o,a,s;function l(d){for(i=[],o=d.length,a=0;a0&&i[0].getDepth()<=t&&l(i)}return n.nodeType!==BSe&&l(n.getStage().getChildren()),r}getDepth(){for(var t=0,n=this.parent;n;)t++,n=n.parent;return t}_batchTransformChanges(t){this._batchingTransformChange=!0,t(),this._batchingTransformChange=!1,this._needClearTransformCache&&(this._clearCache(qc),this._clearSelfAndDescendantCache(Pu)),this._needClearTransformCache=!1}setPosition(t){return this._batchTransformChanges(()=>{this.x(t.x),this.y(t.y)}),this}getPosition(){return{x:this.x(),y:this.y()}}getRelativePointerPosition(){if(!this.getStage())return null;var t=this.getStage().getPointerPosition();if(!t)return null;var n=this.getAbsoluteTransform().copy();return n.invert(),n.point(t)}getAbsolutePosition(t){let n=!1,r=this.parent;for(;r;){if(r.isCached()){n=!0;break}r=r.parent}n&&!t&&(t=!0);var i=this.getAbsoluteTransform(t).getMatrix(),o=new ma,a=this.offset();return o.m=i.slice(),o.translate(a.x,a.y),o.getTranslation()}setAbsolutePosition(t){var n=this._clearTransform();this.attrs.x=n.x,this.attrs.y=n.y,delete n.x,delete n.y,this._clearCache(qc);var r=this._getAbsoluteTransform().copy();return r.invert(),r.translate(t.x,t.y),t={x:this.attrs.x+r.getTranslation().x,y:this.attrs.y+r.getTranslation().y},this._setTransform(n),this.setPosition({x:t.x,y:t.y}),this._clearCache(qc),this._clearSelfAndDescendantCache(Pu),this}_setTransform(t){var n;for(n in t)this.attrs[n]=t[n]}_clearTransform(){var t={x:this.x(),y:this.y(),rotation:this.rotation(),scaleX:this.scaleX(),scaleY:this.scaleY(),offsetX:this.offsetX(),offsetY:this.offsetY(),skewX:this.skewX(),skewY:this.skewY()};return this.attrs.x=0,this.attrs.y=0,this.attrs.rotation=0,this.attrs.scaleX=1,this.attrs.scaleY=1,this.attrs.offsetX=0,this.attrs.offsetY=0,this.attrs.skewX=0,this.attrs.skewY=0,t}move(t){var n=t.x,r=t.y,i=this.x(),o=this.y();return n!==void 0&&(i+=n),r!==void 0&&(o+=r),this.setPosition({x:i,y:o}),this}_eachAncestorReverse(t,n){var r=[],i=this.getParent(),o,a;if(!(n&&n._id===this._id)){for(r.unshift(this);i&&(!n||i._id!==n._id);)r.unshift(i),i=i.parent;for(o=r.length,a=0;a0?(this.parent.children.splice(t,1),this.parent.children.splice(t-1,0,this),this.parent._setChildrenIndices(),!0):!1}moveToBottom(){if(!this.parent)return ce.warn("Node has no parent. moveToBottom function is ignored."),!1;var t=this.index;return t>0?(this.parent.children.splice(t,1),this.parent.children.unshift(this),this.parent._setChildrenIndices(),!0):!1}setZIndex(t){if(!this.parent)return ce.warn("Node has no parent. zIndex parameter is ignored."),this;(t<0||t>=this.parent.children.length)&&ce.warn("Unexpected value "+t+" for zIndex property. zIndex is just index of a node in children of its parent. Expected value is from 0 to "+(this.parent.children.length-1)+".");var n=this.index;return this.parent.children.splice(n,1),this.parent.children.splice(t,0,this),this.parent._setChildrenIndices(),this}getAbsoluteOpacity(){return this._getCache(C5,this._getAbsoluteOpacity)}_getAbsoluteOpacity(){var t=this.opacity(),n=this.getParent();return n&&!n._isUnderCache&&(t*=n.getAbsoluteOpacity()),t}moveTo(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this}toObject(){var t={},n=this.getAttrs(),r,i,o,a,s;t.attrs={};for(r in n)i=n[r],s=ce.isObject(i)&&!ce._isPlainObject(i)&&!ce._isArray(i),!s&&(o=typeof this[r]=="function"&&this[r],delete n[r],a=o?o.call(this):null,n[r]=i,a!==i&&(t.attrs[r]=i));return t.className=this.getClassName(),ce._prepareToStringify(t)}toJSON(){return JSON.stringify(this.toObject())}getParent(){return this.parent}findAncestors(t,n,r){var i=[];n&&this._isMatch(t)&&i.push(this);for(var o=this.parent;o;){if(o===r)return i;o._isMatch(t)&&i.push(o),o=o.parent}return i}isAncestorOf(t){return!1}findAncestor(t,n,r){return this.findAncestors(t,n,r)[0]}_isMatch(t){if(!t)return!1;if(typeof t=="function")return t(this);var n=t.replace(/ /g,"").split(","),r=n.length,i,o;for(i=0;i{try{const i=t?.callback;i&&delete t.callback,ce._urlToImage(this.toDataURL(t),function(o){n(o),i?.(o)})}catch(i){r(i)}})}toBlob(t){return new Promise((n,r)=>{try{const i=t?.callback;i&&delete t.callback,this.toCanvas(t).toBlob(o=>{n(o),i?.(o)})}catch(i){r(i)}})}setSize(t){return this.width(t.width),this.height(t.height),this}getSize(){return{width:this.width(),height:this.height()}}getClassName(){return this.className||this.nodeType}getType(){return this.nodeType}getDragDistance(){return this.attrs.dragDistance!==void 0?this.attrs.dragDistance:this.parent?this.parent.getDragDistance():lt.dragDistance}_off(t,n,r){var i=this.eventListeners[t],o,a,s;for(o=0;o=0;if(!!r&&!this.isDragging()){var i=!1;mn._dragElements.forEach(o=>{this.isAncestorOf(o.node)&&(i=!0)}),i||this._createDragElement(t)}})}_dragChange(){if(this.attrs.draggable)this._listenDrag();else{this._dragCleanup();var t=this.getStage();if(!t)return;const n=mn._dragElements.get(this._id),r=n&&n.dragStatus==="dragging",i=n&&n.dragStatus==="ready";r?this.stopDrag():i&&mn._dragElements.delete(this._id)}}_dragCleanup(){this.off("mousedown.konva"),this.off("touchstart.konva")}isClientRectOnScreen(t={x:0,y:0}){const n=this.getStage();if(!n)return!1;const r={x:-t.x,y:-t.y,width:n.width()+2*t.x,height:n.height()+2*t.y};return ce.haveIntersection(r,this.getClientRect())}static create(t,n){return ce._isString(t)&&(t=JSON.parse(t)),this._createNode(t,n)}static _createNode(t,n){var r=We.prototype.getClassName.call(t),i=t.children,o,a,s;n&&(t.attrs.container=n),lt[r]||(ce.warn('Can not find a node with class name "'+r+'". Fallback to "Shape".'),r="Shape");const l=lt[r];if(o=new l(t.attrs),i)for(a=i.length,s=0;s0}removeChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.remove()}),this.children=[],this._requestDraw(),this}destroyChildren(){return this.getChildren().forEach(t=>{t.parent=null,t.index=0,t.destroy()}),this.children=[],this._requestDraw(),this}add(...t){if(arguments.length>1){for(var n=0;n0?n[0]:void 0}_generalFind(t,n){var r=[];return this._descendants(i=>{const o=i._isMatch(t);return o&&r.push(i),!!(o&&n)}),r}_descendants(t){let n=!1;const r=this.getChildren();for(const i of r){if(n=t(i),n)return!0;if(!!i.hasChildren()&&(n=i._descendants(t),n))return!0}return!1}toObject(){var t=We.prototype.toObject.call(this);return t.children=[],this.getChildren().forEach(n=>{t.children.push(n.toObject())}),t}isAncestorOf(t){for(var n=t.getParent();n;){if(n._id===this._id)return!0;n=n.getParent()}return!1}clone(t){var n=We.prototype.clone.call(this,t);return this.getChildren().forEach(function(r){n.add(r.clone())}),n}getAllIntersections(t){var n=[];return this.find("Shape").forEach(function(r){r.isVisible()&&r.intersects(t)&&n.push(r)}),n}_clearSelfAndDescendantCache(t){var n;super._clearSelfAndDescendantCache(t),!this.isCached()&&((n=this.children)===null||n===void 0||n.forEach(function(r){r._clearSelfAndDescendantCache(t)}))}_setChildrenIndices(){var t;(t=this.children)===null||t===void 0||t.forEach(function(n,r){n.index=r}),this._requestDraw()}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas(),o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.scene,l=i&&i.isCache;if(!this.isVisible()&&!l)return this;if(s){o.save();var d=this.getAbsoluteTransform(n).getMatrix();o.transform(d[0],d[1],d[2],d[3],d[4],d[5]),this._drawCachedSceneCanvas(o),o.restore()}else this._drawChildren("drawScene",i,n);return this}drawHit(t,n){if(!this.shouldDrawHit(n))return this;var r=this.getLayer(),i=t||r&&r.hitCanvas,o=i&&i.getContext(),a=this._getCanvasCache(),s=a&&a.hit;if(s){o.save();var l=this.getAbsoluteTransform(n).getMatrix();o.transform(l[0],l[1],l[2],l[3],l[4],l[5]),this._drawCachedHitCanvas(o),o.restore()}else this._drawChildren("drawHit",i,n);return this}_drawChildren(t,n,r){var i,o=n&&n.getContext(),a=this.clipWidth(),s=this.clipHeight(),l=this.clipFunc(),d=a&&s||l;const p=r===this;if(d){o.save();var g=this.getAbsoluteTransform(r),m=g.getMatrix();if(o.transform(m[0],m[1],m[2],m[3],m[4],m[5]),o.beginPath(),l)l.call(this,o,this);else{var y=this.clipX(),b=this.clipY();o.rect(y,b,a,s)}o.clip(),m=g.copy().invert().getMatrix(),o.transform(m[0],m[1],m[2],m[3],m[4],m[5])}var S=!p&&this.globalCompositeOperation()!=="source-over"&&t==="drawScene";S&&(o.save(),o._applyGlobalCompositeOperation(this)),(i=this.children)===null||i===void 0||i.forEach(function(E){E[t](n,r)}),S&&o.restore(),d&&o.restore()}getClientRect(t){var n;t=t||{};var r=t.skipTransform,i=t.relativeTo,o,a,s,l,d={x:1/0,y:1/0,width:0,height:0},p=this;(n=this.children)===null||n===void 0||n.forEach(function(S){if(!!S.visible()){var E=S.getClientRect({relativeTo:p,skipShadow:t.skipShadow,skipStroke:t.skipStroke});E.width===0&&E.height===0||(o===void 0?(o=E.x,a=E.y,s=E.x+E.width,l=E.y+E.height):(o=Math.min(o,E.x),a=Math.min(a,E.y),s=Math.max(s,E.x+E.width),l=Math.max(l,E.y+E.height)))}});for(var g=this.find("Shape"),m=!1,y=0;ye.indexOf("pointer")>=0?"pointer":e.indexOf("touch")>=0?"touch":"mouse",Ap=e=>{const t=$g(e);if(t==="pointer")return lt.pointerEventsEnabled&&ew.pointer;if(t==="touch")return ew.touch;if(t==="mouse")return ew.mouse};function cI(e={}){return(e.clipFunc||e.clipWidth||e.clipHeight)&&ce.warn("Stage does not support clipping. Please use clip for Layers or Groups."),e}const YSe="Pointer position is missing and not registered by the stage. Looks like it is outside of the stage container. You can set it manually from event: stage.setPointersPositions(event);",k5=[];class Wb extends Sa{constructor(t){super(cI(t)),this._pointerPositions=[],this._changedPointerPositions=[],this._buildDOM(),this._bindContentEvents(),k5.push(this),this.on("widthChange.konva heightChange.konva",this._resizeDOM),this.on("visibleChange.konva",this._checkVisibility),this.on("clipWidthChange.konva clipHeightChange.konva clipFuncChange.konva",()=>{cI(this.attrs)}),this._checkVisibility()}_validateAdd(t){const n=t.getType()==="Layer",r=t.getType()==="FastLayer";n||r||ce.throw("You may only add layers to the stage.")}_checkVisibility(){if(!this.content)return;const t=this.visible()?"":"none";this.content.style.display=t}setContainer(t){if(typeof t===USe){if(t.charAt(0)==="."){var n=t.slice(1);t=document.getElementsByClassName(n)[0]}else{var r;t.charAt(0)!=="#"?r=t:r=t.slice(1),t=document.getElementById(r)}if(!t)throw"Can not find container in document with id "+r}return this._setAttr("container",t),this.content&&(this.content.parentElement&&this.content.parentElement.removeChild(this.content),t.appendChild(this.content)),this}shouldDrawHit(){return!0}clear(){var t=this.children,n=t.length,r;for(r=0;r-1&&k5.splice(n,1),this}getPointerPosition(){const t=this._pointerPositions[0]||this._changedPointerPositions[0];return t?{x:t.x,y:t.y}:(ce.warn(YSe),null)}_getPointerById(t){return this._pointerPositions.find(n=>n.id===t)}getPointersPositions(){return this._pointerPositions}getStage(){return this}getContent(){return this.content}_toKonvaCanvas(t){t=t||{},t.x=t.x||0,t.y=t.y||0,t.width=t.width||this.width(),t.height=t.height||this.height();var n=new S0({width:t.width,height:t.height,pixelRatio:t.pixelRatio||1}),r=n.getContext()._context,i=this.children;return(t.x||t.y)&&r.translate(-1*t.x,-1*t.y),i.forEach(function(o){if(!!o.isVisible()){var a=o._toKonvaCanvas(t);r.drawImage(a._canvas,t.x,t.y,a.getWidth()/a.getPixelRatio(),a.getHeight()/a.getPixelRatio())}}),n}getIntersection(t){if(!t)return null;var n=this.children,r=n.length,i=r-1,o;for(o=i;o>=0;o--){const a=n[o].getIntersection(t);if(a)return a}return null}_resizeDOM(){var t=this.width(),n=this.height();this.content&&(this.content.style.width=t+uI,this.content.style.height=n+uI),this.bufferCanvas.setSize(t,n),this.bufferHitCanvas.setSize(t,n),this.children.forEach(r=>{r.setSize({width:t,height:n}),r.draw()})}add(t,...n){if(arguments.length>1){for(var r=0;rqSe&&ce.warn("The stage has "+i+" layers. Recommended maximum number of layers is 3-5. Adding more layers into the stage may drop the performance. Rethink your tree structure, you can use Konva.Group."),t.setSize({width:this.width(),height:this.height()}),t.draw(),lt.isBrowser&&this.content.appendChild(t.canvas._canvas),this}getParent(){return null}getLayer(){return null}hasPointerCapture(t){return yH(t,this)}setPointerCapture(t){bH(t,this)}releaseCapture(t){hm(t)}getLayers(){return this.children}_bindContentEvents(){!lt.isBrowser||KSe.forEach(([t,n])=>{this.content.addEventListener(t,r=>{this[n](r)},{passive:!1})})}_pointerenter(t){this.setPointersPositions(t);const n=Ap(t.type);this._fire(n.pointerenter,{evt:t,target:this,currentTarget:this})}_pointerover(t){this.setPointersPositions(t);const n=Ap(t.type);this._fire(n.pointerover,{evt:t,target:this,currentTarget:this})}_getTargetShape(t){let n=this[t+"targetShape"];return n&&!n.getStage()&&(n=null),n}_pointerleave(t){const n=Ap(t.type),r=$g(t.type);if(!!n){this.setPointersPositions(t);var i=this._getTargetShape(r),o=!mn.isDragging||lt.hitOnDragEnabled;i&&o?(i._fireAndBubble(n.pointerout,{evt:t}),i._fireAndBubble(n.pointerleave,{evt:t}),this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this[r+"targetShape"]=null):o&&(this._fire(n.pointerleave,{evt:t,target:this,currentTarget:this}),this._fire(n.pointerout,{evt:t,target:this,currentTarget:this})),this.pointerPos=void 0,this._pointerPositions=[]}}_pointerdown(t){const n=Ap(t.type),r=$g(t.type);if(!!n){this.setPointersPositions(t);var i=!1;this._changedPointerPositions.forEach(o=>{var a=this.getIntersection(o);if(mn.justDragged=!1,lt["_"+r+"ListenClick"]=!0,!(a&&a.isListening()))return;lt.capturePointerEventsEnabled&&a.setPointerCapture(o.id),this[r+"ClickStartShape"]=a,a._fireAndBubble(n.pointerdown,{evt:t,pointerId:o.id}),i=!0;const l=t.type.indexOf("touch")>=0;a.preventDefault()&&t.cancelable&&l&&t.preventDefault()}),i||this._fire(n.pointerdown,{evt:t,target:this,currentTarget:this,pointerId:this._pointerPositions[0].id})}}_pointermove(t){const n=Ap(t.type),r=$g(t.type);if(!n)return;mn.isDragging&&mn.node.preventDefault()&&t.cancelable&&t.preventDefault(),this.setPointersPositions(t);var i=!mn.isDragging||lt.hitOnDragEnabled;if(!i)return;var o={};let a=!1;var s=this._getTargetShape(r);this._changedPointerPositions.forEach(l=>{const d=JS(l.id)||this.getIntersection(l),p=l.id,g={evt:t,pointerId:p};var m=s!==d;if(m&&s&&(s._fireAndBubble(n.pointerout,Object.assign({},g),d),s._fireAndBubble(n.pointerleave,Object.assign({},g),d)),d){if(o[d._id])return;o[d._id]=!0}d&&d.isListening()?(a=!0,m&&(d._fireAndBubble(n.pointerover,Object.assign({},g),s),d._fireAndBubble(n.pointerenter,Object.assign({},g),s),this[r+"targetShape"]=d),d._fireAndBubble(n.pointermove,Object.assign({},g))):s&&(this._fire(n.pointerover,{evt:t,target:this,currentTarget:this,pointerId:p}),this[r+"targetShape"]=null)}),a||this._fire(n.pointermove,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id})}_pointerup(t){const n=Ap(t.type),r=$g(t.type);if(!n)return;this.setPointersPositions(t);const i=this[r+"ClickStartShape"],o=this[r+"ClickEndShape"];var a={};let s=!1;this._changedPointerPositions.forEach(l=>{const d=JS(l.id)||this.getIntersection(l);if(d){if(d.releaseCapture(l.id),a[d._id])return;a[d._id]=!0}const p=l.id,g={evt:t,pointerId:p};let m=!1;lt["_"+r+"InDblClickWindow"]?(m=!0,clearTimeout(this[r+"DblTimeout"])):mn.justDragged||(lt["_"+r+"InDblClickWindow"]=!0,clearTimeout(this[r+"DblTimeout"])),this[r+"DblTimeout"]=setTimeout(function(){lt["_"+r+"InDblClickWindow"]=!1},lt.dblClickWindow),d&&d.isListening()?(s=!0,this[r+"ClickEndShape"]=d,d._fireAndBubble(n.pointerup,Object.assign({},g)),lt["_"+r+"ListenClick"]&&i&&i===d&&(d._fireAndBubble(n.pointerclick,Object.assign({},g)),m&&o&&o===d&&d._fireAndBubble(n.pointerdblclick,Object.assign({},g)))):(this[r+"ClickEndShape"]=null,lt["_"+r+"ListenClick"]&&this._fire(n.pointerclick,{evt:t,target:this,currentTarget:this,pointerId:p}),m&&this._fire(n.pointerdblclick,{evt:t,target:this,currentTarget:this,pointerId:p}))}),s||this._fire(n.pointerup,{evt:t,target:this,currentTarget:this,pointerId:this._changedPointerPositions[0].id}),lt["_"+r+"ListenClick"]=!1,t.cancelable&&r!=="touch"&&t.preventDefault()}_contextmenu(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(BC,{evt:t}):this._fire(BC,{evt:t,target:this,currentTarget:this})}_wheel(t){this.setPointersPositions(t);var n=this.getIntersection(this.getPointerPosition());n&&n.isListening()?n._fireAndBubble(HC,{evt:t}):this._fire(HC,{evt:t,target:this,currentTarget:this})}_pointercancel(t){this.setPointersPositions(t);const n=JS(t.pointerId)||this.getIntersection(this.getPointerPosition());n&&n._fireAndBubble(Qp,R7(t)),hm(t.pointerId)}_lostpointercapture(t){hm(t.pointerId)}setPointersPositions(t){var n=this._getContentPosition(),r=null,i=null;t=t||window.event,t.touches!==void 0?(this._pointerPositions=[],this._changedPointerPositions=[],Array.prototype.forEach.call(t.touches,o=>{this._pointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})}),Array.prototype.forEach.call(t.changedTouches||t.touches,o=>{this._changedPointerPositions.push({id:o.identifier,x:(o.clientX-n.left)/n.scaleX,y:(o.clientY-n.top)/n.scaleY})})):(r=(t.clientX-n.left)/n.scaleX,i=(t.clientY-n.top)/n.scaleY,this.pointerPos={x:r,y:i},this._pointerPositions=[{x:r,y:i,id:ce._getFirstPointerId(t)}],this._changedPointerPositions=[{x:r,y:i,id:ce._getFirstPointerId(t)}])}_setPointerPosition(t){ce.warn('Method _setPointerPosition is deprecated. Use "stage.setPointersPositions(event)" instead.'),this.setPointersPositions(t)}_getContentPosition(){if(!this.content||!this.content.getBoundingClientRect)return{top:0,left:0,scaleX:1,scaleY:1};var t=this.content.getBoundingClientRect();return{top:t.top,left:t.left,scaleX:t.width/this.content.clientWidth||1,scaleY:t.height/this.content.clientHeight||1}}_buildDOM(){if(this.bufferCanvas=new S0({width:this.width(),height:this.height()}),this.bufferHitCanvas=new I7({pixelRatio:1,width:this.width(),height:this.height()}),!!lt.isBrowser){var t=this.container();if(!t)throw"Stage has no container. A container is required.";t.innerHTML="",this.content=document.createElement("div"),this.content.style.position="relative",this.content.style.userSelect="none",this.content.className="konvajs-content",this.content.setAttribute("role","presentation"),t.appendChild(this.content),this._resizeDOM()}}cache(){return ce.warn("Cache function is not allowed for stage. You may use cache only for layers, groups and shapes."),this}clearCache(){return this}batchDraw(){return this.getChildren().forEach(function(t){t.batchDraw()}),this}}Wb.prototype.nodeType=VSe;wr(Wb);Z.addGetterSetter(Wb,"container");var AH="hasShadow",IH="shadowRGBA",RH="patternImage",MH="linearGradient",OH="radialGradient";let Oy;function tw(){return Oy||(Oy=ce.createCanvasElement().getContext("2d"),Oy)}const pm={};function ZSe(e){e.fill()}function XSe(e){e.stroke()}function QSe(e){e.fill()}function JSe(e){e.stroke()}function ewe(){this._clearCache(AH)}function twe(){this._clearCache(IH)}function nwe(){this._clearCache(RH)}function rwe(){this._clearCache(MH)}function iwe(){this._clearCache(OH)}class De extends We{constructor(t){super(t);let n;for(;n=ce.getRandomColor(),!(n&&!(n in pm)););this.colorKey=n,pm[n]=this}getContext(){return ce.warn("shape.getContext() method is deprecated. Please do not use it."),this.getLayer().getContext()}getCanvas(){return ce.warn("shape.getCanvas() method is deprecated. Please do not use it."),this.getLayer().getCanvas()}getSceneFunc(){return this.attrs.sceneFunc||this._sceneFunc}getHitFunc(){return this.attrs.hitFunc||this._hitFunc}hasShadow(){return this._getCache(AH,this._hasShadow)}_hasShadow(){return this.shadowEnabled()&&this.shadowOpacity()!==0&&!!(this.shadowColor()||this.shadowBlur()||this.shadowOffsetX()||this.shadowOffsetY())}_getFillPattern(){return this._getCache(RH,this.__getFillPattern)}__getFillPattern(){if(this.fillPatternImage()){var t=tw();const n=t.createPattern(this.fillPatternImage(),this.fillPatternRepeat()||"repeat");if(n&&n.setTransform){const r=new ma;r.translate(this.fillPatternX(),this.fillPatternY()),r.rotate(lt.getAngle(this.fillPatternRotation())),r.scale(this.fillPatternScaleX(),this.fillPatternScaleY()),r.translate(-1*this.fillPatternOffsetX(),-1*this.fillPatternOffsetY());const i=r.getMatrix(),o=typeof DOMMatrix>"u"?{a:i[0],b:i[1],c:i[2],d:i[3],e:i[4],f:i[5]}:new DOMMatrix(i);n.setTransform(o)}return n}}_getLinearGradient(){return this._getCache(MH,this.__getLinearGradient)}__getLinearGradient(){var t=this.fillLinearGradientColorStops();if(t){for(var n=tw(),r=this.fillLinearGradientStartPoint(),i=this.fillLinearGradientEndPoint(),o=n.createLinearGradient(r.x,r.y,i.x,i.y),a=0;athis.fillEnabled()&&!!(this.fill()||this.fillPatternImage()||this.fillLinearGradientColorStops()||this.fillRadialGradientColorStops()))}hasStroke(){return this._calculate("hasStroke",["strokeEnabled","strokeWidth","stroke","strokeLinearGradientColorStops"],()=>this.strokeEnabled()&&this.strokeWidth()&&!!(this.stroke()||this.strokeLinearGradientColorStops()))}hasHitStroke(){const t=this.hitStrokeWidth();return t==="auto"?this.hasStroke():this.strokeEnabled()&&!!t}intersects(t){var n=this.getStage(),r=n.bufferHitCanvas,i;return r.getContext().clear(),this.drawHit(r,null,!0),i=r.context.getImageData(Math.round(t.x),Math.round(t.y),1,1).data,i[3]>0}destroy(){return We.prototype.destroy.call(this),delete pm[this.colorKey],delete this.colorKey,this}_useBufferCanvas(t){var n;if(!this.getStage()||!((n=this.attrs.perfectDrawEnabled)!==null&&n!==void 0?n:!0))return!1;const i=t||this.hasFill(),o=this.hasStroke(),a=this.getAbsoluteOpacity()!==1;if(i&&o&&a)return!0;const s=this.hasShadow(),l=this.shadowForStrokeEnabled();return!!(i&&o&&s&&l)}setStrokeHitEnabled(t){ce.warn("strokeHitEnabled property is deprecated. Please use hitStrokeWidth instead."),t?this.hitStrokeWidth("auto"):this.hitStrokeWidth(0)}getStrokeHitEnabled(){return this.hitStrokeWidth()!==0}getSelfRect(){var t=this.size();return{x:this._centroid?-t.width/2:0,y:this._centroid?-t.height/2:0,width:t.width,height:t.height}}getClientRect(t={}){const n=t.skipTransform,r=t.relativeTo,i=this.getSelfRect(),a=!t.skipStroke&&this.hasStroke()&&this.strokeWidth()||0,s=i.width+a,l=i.height+a,d=!t.skipShadow&&this.hasShadow(),p=d?this.shadowOffsetX():0,g=d?this.shadowOffsetY():0,m=s+Math.abs(p),y=l+Math.abs(g),b=d&&this.shadowBlur()||0,S=m+b*2,E=y+b*2,P={width:S,height:E,x:-(a/2+b)+Math.min(p,0)+i.x,y:-(a/2+b)+Math.min(g,0)+i.y};return n?P:this._transformedRect(P,r)}drawScene(t,n){var r=this.getLayer(),i=t||r.getCanvas(),o=i.getContext(),a=this._getCanvasCache(),s=this.getSceneFunc(),l=this.hasShadow(),d,p,g,m=i.isCache,y=n===this;if(!this.isVisible()&&!y)return this;if(a){o.save();var b=this.getAbsoluteTransform(n).getMatrix();return o.transform(b[0],b[1],b[2],b[3],b[4],b[5]),this._drawCachedSceneCanvas(o),o.restore(),this}if(!s)return this;if(o.save(),this._useBufferCanvas()&&!m){d=this.getStage(),p=d.bufferCanvas,g=p.getContext(),g.clear(),g.save(),g._applyLineJoin(this);var S=this.getAbsoluteTransform(n).getMatrix();g.transform(S[0],S[1],S[2],S[3],S[4],S[5]),s.call(this,g,this),g.restore();var E=p.pixelRatio;l&&o._applyShadow(this),o._applyOpacity(this),o._applyGlobalCompositeOperation(this),o.drawImage(p._canvas,0,0,p.width/E,p.height/E)}else{if(o._applyLineJoin(this),!y){var S=this.getAbsoluteTransform(n).getMatrix();o.transform(S[0],S[1],S[2],S[3],S[4],S[5]),o._applyOpacity(this),o._applyGlobalCompositeOperation(this)}l&&o._applyShadow(this),s.call(this,o,this)}return o.restore(),this}drawHit(t,n,r=!1){if(!this.shouldDrawHit(n,r))return this;var i=this.getLayer(),o=t||i.hitCanvas,a=o&&o.getContext(),s=this.hitFunc()||this.sceneFunc(),l=this._getCanvasCache(),d=l&&l.hit;if(this.colorKey||ce.warn("Looks like your canvas has a destroyed shape in it. Do not reuse shape after you destroyed it. If you want to reuse shape you should call remove() instead of destroy()"),d){a.save();var p=this.getAbsoluteTransform(n).getMatrix();return a.transform(p[0],p[1],p[2],p[3],p[4],p[5]),this._drawCachedHitCanvas(a),a.restore(),this}if(!s)return this;if(a.save(),a._applyLineJoin(this),!(this===n)){var m=this.getAbsoluteTransform(n).getMatrix();a.transform(m[0],m[1],m[2],m[3],m[4],m[5])}return s.call(this,a,this),a.restore(),this}drawHitFromCache(t=0){var n=this._getCanvasCache(),r=this._getCachedSceneCanvas(),i=n.hit,o=i.getContext(),a=i.getWidth(),s=i.getHeight(),l,d,p,g,m,y;o.clear(),o.drawImage(r._canvas,0,0,a,s);try{for(l=o.getImageData(0,0,a,s),d=l.data,p=d.length,g=ce._hexToRgb(this.colorKey),m=0;mt?(d[m]=g.r,d[m+1]=g.g,d[m+2]=g.b,d[m+3]=255):d[m+3]=0;o.putImageData(l,0,0)}catch(b){ce.error("Unable to draw hit graph from cached scene canvas. "+b.message)}return this}hasPointerCapture(t){return yH(t,this)}setPointerCapture(t){bH(t,this)}releaseCapture(t){hm(t)}}De.prototype._fillFunc=ZSe;De.prototype._strokeFunc=XSe;De.prototype._fillFuncHit=QSe;De.prototype._strokeFuncHit=JSe;De.prototype._centroid=!1;De.prototype.nodeType="Shape";wr(De);De.prototype.eventListeners={};De.prototype.on.call(De.prototype,"shadowColorChange.konva shadowBlurChange.konva shadowOffsetChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",ewe);De.prototype.on.call(De.prototype,"shadowColorChange.konva shadowOpacityChange.konva shadowEnabledChange.konva",twe);De.prototype.on.call(De.prototype,"fillPriorityChange.konva fillPatternImageChange.konva fillPatternRepeatChange.konva fillPatternScaleXChange.konva fillPatternScaleYChange.konva fillPatternOffsetXChange.konva fillPatternOffsetYChange.konva fillPatternXChange.konva fillPatternYChange.konva fillPatternRotationChange.konva",nwe);De.prototype.on.call(De.prototype,"fillPriorityChange.konva fillLinearGradientColorStopsChange.konva fillLinearGradientStartPointXChange.konva fillLinearGradientStartPointYChange.konva fillLinearGradientEndPointXChange.konva fillLinearGradientEndPointYChange.konva",rwe);De.prototype.on.call(De.prototype,"fillPriorityChange.konva fillRadialGradientColorStopsChange.konva fillRadialGradientStartPointXChange.konva fillRadialGradientStartPointYChange.konva fillRadialGradientEndPointXChange.konva fillRadialGradientEndPointYChange.konva fillRadialGradientStartRadiusChange.konva fillRadialGradientEndRadiusChange.konva",iwe);Z.addGetterSetter(De,"stroke",void 0,mH());Z.addGetterSetter(De,"strokeWidth",2,He());Z.addGetterSetter(De,"fillAfterStrokeEnabled",!1);Z.addGetterSetter(De,"hitStrokeWidth","auto",A7());Z.addGetterSetter(De,"strokeHitEnabled",!0,Us());Z.addGetterSetter(De,"perfectDrawEnabled",!0,Us());Z.addGetterSetter(De,"shadowForStrokeEnabled",!0,Us());Z.addGetterSetter(De,"lineJoin");Z.addGetterSetter(De,"lineCap");Z.addGetterSetter(De,"sceneFunc");Z.addGetterSetter(De,"hitFunc");Z.addGetterSetter(De,"dash");Z.addGetterSetter(De,"dashOffset",0,He());Z.addGetterSetter(De,"shadowColor",void 0,s1());Z.addGetterSetter(De,"shadowBlur",0,He());Z.addGetterSetter(De,"shadowOpacity",1,He());Z.addComponentsGetterSetter(De,"shadowOffset",["x","y"]);Z.addGetterSetter(De,"shadowOffsetX",0,He());Z.addGetterSetter(De,"shadowOffsetY",0,He());Z.addGetterSetter(De,"fillPatternImage");Z.addGetterSetter(De,"fill",void 0,mH());Z.addGetterSetter(De,"fillPatternX",0,He());Z.addGetterSetter(De,"fillPatternY",0,He());Z.addGetterSetter(De,"fillLinearGradientColorStops");Z.addGetterSetter(De,"strokeLinearGradientColorStops");Z.addGetterSetter(De,"fillRadialGradientStartRadius",0);Z.addGetterSetter(De,"fillRadialGradientEndRadius",0);Z.addGetterSetter(De,"fillRadialGradientColorStops");Z.addGetterSetter(De,"fillPatternRepeat","repeat");Z.addGetterSetter(De,"fillEnabled",!0);Z.addGetterSetter(De,"strokeEnabled",!0);Z.addGetterSetter(De,"shadowEnabled",!0);Z.addGetterSetter(De,"dashEnabled",!0);Z.addGetterSetter(De,"strokeScaleEnabled",!0);Z.addGetterSetter(De,"fillPriority","color");Z.addComponentsGetterSetter(De,"fillPatternOffset",["x","y"]);Z.addGetterSetter(De,"fillPatternOffsetX",0,He());Z.addGetterSetter(De,"fillPatternOffsetY",0,He());Z.addComponentsGetterSetter(De,"fillPatternScale",["x","y"]);Z.addGetterSetter(De,"fillPatternScaleX",1,He());Z.addGetterSetter(De,"fillPatternScaleY",1,He());Z.addComponentsGetterSetter(De,"fillLinearGradientStartPoint",["x","y"]);Z.addComponentsGetterSetter(De,"strokeLinearGradientStartPoint",["x","y"]);Z.addGetterSetter(De,"fillLinearGradientStartPointX",0);Z.addGetterSetter(De,"strokeLinearGradientStartPointX",0);Z.addGetterSetter(De,"fillLinearGradientStartPointY",0);Z.addGetterSetter(De,"strokeLinearGradientStartPointY",0);Z.addComponentsGetterSetter(De,"fillLinearGradientEndPoint",["x","y"]);Z.addComponentsGetterSetter(De,"strokeLinearGradientEndPoint",["x","y"]);Z.addGetterSetter(De,"fillLinearGradientEndPointX",0);Z.addGetterSetter(De,"strokeLinearGradientEndPointX",0);Z.addGetterSetter(De,"fillLinearGradientEndPointY",0);Z.addGetterSetter(De,"strokeLinearGradientEndPointY",0);Z.addComponentsGetterSetter(De,"fillRadialGradientStartPoint",["x","y"]);Z.addGetterSetter(De,"fillRadialGradientStartPointX",0);Z.addGetterSetter(De,"fillRadialGradientStartPointY",0);Z.addComponentsGetterSetter(De,"fillRadialGradientEndPoint",["x","y"]);Z.addGetterSetter(De,"fillRadialGradientEndPointX",0);Z.addGetterSetter(De,"fillRadialGradientEndPointY",0);Z.addGetterSetter(De,"fillPatternRotation",0);Z.backCompat(De,{dashArray:"dash",getDashArray:"getDash",setDashArray:"getDash",drawFunc:"sceneFunc",getDrawFunc:"getSceneFunc",setDrawFunc:"setSceneFunc",drawHitFunc:"hitFunc",getDrawHitFunc:"getHitFunc",setDrawHitFunc:"setHitFunc"});var owe="#",awe="beforeDraw",swe="draw",NH=[{x:0,y:0},{x:-1,y:-1},{x:1,y:-1},{x:1,y:1},{x:-1,y:1}],lwe=NH.length;class Th extends Sa{constructor(t){super(t),this.canvas=new S0,this.hitCanvas=new I7({pixelRatio:1}),this._waitingForDraw=!1,this.on("visibleChange.konva",this._checkVisibility),this._checkVisibility(),this.on("imageSmoothingEnabledChange.konva",this._setSmoothEnabled),this._setSmoothEnabled()}createPNGStream(){return this.canvas._canvas.createPNGStream()}getCanvas(){return this.canvas}getNativeCanvasElement(){return this.canvas._canvas}getHitCanvas(){return this.hitCanvas}getContext(){return this.getCanvas().getContext()}clear(t){return this.getContext().clear(t),this.getHitCanvas().getContext().clear(t),this}setZIndex(t){super.setZIndex(t);var n=this.getStage();return n&&n.content&&(n.content.removeChild(this.getNativeCanvasElement()),t{this.draw(),this._waitingForDraw=!1})),this}getIntersection(t){if(!this.isListening()||!this.isVisible())return null;for(var n=1,r=!1;;){for(let i=0;i0)return{antialiased:!0};return{}}drawScene(t,n){var r=this.getLayer(),i=t||r&&r.getCanvas();return this._fire(awe,{node:this}),this.clearBeforeDraw()&&i.getContext().clear(),Sa.prototype.drawScene.call(this,i,n),this._fire(swe,{node:this}),this}drawHit(t,n){var r=this.getLayer(),i=t||r&&r.hitCanvas;return r&&r.clearBeforeDraw()&&r.getHitCanvas().getContext().clear(),Sa.prototype.drawHit.call(this,i,n),this}enableHitGraph(){return this.hitGraphEnabled(!0),this}disableHitGraph(){return this.hitGraphEnabled(!1),this}setHitGraphEnabled(t){ce.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening(t)}getHitGraphEnabled(t){return ce.warn("hitGraphEnabled method is deprecated. Please use layer.listening() instead."),this.listening()}toggleHitCanvas(){if(!(!this.parent||!this.parent.content)){var t=this.parent,n=!!this.hitCanvas._canvas.parentNode;n?t.content.removeChild(this.hitCanvas._canvas):t.content.appendChild(this.hitCanvas._canvas)}}}Th.prototype.nodeType="Layer";wr(Th);Z.addGetterSetter(Th,"imageSmoothingEnabled",!0);Z.addGetterSetter(Th,"clearBeforeDraw",!0);Z.addGetterSetter(Th,"hitGraphEnabled",!0,Us());class M7 extends Th{constructor(t){super(t),this.listening(!1),ce.warn('Konva.Fast layer is deprecated. Please use "new Konva.Layer({ listening: false })" instead.')}}M7.prototype.nodeType="FastLayer";wr(M7);class H0 extends Sa{_validateAdd(t){var n=t.getType();n!=="Group"&&n!=="Shape"&&ce.throw("You may only add groups and shapes to groups.")}}H0.prototype.nodeType="Group";wr(H0);var nw=function(){return x0.performance&&x0.performance.now?function(){return x0.performance.now()}:function(){return new Date().getTime()}}();class Qa{constructor(t,n){this.id=Qa.animIdCounter++,this.frame={time:0,timeDiff:0,lastTime:nw(),frameRate:0},this.func=t,this.setLayers(n)}setLayers(t){var n=[];return t?t.length>0?n=t:n=[t]:n=[],this.layers=n,this}getLayers(){return this.layers}addLayer(t){var n=this.layers,r=n.length,i;for(i=0;ithis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())}getTime(){return this._time}setPosition(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t}getPosition(t){return t===void 0&&(t=this._time),this.func(t,this.begin,this._change,this.duration)}play(){this.state=dI,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")}reverse(){this.state=fI,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")}seek(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")}reset(){this.pause(),this._time=0,this.update(),this.fire("onReset")}finish(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")}update(){this.setPosition(this.getPosition(this._time)),this.fire("onUpdate")}onEnterFrame(){var t=this.getTimer()-this._startTime;this.state===dI?this.setTime(t):this.state===fI&&this.setTime(this.duration-t)}pause(){this.state=cwe,this.fire("onPause")}getTimer(){return new Date().getTime()}}class Wr{constructor(t){var n=this,r=t.node,i=r._id,o,a=t.easing||gm.Linear,s=!!t.yoyo,l;typeof t.duration>"u"?o=.3:t.duration===0?o=.001:o=t.duration,this.node=r,this._id=dwe++;var d=r.getLayer()||(r instanceof lt.Stage?r.getLayers():null);d||ce.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Qa(function(){n.tween.onEnterFrame()},d),this.tween=new fwe(l,function(p){n._tweenFunc(p)},a,0,1,o*1e3,s),this._addListeners(),Wr.attrs[i]||(Wr.attrs[i]={}),Wr.attrs[i][this._id]||(Wr.attrs[i][this._id]={}),Wr.tweens[i]||(Wr.tweens[i]={});for(l in t)uwe[l]===void 0&&this._addAttr(l,t[l]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset,this.onUpdate=t.onUpdate}_addAttr(t,n){var r=this.node,i=r._id,o,a,s,l,d,p,g,m;if(s=Wr.tweens[i][t],s&&delete Wr.attrs[i][s][t],o=r.getAttr(t),ce._isArray(n))if(a=[],d=Math.max(n.length,o.length),t==="points"&&n.length!==o.length&&(n.length>o.length?(g=o,o=ce._prepareArrayForTween(o,n,r.closed())):(p=n,n=ce._prepareArrayForTween(n,o,r.closed()))),t.indexOf("fill")===0)for(l=0;l{this.anim.start()},this.tween.onReverse=()=>{this.anim.start()},this.tween.onPause=()=>{this.anim.stop()},this.tween.onFinish=()=>{var t=this.node,n=Wr.attrs[t._id][this._id];n.points&&n.points.trueEnd&&t.setAttr("points",n.points.trueEnd),this.onFinish&&this.onFinish.call(this)},this.tween.onReset=()=>{var t=this.node,n=Wr.attrs[t._id][this._id];n.points&&n.points.trueStart&&t.points(n.points.trueStart),this.onReset&&this.onReset()},this.tween.onUpdate=()=>{this.onUpdate&&this.onUpdate.call(this)}}play(){return this.tween.play(),this}reverse(){return this.tween.reverse(),this}reset(){return this.tween.reset(),this}seek(t){return this.tween.seek(t*1e3),this}pause(){return this.tween.pause(),this}finish(){return this.tween.finish(),this}destroy(){var t=this.node._id,n=this._id,r=Wr.tweens[t],i;this.pause();for(i in r)delete Wr.tweens[t][i];delete Wr.attrs[t][n]}}Wr.attrs={};Wr.tweens={};We.prototype.to=function(e){var t=e.onFinish;e.node=this,e.onFinish=function(){this.destroy(),t&&t()};var n=new Wr(e);n.play()};const gm={BackEaseIn(e,t,n,r){var i=1.70158;return n*(e/=r)*e*((i+1)*e-i)+t},BackEaseOut(e,t,n,r){var i=1.70158;return n*((e=e/r-1)*e*((i+1)*e+i)+1)+t},BackEaseInOut(e,t,n,r){var i=1.70158;return(e/=r/2)<1?n/2*(e*e*(((i*=1.525)+1)*e-i))+t:n/2*((e-=2)*e*(((i*=1.525)+1)*e+i)+2)+t},ElasticEaseIn(e,t,n,r,i,o){var a=0;return e===0?t:(e/=r)===1?t+n:(o||(o=r*.3),!i||i0?t:n),p=a*n,g=s*(s>0?t:n),m=l*(l>0?n:t);return{x:d,y:r?-1*m:g,width:p-d,height:m-g}}}Ju.prototype._centroid=!0;Ju.prototype.className="Arc";Ju.prototype._attrsAffectingSize=["innerRadius","outerRadius"];wr(Ju);Z.addGetterSetter(Ju,"innerRadius",0,He());Z.addGetterSetter(Ju,"outerRadius",0,He());Z.addGetterSetter(Ju,"angle",0,He());Z.addGetterSetter(Ju,"clockwise",!1,Us());function WC(e,t,n,r,i,o,a){var s=Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2)),l=Math.sqrt(Math.pow(i-n,2)+Math.pow(o-r,2)),d=a*s/(s+l),p=a*l/(s+l),g=n-d*(i-e),m=r-d*(o-t),y=n+p*(i-e),b=r+p*(o-t);return[g,m,y,b]}function pI(e,t){var n=e.length,r=[],i,o;for(i=2;i4){for(s=this.getTensionPoints(),l=s.length,d=o?0:4,o||t.quadraticCurveTo(s[0],s[1],s[2],s[3]);dp?d:p,E=d>p?1:d/p,P=d>p?p/d:1;t.translate(s,l),t.rotate(y),t.scale(E,P),t.arc(0,0,S,g,g+m,1-b),t.scale(1/E,1/P),t.rotate(-y),t.translate(-s,-l);break;case"z":r=!0,t.closePath();break}}!r&&!this.hasFill()?t.strokeShape(this):t.fillStrokeShape(this)}getSelfRect(){var t=[];this.dataArray.forEach(function(d){if(d.command==="A"){var p=d.points[4],g=d.points[5],m=d.points[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;b-=y){const S=zn.getPointOnEllipticalArc(d.points[0],d.points[1],d.points[2],d.points[3],b,0);t.push(S.x,S.y)}else for(let b=p+y;bthis.dataArray[r].pathLength;)t-=this.dataArray[r].pathLength,++r;if(r===i)return n=this.dataArray[r-1].points.slice(-2),{x:n[0],y:n[1]};if(t<.01)return n=this.dataArray[r].points.slice(0,2),{x:n[0],y:n[1]};var o=this.dataArray[r],a=o.points;switch(o.command){case"L":return zn.getPointOnLine(t,o.start.x,o.start.y,a[0],a[1]);case"C":return zn.getPointOnCubicBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3],a[4],a[5]);case"Q":return zn.getPointOnQuadraticBezier(t/o.pathLength,o.start.x,o.start.y,a[0],a[1],a[2],a[3]);case"A":var s=a[0],l=a[1],d=a[2],p=a[3],g=a[4],m=a[5],y=a[6];return g+=m*t/o.pathLength,zn.getPointOnEllipticalArc(s,l,d,p,g,y)}return null}static getLineLength(t,n,r,i){return Math.sqrt((r-t)*(r-t)+(i-n)*(i-n))}static getPointOnLine(t,n,r,i,o,a,s){a===void 0&&(a=n),s===void 0&&(s=r);var l=(o-r)/(i-n+1e-8),d=Math.sqrt(t*t/(1+l*l));i0&&!isNaN(b[0]);){var k=null,L=[],R=l,N=d,z,$,F,q,j,Y,ve,ge,Se,_e;switch(y){case"l":l+=b.shift(),d+=b.shift(),k="L",L.push(l,d);break;case"L":l=b.shift(),d=b.shift(),L.push(l,d);break;case"m":var we=b.shift(),J=b.shift();if(l+=we,d+=J,k="M",a.length>2&&a[a.length-1].command==="z"){for(var G=a.length-2;G>=0;G--)if(a[G].command==="M"){l=a[G].points[0]+we,d=a[G].points[1]+J;break}}L.push(l,d),y="l";break;case"M":l=b.shift(),d=b.shift(),k="M",L.push(l,d),y="L";break;case"h":l+=b.shift(),k="L",L.push(l,d);break;case"H":l=b.shift(),k="L",L.push(l,d);break;case"v":d+=b.shift(),k="L",L.push(l,d);break;case"V":d=b.shift(),k="L",L.push(l,d);break;case"C":L.push(b.shift(),b.shift(),b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"c":L.push(l+b.shift(),d+b.shift(),l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"S":$=l,F=d,z=a[a.length-1],z.command==="C"&&($=l+(l-z.points[2]),F=d+(d-z.points[3])),L.push($,F,b.shift(),b.shift()),l=b.shift(),d=b.shift(),k="C",L.push(l,d);break;case"s":$=l,F=d,z=a[a.length-1],z.command==="C"&&($=l+(l-z.points[2]),F=d+(d-z.points[3])),L.push($,F,l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="C",L.push(l,d);break;case"Q":L.push(b.shift(),b.shift()),l=b.shift(),d=b.shift(),L.push(l,d);break;case"q":L.push(l+b.shift(),d+b.shift()),l+=b.shift(),d+=b.shift(),k="Q",L.push(l,d);break;case"T":$=l,F=d,z=a[a.length-1],z.command==="Q"&&($=l+(l-z.points[0]),F=d+(d-z.points[1])),l=b.shift(),d=b.shift(),k="Q",L.push($,F,l,d);break;case"t":$=l,F=d,z=a[a.length-1],z.command==="Q"&&($=l+(l-z.points[0]),F=d+(d-z.points[1])),l+=b.shift(),d+=b.shift(),k="Q",L.push($,F,l,d);break;case"A":q=b.shift(),j=b.shift(),Y=b.shift(),ve=b.shift(),ge=b.shift(),Se=l,_e=d,l=b.shift(),d=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(Se,_e,l,d,ve,ge,q,j,Y);break;case"a":q=b.shift(),j=b.shift(),Y=b.shift(),ve=b.shift(),ge=b.shift(),Se=l,_e=d,l+=b.shift(),d+=b.shift(),k="A",L=this.convertEndpointToCenterParameterization(Se,_e,l,d,ve,ge,q,j,Y);break}a.push({command:k||y,points:L,start:{x:R,y:N},pathLength:this.calcLength(R,N,k||y,L)})}(y==="z"||y==="Z")&&a.push({command:"z",points:[],start:void 0,pathLength:0})}return a}static calcLength(t,n,r,i){var o,a,s,l,d=zn;switch(r){case"L":return d.getLineLength(t,n,i[0],i[1]);case"C":for(o=0,a=d.getPointOnCubicBezier(0,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),l=.01;l<=1;l+=.01)s=d.getPointOnCubicBezier(l,t,n,i[0],i[1],i[2],i[3],i[4],i[5]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"Q":for(o=0,a=d.getPointOnQuadraticBezier(0,t,n,i[0],i[1],i[2],i[3]),l=.01;l<=1;l+=.01)s=d.getPointOnQuadraticBezier(l,t,n,i[0],i[1],i[2],i[3]),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;return o;case"A":o=0;var p=i[4],g=i[5],m=i[4]+g,y=Math.PI/180;if(Math.abs(p-m)m;l-=y)s=d.getPointOnEllipticalArc(i[0],i[1],i[2],i[3],l,0),o+=d.getLineLength(a.x,a.y,s.x,s.y),a=s;else for(l=p+y;l1&&(s*=Math.sqrt(y),l*=Math.sqrt(y));var b=Math.sqrt((s*s*(l*l)-s*s*(m*m)-l*l*(g*g))/(s*s*(m*m)+l*l*(g*g)));o===a&&(b*=-1),isNaN(b)&&(b=0);var S=b*s*m/l,E=b*-l*g/s,P=(t+r)/2+Math.cos(p)*S-Math.sin(p)*E,k=(n+i)/2+Math.sin(p)*S+Math.cos(p)*E,L=function(j){return Math.sqrt(j[0]*j[0]+j[1]*j[1])},R=function(j,Y){return(j[0]*Y[0]+j[1]*Y[1])/(L(j)*L(Y))},N=function(j,Y){return(j[0]*Y[1]=1&&(q=0),a===0&&q>0&&(q=q-2*Math.PI),a===1&&q<0&&(q=q+2*Math.PI),[P,k,s,l,z,q,p,a]}}zn.prototype.className="Path";zn.prototype._attrsAffectingSize=["data"];wr(zn);Z.addGetterSetter(zn,"data");class Lh extends ec{_sceneFunc(t){super._sceneFunc(t);var n=Math.PI*2,r=this.points(),i=r,o=this.tension()!==0&&r.length>4;o&&(i=this.getTensionPoints());var a=this.pointerLength(),s=r.length,l,d;if(o){const m=[i[i.length-4],i[i.length-3],i[i.length-2],i[i.length-1],r[s-2],r[s-1]],y=zn.calcLength(i[i.length-4],i[i.length-3],"C",m),b=zn.getPointOnQuadraticBezier(Math.min(1,1-a/y),m[0],m[1],m[2],m[3],m[4],m[5]);l=r[s-2]-b.x,d=r[s-1]-b.y}else l=r[s-2]-r[s-4],d=r[s-1]-r[s-3];var p=(Math.atan2(d,l)+n)%n,g=this.pointerWidth();this.pointerAtEnding()&&(t.save(),t.beginPath(),t.translate(r[s-2],r[s-1]),t.rotate(p),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t)),this.pointerAtBeginning()&&(t.save(),t.beginPath(),t.translate(r[0],r[1]),o?(l=(i[0]+i[2])/2-r[0],d=(i[1]+i[3])/2-r[1]):(l=r[2]-r[0],d=r[3]-r[1]),t.rotate((Math.atan2(-d,-l)+n)%n),t.moveTo(0,0),t.lineTo(-a,g/2),t.lineTo(-a,-g/2),t.closePath(),t.restore(),this.__fillStroke(t))}__fillStroke(t){var n=this.dashEnabled();n&&(this.attrs.dashEnabled=!1,t.setLineDash([])),t.fillStrokeShape(this),n&&(this.attrs.dashEnabled=!0)}getSelfRect(){const t=super.getSelfRect(),n=this.pointerWidth()/2;return{x:t.x-n,y:t.y-n,width:t.width+n*2,height:t.height+n*2}}}Lh.prototype.className="Arrow";wr(Lh);Z.addGetterSetter(Lh,"pointerLength",10,He());Z.addGetterSetter(Lh,"pointerWidth",10,He());Z.addGetterSetter(Lh,"pointerAtBeginning",!1);Z.addGetterSetter(Lh,"pointerAtEnding",!0);class l1 extends De{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.attrs.radius||0,0,Math.PI*2,!1),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius()!==t/2&&this.radius(t/2)}setHeight(t){this.radius()!==t/2&&this.radius(t/2)}}l1.prototype._centroid=!0;l1.prototype.className="Circle";l1.prototype._attrsAffectingSize=["radius"];wr(l1);Z.addGetterSetter(l1,"radius",0,He());class Od extends De{_sceneFunc(t){var n=this.radiusX(),r=this.radiusY();t.beginPath(),t.save(),n!==r&&t.scale(1,r/n),t.arc(0,0,n,0,Math.PI*2,!1),t.restore(),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radiusX()*2}getHeight(){return this.radiusY()*2}setWidth(t){this.radiusX(t/2)}setHeight(t){this.radiusY(t/2)}}Od.prototype.className="Ellipse";Od.prototype._centroid=!0;Od.prototype._attrsAffectingSize=["radiusX","radiusY"];wr(Od);Z.addComponentsGetterSetter(Od,"radius",["x","y"]);Z.addGetterSetter(Od,"radiusX",0,He());Z.addGetterSetter(Od,"radiusY",0,He());class Gs extends De{constructor(t){super(t),this.on("imageChange.konva",()=>{this._setImageLoad()}),this._setImageLoad()}_setImageLoad(){const t=this.image();t&&t.complete||t&&t.readyState===4||t&&t.addEventListener&&t.addEventListener("load",()=>{this._requestDraw()})}_useBufferCanvas(){return super._useBufferCanvas(!0)}_sceneFunc(t){const n=this.getWidth(),r=this.getHeight(),i=this.attrs.image;let o;if(i){const a=this.attrs.cropWidth,s=this.attrs.cropHeight;a&&s?o=[i,this.cropX(),this.cropY(),a,s,0,0,n,r]:o=[i,0,0,n,r]}(this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)),i&&t.drawImage.apply(t,o)}_hitFunc(t){var n=this.width(),r=this.height();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}getWidth(){var t,n;return(t=this.attrs.width)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.width}getHeight(){var t,n;return(t=this.attrs.height)!==null&&t!==void 0?t:(n=this.image())===null||n===void 0?void 0:n.height}static fromURL(t,n,r=null){var i=ce.createImageElement();i.onload=function(){var o=new Gs({image:i});n(o)},i.onerror=r,i.crossOrigin="Anonymous",i.src=t}}Gs.prototype.className="Image";wr(Gs);Z.addGetterSetter(Gs,"image");Z.addComponentsGetterSetter(Gs,"crop",["x","y","width","height"]);Z.addGetterSetter(Gs,"cropX",0,He());Z.addGetterSetter(Gs,"cropY",0,He());Z.addGetterSetter(Gs,"cropWidth",0,He());Z.addGetterSetter(Gs,"cropHeight",0,He());var DH=["fontFamily","fontSize","fontStyle","padding","lineHeight","text","width","height","pointerDirection","pointerWidth","pointerHeight"],hwe="Change.konva",pwe="none",VC="up",UC="right",GC="down",jC="left",gwe=DH.length;class O7 extends H0{constructor(t){super(t),this.on("add.konva",function(n){this._addListeners(n.child),this._sync()})}getText(){return this.find("Text")[0]}getTag(){return this.find("Tag")[0]}_addListeners(t){var n=this,r,i=function(){n._sync()};for(r=0;r{n=Math.min(n,a.x),r=Math.max(r,a.x),i=Math.min(i,a.y),o=Math.max(o,a.y)}),{x:n,y:i,width:r-n,height:o-i}}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}Ih.prototype.className="RegularPolygon";Ih.prototype._centroid=!0;Ih.prototype._attrsAffectingSize=["radius"];wr(Ih);Z.addGetterSetter(Ih,"radius",0,He());Z.addGetterSetter(Ih,"sides",0,He());var gI=Math.PI*2;class Rh extends De{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.innerRadius(),0,gI,!1),t.moveTo(this.outerRadius(),0),t.arc(0,0,this.outerRadius(),gI,0,!0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.outerRadius()*2}getHeight(){return this.outerRadius()*2}setWidth(t){this.outerRadius(t/2)}setHeight(t){this.outerRadius(t/2)}}Rh.prototype.className="Ring";Rh.prototype._centroid=!0;Rh.prototype._attrsAffectingSize=["innerRadius","outerRadius"];wr(Rh);Z.addGetterSetter(Rh,"innerRadius",0,He());Z.addGetterSetter(Rh,"outerRadius",0,He());class Yl extends De{constructor(t){super(t),this._updated=!0,this.anim=new Qa(()=>{var n=this._updated;return this._updated=!1,n}),this.on("animationChange.konva",function(){this.frameIndex(0)}),this.on("frameIndexChange.konva",function(){this._updated=!0}),this.on("frameRateChange.konva",function(){!this.anim.isRunning()||(clearInterval(this.interval),this._setInterval())})}_sceneFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+0],l=o[i+1],d=o[i+2],p=o[i+3],g=this.image();if((this.hasFill()||this.hasStroke())&&(t.beginPath(),t.rect(0,0,d,p),t.closePath(),t.fillStrokeShape(this)),g)if(a){var m=a[n],y=r*2;t.drawImage(g,s,l,d,p,m[y+0],m[y+1],d,p)}else t.drawImage(g,s,l,d,p,0,0,d,p)}_hitFunc(t){var n=this.animation(),r=this.frameIndex(),i=r*4,o=this.animations()[n],a=this.frameOffsets(),s=o[i+2],l=o[i+3];if(t.beginPath(),a){var d=a[n],p=r*2;t.rect(d[p+0],d[p+1],s,l)}else t.rect(0,0,s,l);t.closePath(),t.fillShape(this)}_useBufferCanvas(){return super._useBufferCanvas(!0)}_setInterval(){var t=this;this.interval=setInterval(function(){t._updateIndex()},1e3/this.frameRate())}start(){if(!this.isRunning()){var t=this.getLayer();this.anim.setLayers(t),this._setInterval(),this.anim.start()}}stop(){this.anim.stop(),clearInterval(this.interval)}isRunning(){return this.anim.isRunning()}_updateIndex(){var t=this.frameIndex(),n=this.animation(),r=this.animations(),i=r[n],o=i.length/4;t{t=t.trim();const n=t.indexOf(" ")>=0,r=t.indexOf('"')>=0||t.indexOf("'")>=0;return n&&!r&&(t=`"${t}"`),t}).join(", ")}var Dy;function iw(){return Dy||(Dy=ce.createCanvasElement().getContext(ywe),Dy)}function Lwe(e){e.fillText(this._partialText,this._partialTextX,this._partialTextY)}function Awe(e){e.strokeText(this._partialText,this._partialTextX,this._partialTextY)}function Iwe(e){return e=e||{},!e.fillLinearGradientColorStops&&!e.fillRadialGradientColorStops&&!e.fillPatternImage&&(e.fill=e.fill||"black"),e}class Sr extends De{constructor(t){super(Iwe(t)),this._partialTextX=0,this._partialTextY=0;for(var n=0;n1&&(P+=a)}}}_hitFunc(t){var n=this.getWidth(),r=this.getHeight();t.beginPath(),t.rect(0,0,n,r),t.closePath(),t.fillStrokeShape(this)}setText(t){var n=ce._isString(t)?t:t==null?"":t+"";return this._setAttr(bwe,n),this}getWidth(){var t=this.attrs.width===Ip||this.attrs.width===void 0;return t?this.getTextWidth()+this.padding()*2:this.attrs.width}getHeight(){var t=this.attrs.height===Ip||this.attrs.height===void 0;return t?this.fontSize()*this.textArr.length*this.lineHeight()+this.padding()*2:this.attrs.height}getTextWidth(){return this.textWidth}getTextHeight(){return ce.warn("text.getTextHeight() method is deprecated. Use text.height() - for full height and text.fontSize() - for one line height."),this.textHeight}measureSize(t){var n=iw(),r=this.fontSize(),i;return n.save(),n.font=this._getContextFont(),i=n.measureText(t),n.restore(),{width:i.width,height:r}}_getContextFont(){return this.fontStyle()+Ny+this.fontVariant()+Ny+(this.fontSize()+Cwe)+Twe(this.fontFamily())}_addTextLine(t){this.align()===yg&&(t=t.trim());var n=this._getTextWidth(t);return this.textArr.push({text:t,width:n,lastInParagraph:!1})}_getTextWidth(t){var n=this.letterSpacing(),r=t.length;return iw().measureText(t).width+(r?n*(r-1):0)}_setTextData(){var t=this.text().split(` -`),n=+this.fontSize(),r=0,i=this.lineHeight()*n,o=this.attrs.width,a=this.attrs.height,s=o!==Ip&&o!==void 0,l=a!==Ip&&a!==void 0,d=this.padding(),p=o-d*2,g=a-d*2,m=0,y=this.wrap(),b=y!==yI,S=y!==Ewe&&b,E=this.ellipsis();this.textArr=[],iw().font=this._getContextFont();for(var P=E?this._getTextWidth(rw):0,k=0,L=t.length;kp)for(;R.length>0;){for(var z=0,$=R.length,F="",q=0;z<$;){var j=z+$>>>1,Y=R.slice(0,j+1),ve=this._getTextWidth(Y)+P;ve<=p?(z=j+1,F=Y,q=ve):$=j}if(F){if(S){var ge,Se=R[F.length],_e=Se===Ny||Se===mI;_e&&q<=p?ge=F.length:ge=Math.max(F.lastIndexOf(Ny),F.lastIndexOf(mI))+1,ge>0&&(z=ge,F=F.slice(0,z),q=this._getTextWidth(F))}F=F.trimRight(),this._addTextLine(F),r=Math.max(r,q),m+=i;var we=this._shouldHandleEllipsis(m);if(we){this._tryToAddEllipsisToLastLine();break}if(R=R.slice(z),R=R.trimLeft(),R.length>0&&(N=this._getTextWidth(R),N<=p)){this._addTextLine(R),m+=i,r=Math.max(r,N);break}}else break}else this._addTextLine(R),m+=i,r=Math.max(r,N),this._shouldHandleEllipsis(m)&&kg)break;this.textArr[this.textArr.length-1]&&(this.textArr[this.textArr.length-1].lastInParagraph=!0)}this.textHeight=n,this.textWidth=r}_shouldHandleEllipsis(t){var n=+this.fontSize(),r=this.lineHeight()*n,i=this.attrs.height,o=i!==Ip&&i!==void 0,a=this.padding(),s=i-a*2,l=this.wrap(),d=l!==yI;return!d||o&&t+r>s}_tryToAddEllipsisToLastLine(){var t=this.attrs.width,n=t!==Ip&&t!==void 0,r=this.padding(),i=t-r*2,o=this.ellipsis(),a=this.textArr[this.textArr.length-1];if(!(!a||!o)){if(n){var s=this._getTextWidth(a.text+rw)=1){var r=n[0].p0;t.moveTo(r.x,r.y)}for(var i=0;i0&&(s+=t.dataArray[l].pathLength);var d=0;i==="center"&&(d=Math.max(0,s/2-a/2)),i==="right"&&(d=Math.max(0,s-a));for(var p=zH(this.text()),g=this.text().split(" ").length-1,m,y,b,S=-1,E=0,P=function(){E=0;for(var ve=t.dataArray,ge=S+1;ge0)return S=ge,ve[ge];ve[ge].command==="M"&&(m={x:ve[ge].points[0],y:ve[ge].points[1]})}return{}},k=function(ve){var ge=t._getTextSize(ve).width+r;ve===" "&&i==="justify"&&(ge+=(s-a)/g);var Se=0,_e=0;for(y=void 0;Math.abs(ge-Se)/ge>.01&&_e<20;){_e++;for(var we=Se;b===void 0;)b=P(),b&&we+b.pathLengthge?y=zn.getPointOnLine(ge,m.x,m.y,b.points[0],b.points[1],m.x,m.y):b=void 0;break;case"A":var G=b.points[4],te=b.points[5],Q=b.points[4]+te;E===0?E=G+1e-8:ge>Se?E+=Math.PI/180*te/Math.abs(te):E-=Math.PI/360*te/Math.abs(te),(te<0&&E=0&&E>Q)&&(E=Q,J=!0),y=zn.getPointOnEllipticalArc(b.points[0],b.points[1],b.points[2],b.points[3],E,b.points[6]);break;case"C":E===0?ge>b.pathLength?E=1e-8:E=ge/b.pathLength:ge>Se?E+=(ge-Se)/b.pathLength/2:E=Math.max(E-(Se-ge)/b.pathLength/2,0),E>1&&(E=1,J=!0),y=zn.getPointOnCubicBezier(E,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3],b.points[4],b.points[5]);break;case"Q":E===0?E=ge/b.pathLength:ge>Se?E+=(ge-Se)/b.pathLength:E-=(Se-ge)/b.pathLength,E>1&&(E=1,J=!0),y=zn.getPointOnQuadraticBezier(E,b.start.x,b.start.y,b.points[0],b.points[1],b.points[2],b.points[3]);break}y!==void 0&&(Se=zn.getLineLength(m.x,m.y,y.x,y.y)),J&&(J=!1,b=void 0)}},L="C",R=t._getTextSize(L).width+r,N=d/R-1,z=0;ze+`.${UH}`).join(" "),bI="nodesRect",Owe=["widthChange","heightChange","scaleXChange","scaleYChange","skewXChange","skewYChange","rotationChange","offsetXChange","offsetYChange","transformsEnabledChange","strokeWidthChange"],Nwe={"top-left":-45,"top-center":0,"top-right":45,"middle-right":-90,"middle-left":90,"bottom-left":-135,"bottom-center":180,"bottom-right":135};const Dwe="ontouchstart"in lt._global;function zwe(e,t){if(e==="rotater")return"crosshair";t+=ce.degToRad(Nwe[e]||0);var n=(ce.radToDeg(t)%360+360)%360;return ce._inRange(n,315+22.5,360)||ce._inRange(n,0,22.5)?"ns-resize":ce._inRange(n,45-22.5,45+22.5)?"nesw-resize":ce._inRange(n,90-22.5,90+22.5)?"ew-resize":ce._inRange(n,135-22.5,135+22.5)?"nwse-resize":ce._inRange(n,180-22.5,180+22.5)?"ns-resize":ce._inRange(n,225-22.5,225+22.5)?"nesw-resize":ce._inRange(n,270-22.5,270+22.5)?"ew-resize":ce._inRange(n,315-22.5,315+22.5)?"nwse-resize":(ce.error("Transformer has unknown angle for cursor detection: "+n),"pointer")}var Z3=["top-left","top-center","top-right","middle-right","middle-left","bottom-left","bottom-center","bottom-right"],xI=1e8;function $we(e){return{x:e.x+e.width/2*Math.cos(e.rotation)+e.height/2*Math.sin(-e.rotation),y:e.y+e.height/2*Math.cos(e.rotation)+e.width/2*Math.sin(e.rotation)}}function GH(e,t,n){const r=n.x+(e.x-n.x)*Math.cos(t)-(e.y-n.y)*Math.sin(t),i=n.y+(e.x-n.x)*Math.sin(t)+(e.y-n.y)*Math.cos(t);return Object.assign(Object.assign({},e),{rotation:e.rotation+t,x:r,y:i})}function Fwe(e,t){const n=$we(e);return GH(e,t,n)}function Bwe(e,t,n){let r=t;for(let i=0;i{const i=()=>{this.nodes().length===1&&this.useSingleNodeRotation()&&this.rotation(this.nodes()[0].getAbsoluteRotation()),this._resetTransformCache(),!this._transforming&&!this.isDragging()&&this.update()},o=r._attrsAffectingSize.map(a=>a+"Change."+this._getEventNamespace()).join(" ");r.on(o,i),r.on(Owe.map(a=>a+`.${this._getEventNamespace()}`).join(" "),i),r.on(`absoluteTransformChange.${this._getEventNamespace()}`,i),this._proxyDrag(r)}),this._resetTransformCache();var n=!!this.findOne(".top-left");return n&&this.update(),this}_proxyDrag(t){let n;t.on(`dragstart.${this._getEventNamespace()}`,r=>{n=t.getAbsolutePosition(),!this.isDragging()&&t!==this.findOne(".back")&&this.startDrag(r,!1)}),t.on(`dragmove.${this._getEventNamespace()}`,r=>{if(!n)return;const i=t.getAbsolutePosition(),o=i.x-n.x,a=i.y-n.y;this.nodes().forEach(s=>{if(s===t||s.isDragging())return;const l=s.getAbsolutePosition();s.setAbsolutePosition({x:l.x+o,y:l.y+a}),s.startDrag(r)}),n=null})}getNodes(){return this._nodes||[]}getActiveAnchor(){return this._movingAnchorName}detach(){this._nodes&&this._nodes.forEach(t=>{t.off("."+this._getEventNamespace())}),this._nodes=[],this._resetTransformCache()}_resetTransformCache(){this._clearCache(bI),this._clearCache("transform"),this._clearSelfAndDescendantCache("absoluteTransform")}_getNodeRect(){return this._getCache(bI,this.__getNodeRect)}__getNodeShape(t,n=this.rotation(),r){var i=t.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()}),o=t.getAbsoluteScale(r),a=t.getAbsolutePosition(r),s=i.x*o.x-t.offsetX()*o.x,l=i.y*o.y-t.offsetY()*o.y;const d=(lt.getAngle(t.getAbsoluteRotation())+Math.PI*2)%(Math.PI*2),p={x:a.x+s*Math.cos(d)+l*Math.sin(-d),y:a.y+l*Math.cos(d)+s*Math.sin(d),width:i.width*o.x,height:i.height*o.y,rotation:d};return GH(p,-lt.getAngle(n),{x:0,y:0})}__getNodeRect(){var t=this.getNode();if(!t)return{x:-xI,y:-xI,width:0,height:0,rotation:0};const n=[];this.nodes().map(d=>{const p=d.getClientRect({skipTransform:!0,skipShadow:!0,skipStroke:this.ignoreStroke()});var g=[{x:p.x,y:p.y},{x:p.x+p.width,y:p.y},{x:p.x+p.width,y:p.y+p.height},{x:p.x,y:p.y+p.height}],m=d.getAbsoluteTransform();g.forEach(function(y){var b=m.point(y);n.push(b)})});const r=new ma;r.rotate(-lt.getAngle(this.rotation()));var i,o,a,s;n.forEach(function(d){var p=r.point(d);i===void 0&&(i=a=p.x,o=s=p.y),i=Math.min(i,p.x),o=Math.min(o,p.y),a=Math.max(a,p.x),s=Math.max(s,p.y)}),r.invert();const l=r.point({x:i,y:o});return{x:l.x,y:l.y,width:a-i,height:s-o,rotation:lt.getAngle(this.rotation())}}getX(){return this._getNodeRect().x}getY(){return this._getNodeRect().y}getWidth(){return this._getNodeRect().width}getHeight(){return this._getNodeRect().height}_createElements(){this._createBack(),Z3.forEach(function(t){this._createAnchor(t)}.bind(this)),this._createAnchor("rotater")}_createAnchor(t){var n=new Bv({stroke:"rgb(0, 161, 255)",fill:"white",strokeWidth:1,name:t+" _anchor",dragDistance:0,draggable:!0,hitStrokeWidth:Dwe?10:"auto"}),r=this;n.on("mousedown touchstart",function(i){r._handleMouseDown(i)}),n.on("dragstart",i=>{n.stopDrag(),i.cancelBubble=!0}),n.on("dragend",i=>{i.cancelBubble=!0}),n.on("mouseenter",()=>{var i=lt.getAngle(this.rotation()),o=zwe(t,i);n.getStage().content&&(n.getStage().content.style.cursor=o),this._cursorChange=!0}),n.on("mouseout",()=>{n.getStage().content&&(n.getStage().content.style.cursor=""),this._cursorChange=!1}),this.add(n)}_createBack(){var t=new De({name:"back",width:0,height:0,draggable:!0,sceneFunc(n){var r=this.getParent(),i=r.padding();n.beginPath(),n.rect(-i,-i,this.width()+i*2,this.height()+i*2),n.moveTo(this.width()/2,-i),r.rotateEnabled()&&n.lineTo(this.width()/2,-r.rotateAnchorOffset()*ce._sign(this.height())-i),n.fillStrokeShape(this)},hitFunc:(n,r)=>{if(!!this.shouldOverdrawWholeArea()){var i=this.padding();n.beginPath(),n.rect(-i,-i,r.width()+i*2,r.height()+i*2),n.fillStrokeShape(r)}}});this.add(t),this._proxyDrag(t),t.on("dragstart",n=>{n.cancelBubble=!0}),t.on("dragmove",n=>{n.cancelBubble=!0}),t.on("dragend",n=>{n.cancelBubble=!0}),this.on("dragmove",n=>{this.update()})}_handleMouseDown(t){this._movingAnchorName=t.target.name().split(" ")[0];var n=this._getNodeRect(),r=n.width,i=n.height,o=Math.sqrt(Math.pow(r,2)+Math.pow(i,2));this.sin=Math.abs(i/o),this.cos=Math.abs(r/o),typeof window<"u"&&(window.addEventListener("mousemove",this._handleMouseMove),window.addEventListener("touchmove",this._handleMouseMove),window.addEventListener("mouseup",this._handleMouseUp,!0),window.addEventListener("touchend",this._handleMouseUp,!0)),this._transforming=!0;var a=t.target.getAbsolutePosition(),s=t.target.getStage().getPointerPosition();this._anchorDragOffset={x:s.x-a.x,y:s.y-a.y},this._fire("transformstart",{evt:t.evt,target:this.getNode()}),this._nodes.forEach(l=>{l._fire("transformstart",{evt:t.evt,target:l})})}_handleMouseMove(t){var n,r,i,o=this.findOne("."+this._movingAnchorName),a=o.getStage();a.setPointersPositions(t);const s=a.getPointerPosition();let l={x:s.x-this._anchorDragOffset.x,y:s.y-this._anchorDragOffset.y};const d=o.getAbsolutePosition();this.anchorDragBoundFunc()&&(l=this.anchorDragBoundFunc()(d,l,t)),o.setAbsolutePosition(l);const p=o.getAbsolutePosition();if(!(d.x===p.x&&d.y===p.y)){if(this._movingAnchorName==="rotater"){var g=this._getNodeRect();n=o.x()-g.width/2,r=-o.y()+g.height/2;let ve=Math.atan2(-r,n)+Math.PI/2;g.height<0&&(ve-=Math.PI);var m=lt.getAngle(this.rotation());const ge=m+ve,Se=lt.getAngle(this.rotationSnapTolerance()),we=Bwe(this.rotationSnaps(),ge,Se)-g.rotation,J=Fwe(g,we);this._fitNodesInto(J,t);return}var y=this.keepRatio()||t.shiftKey,k=this.centeredScaling()||t.altKey;if(this._movingAnchorName==="top-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-right").x(),y:this.findOne(".bottom-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(b.y-o.y(),2));var S=this.findOne(".top-left").x()>b.x?-1:1,E=this.findOne(".top-left").y()>b.y?-1:1;n=i*this.cos*S,r=i*this.sin*E,this.findOne(".top-left").x(b.x-n),this.findOne(".top-left").y(b.y-r)}}else if(this._movingAnchorName==="top-center")this.findOne(".top-left").y(o.y());else if(this._movingAnchorName==="top-right"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-left").x(),y:this.findOne(".bottom-left").y()};i=Math.sqrt(Math.pow(o.x()-b.x,2)+Math.pow(b.y-o.y(),2));var S=this.findOne(".top-right").x()b.y?-1:1;n=i*this.cos*S,r=i*this.sin*E,this.findOne(".top-right").x(b.x+n),this.findOne(".top-right").y(b.y-r)}var P=o.position();this.findOne(".top-left").y(P.y),this.findOne(".bottom-right").x(P.x)}else if(this._movingAnchorName==="middle-left")this.findOne(".top-left").x(o.x());else if(this._movingAnchorName==="middle-right")this.findOne(".bottom-right").x(o.x());else if(this._movingAnchorName==="bottom-left"){if(y){var b=k?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".top-right").x(),y:this.findOne(".top-right").y()};i=Math.sqrt(Math.pow(b.x-o.x(),2)+Math.pow(o.y()-b.y,2));var S=b.x{r._fire("transformend",{evt:t,target:r})}),this._movingAnchorName=null}}_fitNodesInto(t,n){var r=this._getNodeRect();const i=1;if(ce._inRange(t.width,-this.padding()*2-i,i)){this.update();return}if(ce._inRange(t.height,-this.padding()*2-i,i)){this.update();return}const o=this.flipEnabled();var a=new ma;if(a.rotate(lt.getAngle(this.rotation())),this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("left")>=0){const g=a.point({x:-this.padding()*2,y:0});if(t.x+=g.x,t.y+=g.y,t.width+=this.padding()*2,this._movingAnchorName=this._movingAnchorName.replace("left","right"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,!o){this.update();return}}else if(this._movingAnchorName&&t.width<0&&this._movingAnchorName.indexOf("right")>=0){const g=a.point({x:this.padding()*2,y:0});if(this._movingAnchorName=this._movingAnchorName.replace("right","left"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.width+=this.padding()*2,!o){this.update();return}}if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("top")>=0){const g=a.point({x:0,y:-this.padding()*2});if(t.x+=g.x,t.y+=g.y,this._movingAnchorName=this._movingAnchorName.replace("top","bottom"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}else if(this._movingAnchorName&&t.height<0&&this._movingAnchorName.indexOf("bottom")>=0){const g=a.point({x:0,y:this.padding()*2});if(this._movingAnchorName=this._movingAnchorName.replace("bottom","top"),this._anchorDragOffset.x-=g.x,this._anchorDragOffset.y-=g.y,t.height+=this.padding()*2,!o){this.update();return}}if(this.boundBoxFunc()){const g=this.boundBoxFunc()(r,t);g?t=g:ce.warn("boundBoxFunc returned falsy. You should return new bound rect from it!")}const s=1e7,l=new ma;l.translate(r.x,r.y),l.rotate(r.rotation),l.scale(r.width/s,r.height/s);const d=new ma;d.translate(t.x,t.y),d.rotate(t.rotation),d.scale(t.width/s,t.height/s);const p=d.multiply(l.invert());this._nodes.forEach(g=>{var m;const y=g.getParent().getAbsoluteTransform(),b=g.getTransform().copy();b.translate(g.offsetX(),g.offsetY());const S=new ma;S.multiply(y.copy().invert()).multiply(p).multiply(y).multiply(b);const E=S.decompose();g.setAttrs(E),this._fire("transform",{evt:n,target:g}),g._fire("transform",{evt:n,target:g}),(m=g.getLayer())===null||m===void 0||m.batchDraw()}),this.rotation(ce._getRotation(t.rotation)),this._resetTransformCache(),this.update(),this.getLayer().batchDraw()}forceUpdate(){this._resetTransformCache(),this.update()}_batchChangeChild(t,n){this.findOne(t).setAttrs(n)}update(){var t,n=this._getNodeRect();this.rotation(ce._getRotation(n.rotation));var r=n.width,i=n.height,o=this.enabledAnchors(),a=this.resizeEnabled(),s=this.padding(),l=this.anchorSize();this.find("._anchor").forEach(d=>{d.setAttrs({width:l,height:l,offsetX:l/2,offsetY:l/2,stroke:this.anchorStroke(),strokeWidth:this.anchorStrokeWidth(),fill:this.anchorFill(),cornerRadius:this.anchorCornerRadius()})}),this._batchChangeChild(".top-left",{x:0,y:0,offsetX:l/2+s,offsetY:l/2+s,visible:a&&o.indexOf("top-left")>=0}),this._batchChangeChild(".top-center",{x:r/2,y:0,offsetY:l/2+s,visible:a&&o.indexOf("top-center")>=0}),this._batchChangeChild(".top-right",{x:r,y:0,offsetX:l/2-s,offsetY:l/2+s,visible:a&&o.indexOf("top-right")>=0}),this._batchChangeChild(".middle-left",{x:0,y:i/2,offsetX:l/2+s,visible:a&&o.indexOf("middle-left")>=0}),this._batchChangeChild(".middle-right",{x:r,y:i/2,offsetX:l/2-s,visible:a&&o.indexOf("middle-right")>=0}),this._batchChangeChild(".bottom-left",{x:0,y:i,offsetX:l/2+s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-left")>=0}),this._batchChangeChild(".bottom-center",{x:r/2,y:i,offsetY:l/2-s,visible:a&&o.indexOf("bottom-center")>=0}),this._batchChangeChild(".bottom-right",{x:r,y:i,offsetX:l/2-s,offsetY:l/2-s,visible:a&&o.indexOf("bottom-right")>=0}),this._batchChangeChild(".rotater",{x:r/2,y:-this.rotateAnchorOffset()*ce._sign(i)-s,visible:this.rotateEnabled()}),this._batchChangeChild(".back",{width:r,height:i,visible:this.borderEnabled(),stroke:this.borderStroke(),strokeWidth:this.borderStrokeWidth(),dash:this.borderDash(),x:0,y:0}),(t=this.getLayer())===null||t===void 0||t.batchDraw()}isTransforming(){return this._transforming}stopTransform(){if(this._transforming){this._removeEvents();var t=this.findOne("."+this._movingAnchorName);t&&t.stopDrag()}}destroy(){return this.getStage()&&this._cursorChange&&this.getStage().content&&(this.getStage().content.style.cursor=""),H0.prototype.destroy.call(this),this.detach(),this._removeEvents(),this}toObject(){return We.prototype.toObject.call(this)}getClientRect(){return this.nodes().length>0?super.getClientRect():{x:0,y:0,width:0,height:0}}}function Hwe(e){return e instanceof Array||ce.warn("enabledAnchors value should be an array"),e instanceof Array&&e.forEach(function(t){Z3.indexOf(t)===-1&&ce.warn("Unknown anchor name: "+t+". Available names are: "+Z3.join(", "))}),e||[]}Ln.prototype.className="Transformer";wr(Ln);Z.addGetterSetter(Ln,"enabledAnchors",Z3,Hwe);Z.addGetterSetter(Ln,"flipEnabled",!0,Us());Z.addGetterSetter(Ln,"resizeEnabled",!0);Z.addGetterSetter(Ln,"anchorSize",10,He());Z.addGetterSetter(Ln,"rotateEnabled",!0);Z.addGetterSetter(Ln,"rotationSnaps",[]);Z.addGetterSetter(Ln,"rotateAnchorOffset",50,He());Z.addGetterSetter(Ln,"rotationSnapTolerance",5,He());Z.addGetterSetter(Ln,"borderEnabled",!0);Z.addGetterSetter(Ln,"anchorStroke","rgb(0, 161, 255)");Z.addGetterSetter(Ln,"anchorStrokeWidth",1,He());Z.addGetterSetter(Ln,"anchorFill","white");Z.addGetterSetter(Ln,"anchorCornerRadius",0,He());Z.addGetterSetter(Ln,"borderStroke","rgb(0, 161, 255)");Z.addGetterSetter(Ln,"borderStrokeWidth",1,He());Z.addGetterSetter(Ln,"borderDash");Z.addGetterSetter(Ln,"keepRatio",!0);Z.addGetterSetter(Ln,"centeredScaling",!1);Z.addGetterSetter(Ln,"ignoreStroke",!1);Z.addGetterSetter(Ln,"padding",0,He());Z.addGetterSetter(Ln,"node");Z.addGetterSetter(Ln,"nodes");Z.addGetterSetter(Ln,"boundBoxFunc");Z.addGetterSetter(Ln,"anchorDragBoundFunc");Z.addGetterSetter(Ln,"shouldOverdrawWholeArea",!1);Z.addGetterSetter(Ln,"useSingleNodeRotation",!0);Z.backCompat(Ln,{lineEnabled:"borderEnabled",rotateHandlerOffset:"rotateAnchorOffset",enabledHandlers:"enabledAnchors"});class tc extends De{_sceneFunc(t){t.beginPath(),t.arc(0,0,this.radius(),0,lt.getAngle(this.angle()),this.clockwise()),t.lineTo(0,0),t.closePath(),t.fillStrokeShape(this)}getWidth(){return this.radius()*2}getHeight(){return this.radius()*2}setWidth(t){this.radius(t/2)}setHeight(t){this.radius(t/2)}}tc.prototype.className="Wedge";tc.prototype._centroid=!0;tc.prototype._attrsAffectingSize=["radius"];wr(tc);Z.addGetterSetter(tc,"radius",0,He());Z.addGetterSetter(tc,"angle",0,He());Z.addGetterSetter(tc,"clockwise",!1);Z.backCompat(tc,{angleDeg:"angle",getAngleDeg:"getAngle",setAngleDeg:"setAngle"});function SI(){this.r=0,this.g=0,this.b=0,this.a=0,this.next=null}var Wwe=[512,512,456,512,328,456,335,512,405,328,271,456,388,335,292,512,454,405,364,328,298,271,496,456,420,388,360,335,312,292,273,512,482,454,428,405,383,364,345,328,312,298,284,271,259,496,475,456,437,420,404,388,374,360,347,335,323,312,302,292,282,273,265,512,497,482,468,454,441,428,417,405,394,383,373,364,354,345,337,328,320,312,305,298,291,284,278,271,265,259,507,496,485,475,465,456,446,437,428,420,412,404,396,388,381,374,367,360,354,347,341,335,329,323,318,312,307,302,297,292,287,282,278,273,269,265,261,512,505,497,489,482,475,468,461,454,447,441,435,428,422,417,411,405,399,394,389,383,378,373,368,364,359,354,350,345,341,337,332,328,324,320,316,312,309,305,301,298,294,291,287,284,281,278,274,271,268,265,262,259,257,507,501,496,491,485,480,475,470,465,460,456,451,446,442,437,433,428,424,420,416,412,408,404,400,396,392,388,385,381,377,374,370,367,363,360,357,354,350,347,344,341,338,335,332,329,326,323,320,318,315,312,310,307,304,302,299,297,294,292,289,287,285,282,280,278,275,273,271,269,267,265,263,261,259],Vwe=[9,11,12,13,13,14,14,15,15,15,15,16,16,16,16,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24];function Uwe(e,t){var n=e.data,r=e.width,i=e.height,o,a,s,l,d,p,g,m,y,b,S,E,P,k,L,R,N,z,$,F,q,j,Y,ve,ge=t+t+1,Se=r-1,_e=i-1,we=t+1,J=we*(we+1)/2,G=new SI,te=null,Q=G,W=null,se=null,de=Wwe[t],xe=Vwe[t];for(s=1;s>xe,Y!==0?(Y=255/Y,n[p]=(m*de>>xe)*Y,n[p+1]=(y*de>>xe)*Y,n[p+2]=(b*de>>xe)*Y):n[p]=n[p+1]=n[p+2]=0,m-=E,y-=P,b-=k,S-=L,E-=W.r,P-=W.g,k-=W.b,L-=W.a,l=g+((l=o+t+1)>xe,Y>0?(Y=255/Y,n[l]=(m*de>>xe)*Y,n[l+1]=(y*de>>xe)*Y,n[l+2]=(b*de>>xe)*Y):n[l]=n[l+1]=n[l+2]=0,m-=E,y-=P,b-=k,S-=L,E-=W.r,P-=W.g,k-=W.b,L-=W.a,l=o+((l=a+we)<_e?l:_e)*r<<2,m+=R+=W.r=n[l],y+=N+=W.g=n[l+1],b+=z+=W.b=n[l+2],S+=$+=W.a=n[l+3],W=W.next,E+=F=se.r,P+=q=se.g,k+=j=se.b,L+=Y=se.a,R-=F,N-=q,z-=j,$-=Y,se=se.next,p+=r}}const Gwe=function(t){var n=Math.round(this.blurRadius());n>0&&Uwe(t,n)};Z.addGetterSetter(We,"blurRadius",0,He(),Z.afterSetFilter);const jwe=function(e){var t=this.brightness()*255,n=e.data,r=n.length,i;for(i=0;i255?255:i,o=o<0?0:o>255?255:o,a=a<0?0:a>255?255:a,n[s]=i,n[s+1]=o,n[s+2]=a};Z.addGetterSetter(We,"contrast",0,He(),Z.afterSetFilter);const Kwe=function(e){var t=this.embossStrength()*10,n=this.embossWhiteLevel()*255,r=this.embossDirection(),i=this.embossBlend(),o=0,a=0,s=e.data,l=e.width,d=e.height,p=l*4,g=d;switch(r){case"top-left":o=-1,a=-1;break;case"top":o=-1,a=0;break;case"top-right":o=-1,a=1;break;case"right":o=0,a=1;break;case"bottom-right":o=1,a=1;break;case"bottom":o=1,a=0;break;case"bottom-left":o=1,a=-1;break;case"left":o=0,a=-1;break;default:ce.error("Unknown emboss direction: "+r)}do{var m=(g-1)*p,y=o;g+y<1&&(y=0),g+y>d&&(y=0);var b=(g-1+y)*l*4,S=l;do{var E=m+(S-1)*4,P=a;S+P<1&&(P=0),S+P>l&&(P=0);var k=b+(S-1+P)*4,L=s[E]-s[k],R=s[E+1]-s[k+1],N=s[E+2]-s[k+2],z=L,$=z>0?z:-z,F=R>0?R:-R,q=N>0?N:-N;if(F>$&&(z=R),q>$&&(z=N),z*=t,i){var j=s[E]+z,Y=s[E+1]+z,ve=s[E+2]+z;s[E]=j>255?255:j<0?0:j,s[E+1]=Y>255?255:Y<0?0:Y,s[E+2]=ve>255?255:ve<0?0:ve}else{var ge=n-z;ge<0?ge=0:ge>255&&(ge=255),s[E]=s[E+1]=s[E+2]=ge}}while(--S)}while(--g)};Z.addGetterSetter(We,"embossStrength",.5,He(),Z.afterSetFilter);Z.addGetterSetter(We,"embossWhiteLevel",.5,He(),Z.afterSetFilter);Z.addGetterSetter(We,"embossDirection","top-left",null,Z.afterSetFilter);Z.addGetterSetter(We,"embossBlend",!1,null,Z.afterSetFilter);function ow(e,t,n,r,i){var o=n-t,a=i-r,s;return o===0?r+a/2:a===0?r:(s=(e-t)/o,s=a*s+r,s)}const Ywe=function(e){var t=e.data,n=t.length,r=t[0],i=r,o,a=t[1],s=a,l,d=t[2],p=d,g,m,y=this.enhance();if(y!==0){for(m=0;mi&&(i=o),l=t[m+1],ls&&(s=l),g=t[m+2],gp&&(p=g);i===r&&(i=255,r=0),s===a&&(s=255,a=0),p===d&&(p=255,d=0);var b,S,E,P,k,L,R,N,z;for(y>0?(S=i+y*(255-i),E=r-y*(r-0),k=s+y*(255-s),L=a-y*(a-0),N=p+y*(255-p),z=d-y*(d-0)):(b=(i+r)*.5,S=i+y*(i-b),E=r+y*(r-b),P=(s+a)*.5,k=s+y*(s-P),L=a+y*(a-P),R=(p+d)*.5,N=p+y*(p-R),z=d+y*(d-R)),m=0;mP?E:P;var k=a,L=o,R,N,z=360/L*Math.PI/180,$,F;for(N=0;NL?k:L;var R=a,N=o,z,$,F=n.polarRotation||0,q,j;for(p=0;pt&&(R=L,N=0,z=-1),i=0;i=0&&y=0&&b=0&&y=0&&b=255*4?255:0}return a}function l6e(e,t,n){for(var r=[.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111,.1111111111111111],i=Math.round(Math.sqrt(r.length)),o=Math.floor(i/2),a=[],s=0;s=0&&y=0&&b=n))for(o=S;o=r||(a=(n*o+i)*4,s+=R[a+0],l+=R[a+1],d+=R[a+2],p+=R[a+3],L+=1);for(s=s/L,l=l/L,d=d/L,p=p/L,i=y;i=n))for(o=S;o=r||(a=(n*o+i)*4,R[a+0]=s,R[a+1]=l,R[a+2]=d,R[a+3]=p)}};Z.addGetterSetter(We,"pixelSize",8,He(),Z.afterSetFilter);const f6e=function(e){var t=Math.round(this.levels()*254)+1,n=e.data,r=n.length,i=255/t,o;for(o=0;o255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"blue",0,pH,Z.afterSetFilter);const p6e=function(e){var t=e.data,n=t.length,r=this.red(),i=this.green(),o=this.blue(),a=this.alpha(),s,l;for(s=0;s255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"green",0,function(e){return this._filterUpToDate=!1,e>255?255:e<0?0:Math.round(e)});Z.addGetterSetter(We,"blue",0,pH,Z.afterSetFilter);Z.addGetterSetter(We,"alpha",1,function(e){return this._filterUpToDate=!1,e>1?1:e<0?0:e});const g6e=function(e){var t=e.data,n=t.length,r,i,o,a;for(r=0;r127&&(d=255-d),p>127&&(p=255-p),g>127&&(g=255-g),t[l]=d,t[l+1]=p,t[l+2]=g}while(--s)}while(--o)},v6e=function(e){var t=this.threshold()*255,n=e.data,r=n.length,i;for(i=0;iae||T[V]!==M[ae]){var fe=` -`+T[V].replace(" at new "," at ");return c.displayName&&fe.includes("")&&(fe=fe.replace("",c.displayName)),fe}while(1<=V&&0<=ae);break}}}finally{oo=!1,Error.prepareStackTrace=v}return(c=c?c.displayName||c.name:"")?fs(c):""}var oc=Object.prototype.hasOwnProperty,Ys=[],Aa=-1;function qi(c){return{current:c}}function bn(c){0>Aa||(c.current=Ys[Aa],Ys[Aa]=null,Aa--)}function hn(c,f){Aa++,Ys[Aa]=c.current,c.current=f}var ao={},dr=qi(ao),Rr=qi(!1),so=ao;function Ia(c,f){var v=c.type.contextTypes;if(!v)return ao;var _=c.stateNode;if(_&&_.__reactInternalMemoizedUnmaskedChildContext===f)return _.__reactInternalMemoizedMaskedChildContext;var T={},M;for(M in v)T[M]=f[M];return _&&(c=c.stateNode,c.__reactInternalMemoizedUnmaskedChildContext=f,c.__reactInternalMemoizedMaskedChildContext=T),T}function Mr(c){return c=c.childContextTypes,c!=null}function Qo(){bn(Rr),bn(dr)}function Ql(c,f,v){if(dr.current!==ao)throw Error(a(168));hn(dr,f),hn(Rr,v)}function To(c,f,v){var _=c.stateNode;if(f=f.childContextTypes,typeof _.getChildContext!="function")return v;_=_.getChildContext();for(var T in _)if(!(T in f))throw Error(a(108,F(c)||"Unknown",T));return o({},v,_)}function lo(c){return c=(c=c.stateNode)&&c.__reactInternalMemoizedMergedChildContext||ao,so=dr.current,hn(dr,c),hn(Rr,Rr.current),!0}function Jl(c,f,v){var _=c.stateNode;if(!_)throw Error(a(169));v?(c=To(c,f,so),_.__reactInternalMemoizedMergedChildContext=c,bn(Rr),bn(dr),hn(dr,c)):bn(Rr),hn(Rr,v)}var ti=Math.clz32?Math.clz32:tu,eu=Math.log,ac=Math.LN2;function tu(c){return c>>>=0,c===0?32:31-(eu(c)/ac|0)|0}var Ra=64,_i=4194304;function Ma(c){switch(c&-c){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return c&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return c&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return c}}function hs(c,f){var v=c.pendingLanes;if(v===0)return 0;var _=0,T=c.suspendedLanes,M=c.pingedLanes,V=v&268435455;if(V!==0){var ae=V&~T;ae!==0?_=Ma(ae):(M&=V,M!==0&&(_=Ma(M)))}else V=v&~T,V!==0?_=Ma(V):M!==0&&(_=Ma(M));if(_===0)return 0;if(f!==0&&f!==_&&(f&T)===0&&(T=_&-_,M=f&-f,T>=M||T===16&&(M&4194240)!==0))return f;if((_&4)!==0&&(_|=v&16),f=c.entangledLanes,f!==0)for(c=c.entanglements,f&=_;0v;v++)f.push(c);return f}function ki(c,f,v){c.pendingLanes|=f,f!==536870912&&(c.suspendedLanes=0,c.pingedLanes=0),c=c.eventTimes,f=31-ti(f),c[f]=v}function ps(c,f){var v=c.pendingLanes&~f;c.pendingLanes=f,c.suspendedLanes=0,c.pingedLanes=0,c.expiredLanes&=f,c.mutableReadLanes&=f,c.entangledLanes&=f,f=c.entanglements;var _=c.eventTimes;for(c=c.expirationTimes;0>=V,T-=V,fi=1<<32-ti(f)+T|v<Ft?(Kr=Et,Et=null):Kr=Et.sibling;var Xt=et(he,Et,ye[Ft],Ye);if(Xt===null){Et===null&&(Et=Kr);break}c&&Et&&Xt.alternate===null&&f(he,Et),le=M(Xt,le,Ft),Lt===null?Ie=Xt:Lt.sibling=Xt,Lt=Xt,Et=Kr}if(Ft===ye.length)return v(he,Et),Fn&&Qs(he,Ft),Ie;if(Et===null){for(;FtFt?(Kr=Et,Et=null):Kr=Et.sibling;var _s=et(he,Et,Xt.value,Ye);if(_s===null){Et===null&&(Et=Kr);break}c&&Et&&_s.alternate===null&&f(he,Et),le=M(_s,le,Ft),Lt===null?Ie=_s:Lt.sibling=_s,Lt=_s,Et=Kr}if(Xt.done)return v(he,Et),Fn&&Qs(he,Ft),Ie;if(Et===null){for(;!Xt.done;Ft++,Xt=ye.next())Xt=Tt(he,Xt.value,Ye),Xt!==null&&(le=M(Xt,le,Ft),Lt===null?Ie=Xt:Lt.sibling=Xt,Lt=Xt);return Fn&&Qs(he,Ft),Ie}for(Et=_(he,Et);!Xt.done;Ft++,Xt=ye.next())Xt=Hn(Et,he,Ft,Xt.value,Ye),Xt!==null&&(c&&Xt.alternate!==null&&Et.delete(Xt.key===null?Ft:Xt.key),le=M(Xt,le,Ft),Lt===null?Ie=Xt:Lt.sibling=Xt,Lt=Xt);return c&&Et.forEach(function(yi){return f(he,yi)}),Fn&&Qs(he,Ft),Ie}function ua(he,le,ye,Ye){if(typeof ye=="object"&&ye!==null&&ye.type===p&&ye.key===null&&(ye=ye.props.children),typeof ye=="object"&&ye!==null){switch(ye.$$typeof){case l:e:{for(var Ie=ye.key,Lt=le;Lt!==null;){if(Lt.key===Ie){if(Ie=ye.type,Ie===p){if(Lt.tag===7){v(he,Lt.sibling),le=T(Lt,ye.props.children),le.return=he,he=le;break e}}else if(Lt.elementType===Ie||typeof Ie=="object"&&Ie!==null&&Ie.$$typeof===L&&g1(Ie)===Lt.type){v(he,Lt.sibling),le=T(Lt,ye.props),le.ref=$a(he,Lt,ye),le.return=he,he=le;break e}v(he,Lt);break}else f(he,Lt);Lt=Lt.sibling}ye.type===p?(le=fl(ye.props.children,he.mode,Ye,ye.key),le.return=he,he=le):(Ye=Ef(ye.type,ye.key,ye.props,null,he.mode,Ye),Ye.ref=$a(he,le,ye),Ye.return=he,he=Ye)}return V(he);case d:e:{for(Lt=ye.key;le!==null;){if(le.key===Lt)if(le.tag===4&&le.stateNode.containerInfo===ye.containerInfo&&le.stateNode.implementation===ye.implementation){v(he,le.sibling),le=T(le,ye.children||[]),le.return=he,he=le;break e}else{v(he,le);break}else f(he,le);le=le.sibling}le=hl(ye,he.mode,Ye),le.return=he,he=le}return V(he);case L:return Lt=ye._init,ua(he,le,Lt(ye._payload),Ye)}if(_e(ye))return An(he,le,ye,Ye);if(z(ye))return ir(he,le,ye,Ye);Yi(he,ye)}return typeof ye=="string"&&ye!==""||typeof ye=="number"?(ye=""+ye,le!==null&&le.tag===6?(v(he,le.sibling),le=T(le,ye),le.return=he,he=le):(v(he,le),le=gp(ye,he.mode,Ye),le.return=he,he=le),V(he)):v(he,le)}return ua}var hc=Qv(!0),Jv=Qv(!1),uf={},Io=qi(uf),Fa=qi(uf),ee=qi(uf);function be(c){if(c===uf)throw Error(a(174));return c}function pe(c,f){hn(ee,f),hn(Fa,c),hn(Io,uf),c=J(f),bn(Io),hn(Io,c)}function Je(){bn(Io),bn(Fa),bn(ee)}function kt(c){var f=be(ee.current),v=be(Io.current);f=G(v,c.type,f),v!==f&&(hn(Fa,c),hn(Io,f))}function nn(c){Fa.current===c&&(bn(Io),bn(Fa))}var Rt=qi(0);function gn(c){for(var f=c;f!==null;){if(f.tag===13){var v=f.memoizedState;if(v!==null&&(v=v.dehydrated,v===null||qs(v)||Xl(v)))return f}else if(f.tag===19&&f.memoizedProps.revealOrder!==void 0){if((f.flags&128)!==0)return f}else if(f.child!==null){f.child.return=f,f=f.child;continue}if(f===c)break;for(;f.sibling===null;){if(f.return===null||f.return===c)return null;f=f.return}f.sibling.return=f.return,f=f.sibling}return null}var cf=[];function m1(){for(var c=0;cv?v:4,c(!0);var _=pc.transition;pc.transition={};try{c(!1),f()}finally{It=v,pc.transition=_}}function Sc(){return Ti().memoizedState}function _1(c,f,v){var _=Fr(c);if(v={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null},Cc(c))_c(f,v);else if(v=fc(c,f,v,_),v!==null){var T=vi();Oo(v,c,_,T),mf(v,f,_)}}function wc(c,f,v){var _=Fr(c),T={lane:_,action:v,hasEagerState:!1,eagerState:null,next:null};if(Cc(c))_c(f,T);else{var M=c.alternate;if(c.lanes===0&&(M===null||M.lanes===0)&&(M=f.lastRenderedReducer,M!==null))try{var V=f.lastRenderedState,ae=M(V,v);if(T.hasEagerState=!0,T.eagerState=ae,I(ae,V)){var fe=f.interleaved;fe===null?(T.next=T,sf(f)):(T.next=fe.next,fe.next=T),f.interleaved=T;return}}catch{}finally{}v=fc(c,f,T,_),v!==null&&(T=vi(),Oo(v,c,_,T),mf(v,f,_))}}function Cc(c){var f=c.alternate;return c===kn||f!==null&&f===kn}function _c(c,f){df=sn=!0;var v=c.pending;v===null?f.next=f:(f.next=v.next,v.next=f),c.pending=f}function mf(c,f,v){if((v&4194240)!==0){var _=f.lanes;_&=c.pendingLanes,v|=_,f.lanes=v,Jo(c,v)}}var ys={readContext:uo,useCallback:hi,useContext:hi,useEffect:hi,useImperativeHandle:hi,useInsertionEffect:hi,useLayoutEffect:hi,useMemo:hi,useReducer:hi,useRef:hi,useState:hi,useDebugValue:hi,useDeferredValue:hi,useTransition:hi,useMutableSource:hi,useSyncExternalStore:hi,useId:hi,unstable_isNewReconciler:!1},qb={readContext:uo,useCallback:function(c,f){return ni().memoizedState=[c,f===void 0?null:f],c},useContext:uo,useEffect:n2,useImperativeHandle:function(c,f,v){return v=v!=null?v.concat([c]):null,fu(4194308,4,_r.bind(null,f,c),v)},useLayoutEffect:function(c,f){return fu(4194308,4,c,f)},useInsertionEffect:function(c,f){return fu(4,2,c,f)},useMemo:function(c,f){var v=ni();return f=f===void 0?null:f,c=c(),v.memoizedState=[c,f],c},useReducer:function(c,f,v){var _=ni();return f=v!==void 0?v(f):f,_.memoizedState=_.baseState=f,c={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:c,lastRenderedState:f},_.queue=c,c=c.dispatch=_1.bind(null,kn,c),[_.memoizedState,c]},useRef:function(c){var f=ni();return c={current:c},f.memoizedState=c},useState:t2,useDebugValue:S1,useDeferredValue:function(c){return ni().memoizedState=c},useTransition:function(){var c=t2(!1),f=c[0];return c=C1.bind(null,c[1]),ni().memoizedState=c,[f,c]},useMutableSource:function(){},useSyncExternalStore:function(c,f,v){var _=kn,T=ni();if(Fn){if(v===void 0)throw Error(a(407));v=v()}else{if(v=f(),qr===null)throw Error(a(349));(du&30)!==0||x1(_,f,v)}T.memoizedState=v;var M={value:v,getSnapshot:f};return T.queue=M,n2(tl.bind(null,_,M,c),[c]),_.flags|=2048,pf(9,bc.bind(null,_,M,v,f),void 0,null),v},useId:function(){var c=ni(),f=qr.identifierPrefix;if(Fn){var v=Da,_=fi;v=(_&~(1<<32-ti(_)-1)).toString(32)+v,f=":"+f+"R"+v,v=gc++,0op&&(f.flags|=128,_=!0,Pc(T,!1),f.lanes=4194304)}else{if(!_)if(c=gn(M),c!==null){if(f.flags|=128,_=!0,c=c.updateQueue,c!==null&&(f.updateQueue=c,f.flags|=4),Pc(T,!0),T.tail===null&&T.tailMode==="hidden"&&!M.alternate&&!Fn)return pi(f),null}else 2*pn()-T.renderingStartTime>op&&v!==1073741824&&(f.flags|=128,_=!0,Pc(T,!1),f.lanes=4194304);T.isBackwards?(M.sibling=f.child,f.child=M):(c=T.last,c!==null?c.sibling=M:f.child=M,T.last=M)}return T.tail!==null?(f=T.tail,T.rendering=f,T.tail=f.sibling,T.renderingStartTime=pn(),f.sibling=null,c=Rt.current,hn(Rt,_?c&1|2:c&1),f):(pi(f),null);case 22:case 23:return Dc(),v=f.memoizedState!==null,c!==null&&c.memoizedState!==null!==v&&(f.flags|=8192),v&&(f.mode&1)!==0?(fo&1073741824)!==0&&(pi(f),pt&&f.subtreeFlags&6&&(f.flags|=8192)):pi(f),null;case 24:return null;case 25:return null}throw Error(a(156,f.tag))}function R1(c,f){switch(d1(f),f.tag){case 1:return Mr(f.type)&&Qo(),c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 3:return Je(),bn(Rr),bn(dr),m1(),c=f.flags,(c&65536)!==0&&(c&128)===0?(f.flags=c&-65537|128,f):null;case 5:return nn(f),null;case 13:if(bn(Rt),c=f.memoizedState,c!==null&&c.dehydrated!==null){if(f.alternate===null)throw Error(a(340));uc()}return c=f.flags,c&65536?(f.flags=c&-65537|128,f):null;case 19:return bn(Rt),null;case 4:return Je(),null;case 10:return of(f.type._context),null;case 22:case 23:return Dc(),null;case 24:return null;default:return null}}var rl=!1,Dr=!1,Jb=typeof WeakSet=="function"?WeakSet:Set,rt=null;function Tc(c,f){var v=c.ref;if(v!==null)if(typeof v=="function")try{v(null)}catch(_){Kn(c,f,_)}else v.current=null}function oa(c,f,v){try{v()}catch(_){Kn(c,f,_)}}var jh=!1;function pu(c,f){for(te(c.containerInfo),rt=f;rt!==null;)if(c=rt,f=c.child,(c.subtreeFlags&1028)!==0&&f!==null)f.return=c,rt=f;else for(;rt!==null;){c=rt;try{var v=c.alternate;if((c.flags&1024)!==0)switch(c.tag){case 0:case 11:case 15:break;case 1:if(v!==null){var _=v.memoizedProps,T=v.memoizedState,M=c.stateNode,V=M.getSnapshotBeforeUpdate(c.elementType===c.type?_:ea(c.type,_),T);M.__reactInternalSnapshotBeforeUpdate=V}break;case 3:pt&&Gi(c.stateNode.containerInfo);break;case 5:case 6:case 4:case 17:break;default:throw Error(a(163))}}catch(ae){Kn(c,c.return,ae)}if(f=c.sibling,f!==null){f.return=c.return,rt=f;break}rt=c.return}return v=jh,jh=!1,v}function gi(c,f,v){var _=f.updateQueue;if(_=_!==null?_.lastEffect:null,_!==null){var T=_=_.next;do{if((T.tag&c)===c){var M=T.destroy;T.destroy=void 0,M!==void 0&&oa(f,v,M)}T=T.next}while(T!==_)}}function qh(c,f){if(f=f.updateQueue,f=f!==null?f.lastEffect:null,f!==null){var v=f=f.next;do{if((v.tag&c)===c){var _=v.create;v.destroy=_()}v=v.next}while(v!==f)}}function Kh(c){var f=c.ref;if(f!==null){var v=c.stateNode;switch(c.tag){case 5:c=we(v);break;default:c=v}typeof f=="function"?f(c):f.current=c}}function M1(c){var f=c.alternate;f!==null&&(c.alternate=null,M1(f)),c.child=null,c.deletions=null,c.sibling=null,c.tag===5&&(f=c.stateNode,f!==null&&st(f)),c.stateNode=null,c.return=null,c.dependencies=null,c.memoizedProps=null,c.memoizedState=null,c.pendingProps=null,c.stateNode=null,c.updateQueue=null}function Lc(c){return c.tag===5||c.tag===3||c.tag===4}function xs(c){e:for(;;){for(;c.sibling===null;){if(c.return===null||Lc(c.return))return null;c=c.return}for(c.sibling.return=c.return,c=c.sibling;c.tag!==5&&c.tag!==6&&c.tag!==18;){if(c.flags&2||c.child===null||c.tag===4)continue e;c.child.return=c,c=c.child}if(!(c.flags&2))return c.stateNode}}function Yh(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?Be(v,c,f):Pt(v,c);else if(_!==4&&(c=c.child,c!==null))for(Yh(c,f,v),c=c.sibling;c!==null;)Yh(c,f,v),c=c.sibling}function O1(c,f,v){var _=c.tag;if(_===5||_===6)c=c.stateNode,f?At(v,c,f):Pe(v,c);else if(_!==4&&(c=c.child,c!==null))for(O1(c,f,v),c=c.sibling;c!==null;)O1(c,f,v),c=c.sibling}var Er=null,aa=!1;function sa(c,f,v){for(v=v.child;v!==null;)zr(c,f,v),v=v.sibling}function zr(c,f,v){if(Ot&&typeof Ot.onCommitFiberUnmount=="function")try{Ot.onCommitFiberUnmount(an,v)}catch{}switch(v.tag){case 5:Dr||Tc(v,f);case 6:if(pt){var _=Er,T=aa;Er=null,sa(c,f,v),Er=_,aa=T,Er!==null&&(aa?qe(Er,v.stateNode):ct(Er,v.stateNode))}else sa(c,f,v);break;case 18:pt&&Er!==null&&(aa?Zd(Er,v.stateNode):Yd(Er,v.stateNode));break;case 4:pt?(_=Er,T=aa,Er=v.stateNode.containerInfo,aa=!0,sa(c,f,v),Er=_,aa=T):(Wt&&(_=v.stateNode.containerInfo,T=jr(_),js(_,T)),sa(c,f,v));break;case 0:case 11:case 14:case 15:if(!Dr&&(_=v.updateQueue,_!==null&&(_=_.lastEffect,_!==null))){T=_=_.next;do{var M=T,V=M.destroy;M=M.tag,V!==void 0&&((M&2)!==0||(M&4)!==0)&&oa(v,f,V),T=T.next}while(T!==_)}sa(c,f,v);break;case 1:if(!Dr&&(Tc(v,f),_=v.stateNode,typeof _.componentWillUnmount=="function"))try{_.props=v.memoizedProps,_.state=v.memoizedState,_.componentWillUnmount()}catch(ae){Kn(v,f,ae)}sa(c,f,v);break;case 21:sa(c,f,v);break;case 22:v.mode&1?(Dr=(_=Dr)||v.memoizedState!==null,sa(c,f,v),Dr=_):sa(c,f,v);break;default:sa(c,f,v)}}function Zh(c){var f=c.updateQueue;if(f!==null){c.updateQueue=null;var v=c.stateNode;v===null&&(v=c.stateNode=new Jb),f.forEach(function(_){var T=x2.bind(null,c,_);v.has(_)||(v.add(_),_.then(T,T))})}}function Ro(c,f){var v=f.deletions;if(v!==null)for(var _=0;_";case ep:return":has("+(z1(c)||"")+")";case tp:return'[role="'+c.value+'"]';case np:return'"'+c.value+'"';case Ac:return'[data-testname="'+c.value+'"]';default:throw Error(a(365))}}function Ic(c,f){var v=[];c=[c,0];for(var _=0;_T&&(T=V),_&=~M}if(_=T,_=pn()-_,_=(120>_?120:480>_?480:1080>_?1080:1920>_?1920:3e3>_?3e3:4320>_?4320:1960*ex(_/1960))-_,10<_){c.timeoutHandle=Ue(dl.bind(null,c,Ai,ws),_);break}dl(c,Ai,ws);break;case 5:dl(c,Ai,ws);break;default:throw Error(a(329))}}}return ii(c,pn()),c.callbackNode===v?lp.bind(null,c):null}function up(c,f){var v=Oc;return c.current.memoizedState.isDehydrated&&(ul(c,f).flags|=256),c=zc(c,f),c!==2&&(f=Ai,Ai=v,f!==null&&cp(f)),c}function cp(c){Ai===null?Ai=c:Ai.push.apply(Ai,c)}function ho(c){for(var f=c;;){if(f.flags&16384){var v=f.updateQueue;if(v!==null&&(v=v.stores,v!==null))for(var _=0;_c?16:c,_t===null)var _=!1;else{if(c=_t,_t=null,ap=0,($t&6)!==0)throw Error(a(331));var T=$t;for($t|=4,rt=c.current;rt!==null;){var M=rt,V=M.child;if((rt.flags&16)!==0){var ae=M.deletions;if(ae!==null){for(var fe=0;fepn()-B1?ul(c,0):F1|=v),ii(c,f)}function G1(c,f){f===0&&((c.mode&1)===0?f=1:(f=_i,_i<<=1,(_i&130023424)===0&&(_i=4194304)));var v=vi();c=ta(c,f),c!==null&&(ki(c,f,v),ii(c,v))}function nx(c){var f=c.memoizedState,v=0;f!==null&&(v=f.retryLane),G1(c,v)}function x2(c,f){var v=0;switch(c.tag){case 13:var _=c.stateNode,T=c.memoizedState;T!==null&&(v=T.retryLane);break;case 19:_=c.stateNode;break;default:throw Error(a(314))}_!==null&&_.delete(f),G1(c,v)}var j1;j1=function(c,f,v){if(c!==null)if(c.memoizedProps!==f.pendingProps||Rr.current)Zi=!0;else{if((c.lanes&v)===0&&(f.flags&128)===0)return Zi=!1,Xb(c,f,v);Zi=(c.flags&131072)!==0}else Zi=!1,Fn&&(f.flags&1048576)!==0&&c1(f,Zt,f.index);switch(f.lanes=0,f.tag){case 2:var _=f.type;Ba(c,f),c=f.pendingProps;var T=Ia(f,dr.current);dc(f,v),T=y1(null,f,_,c,T,v);var M=mc();return f.flags|=1,typeof T=="object"&&T!==null&&typeof T.render=="function"&&T.$$typeof===void 0?(f.tag=1,f.memoizedState=null,f.updateQueue=null,Mr(_)?(M=!0,lo(f)):M=!1,f.memoizedState=T.state!==null&&T.state!==void 0?T.state:null,h1(f),T.updater=na,f.stateNode=T,T._reactInternals=f,p1(f,_,c,v),f=ra(null,f,_,!0,M,v)):(f.tag=0,Fn&&M&&Ei(f),Li(null,f,T,v),f=f.child),f;case 16:_=f.elementType;e:{switch(Ba(c,f),c=f.pendingProps,T=_._init,_=T(_._payload),f.type=_,T=f.tag=hp(_),c=ea(_,c),T){case 0:f=P1(null,f,_,c,v);break e;case 1:f=d2(null,f,_,c,v);break e;case 11:f=s2(null,f,_,c,v);break e;case 14:f=nl(null,f,_,ea(_.type,c),v);break e}throw Error(a(306,_,""))}return f;case 0:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:ea(_,T),P1(c,f,_,T,v);case 1:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:ea(_,T),d2(c,f,_,T,v);case 3:e:{if(f2(f),c===null)throw Error(a(387));_=f.pendingProps,M=f.memoizedState,T=M.element,Kv(c,f),zh(f,_,null,v);var V=f.memoizedState;if(_=V.element,Dt&&M.isDehydrated)if(M={element:_,isDehydrated:!1,cache:V.cache,pendingSuspenseBoundaries:V.pendingSuspenseBoundaries,transitions:V.transitions},f.updateQueue.baseState=M,f.memoizedState=M,f.flags&256){T=kc(Error(a(423)),f),f=h2(c,f,_,v,T);break e}else if(_!==T){T=kc(Error(a(424)),f),f=h2(c,f,_,v,T);break e}else for(Dt&&(Lo=Wd(f.stateNode.containerInfo),qn=f,Fn=!0,Ki=null,Ao=!1),v=Jv(f,null,_,v),f.child=v;v;)v.flags=v.flags&-3|4096,v=v.sibling;else{if(uc(),_===T){f=bs(c,f,v);break e}Li(c,f,_,v)}f=f.child}return f;case 5:return kt(f),c===null&&ef(f),_=f.type,T=f.pendingProps,M=c!==null?c.memoizedProps:null,V=T.children,ze(_,T)?V=null:M!==null&&ze(_,M)&&(f.flags|=32),c2(c,f),Li(c,f,V,v),f.child;case 6:return c===null&&ef(f),null;case 13:return p2(c,f,v);case 4:return pe(f,f.stateNode.containerInfo),_=f.pendingProps,c===null?f.child=hc(f,null,_,v):Li(c,f,_,v),f.child;case 11:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:ea(_,T),s2(c,f,_,T,v);case 7:return Li(c,f,f.pendingProps,v),f.child;case 8:return Li(c,f,f.pendingProps.children,v),f.child;case 12:return Li(c,f,f.pendingProps.children,v),f.child;case 10:e:{if(_=f.type._context,T=f.pendingProps,M=f.memoizedProps,V=T.value,qv(f,_,V),M!==null)if(I(M.value,V)){if(M.children===T.children&&!Rr.current){f=bs(c,f,v);break e}}else for(M=f.child,M!==null&&(M.return=f);M!==null;){var ae=M.dependencies;if(ae!==null){V=M.child;for(var fe=ae.firstContext;fe!==null;){if(fe.context===_){if(M.tag===1){fe=vs(-1,v&-v),fe.tag=2;var Fe=M.updateQueue;if(Fe!==null){Fe=Fe.shared;var it=Fe.pending;it===null?fe.next=fe:(fe.next=it.next,it.next=fe),Fe.pending=fe}}M.lanes|=v,fe=M.alternate,fe!==null&&(fe.lanes|=v),af(M.return,v,f),ae.lanes|=v;break}fe=fe.next}}else if(M.tag===10)V=M.type===f.type?null:M.child;else if(M.tag===18){if(V=M.return,V===null)throw Error(a(341));V.lanes|=v,ae=V.alternate,ae!==null&&(ae.lanes|=v),af(V,v,f),V=M.sibling}else V=M.child;if(V!==null)V.return=M;else for(V=M;V!==null;){if(V===f){V=null;break}if(M=V.sibling,M!==null){M.return=V.return,V=M;break}V=V.return}M=V}Li(c,f,T.children,v),f=f.child}return f;case 9:return T=f.type,_=f.pendingProps.children,dc(f,v),T=uo(T),_=_(T),f.flags|=1,Li(c,f,_,v),f.child;case 14:return _=f.type,T=ea(_,f.pendingProps),T=ea(_.type,T),nl(c,f,_,T,v);case 15:return l2(c,f,f.type,f.pendingProps,v);case 17:return _=f.type,T=f.pendingProps,T=f.elementType===_?T:ea(_,T),Ba(c,f),f.tag=1,Mr(_)?(c=!0,lo(f)):c=!1,dc(f,v),Zv(f,_,T),p1(f,_,T,v),ra(null,f,_,!0,c,v);case 19:return m2(c,f,v);case 22:return u2(c,f,v)}throw Error(a(156,f.tag))};function Ri(c,f){return gs(c,f)}function Ha(c,f,v,_){this.tag=c,this.key=v,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=f,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=_,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function No(c,f,v,_){return new Ha(c,f,v,_)}function q1(c){return c=c.prototype,!(!c||!c.isReactComponent)}function hp(c){if(typeof c=="function")return q1(c)?1:0;if(c!=null){if(c=c.$$typeof,c===S)return 11;if(c===k)return 14}return 2}function po(c,f){var v=c.alternate;return v===null?(v=No(c.tag,f,c.key,c.mode),v.elementType=c.elementType,v.type=c.type,v.stateNode=c.stateNode,v.alternate=c,c.alternate=v):(v.pendingProps=f,v.type=c.type,v.flags=0,v.subtreeFlags=0,v.deletions=null),v.flags=c.flags&14680064,v.childLanes=c.childLanes,v.lanes=c.lanes,v.child=c.child,v.memoizedProps=c.memoizedProps,v.memoizedState=c.memoizedState,v.updateQueue=c.updateQueue,f=c.dependencies,v.dependencies=f===null?null:{lanes:f.lanes,firstContext:f.firstContext},v.sibling=c.sibling,v.index=c.index,v.ref=c.ref,v}function Ef(c,f,v,_,T,M){var V=2;if(_=c,typeof c=="function")q1(c)&&(V=1);else if(typeof c=="string")V=5;else e:switch(c){case p:return fl(v.children,T,M,f);case g:V=8,T|=8;break;case m:return c=No(12,v,f,T|2),c.elementType=m,c.lanes=M,c;case E:return c=No(13,v,f,T),c.elementType=E,c.lanes=M,c;case P:return c=No(19,v,f,T),c.elementType=P,c.lanes=M,c;case R:return pp(v,T,M,f);default:if(typeof c=="object"&&c!==null)switch(c.$$typeof){case y:V=10;break e;case b:V=9;break e;case S:V=11;break e;case k:V=14;break e;case L:V=16,_=null;break e}throw Error(a(130,c==null?c:typeof c,""))}return f=No(V,v,f,T),f.elementType=c,f.type=_,f.lanes=M,f}function fl(c,f,v,_){return c=No(7,c,_,f),c.lanes=v,c}function pp(c,f,v,_){return c=No(22,c,_,f),c.elementType=R,c.lanes=v,c.stateNode={isHidden:!1},c}function gp(c,f,v){return c=No(6,c,null,f),c.lanes=v,c}function hl(c,f,v){return f=No(4,c.children!==null?c.children:[],c.key,f),f.lanes=v,f.stateNode={containerInfo:c.containerInfo,pendingChildren:null,implementation:c.implementation},f}function Pf(c,f,v,_,T){this.tag=f,this.containerInfo=c,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=Ve,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Xs(0),this.expirationTimes=Xs(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Xs(0),this.identifierPrefix=_,this.onRecoverableError=T,Dt&&(this.mutableSourceEagerHydrationData=null)}function S2(c,f,v,_,T,M,V,ae,fe){return c=new Pf(c,f,v,ae,fe),f===1?(f=1,M===!0&&(f|=8)):f=0,M=No(3,null,null,f),c.current=M,M.stateNode=c,M.memoizedState={element:_,isDehydrated:v,cache:null,transitions:null,pendingSuspenseBoundaries:null},h1(M),c}function K1(c){if(!c)return ao;c=c._reactInternals;e:{if(q(c)!==c||c.tag!==1)throw Error(a(170));var f=c;do{switch(f.tag){case 3:f=f.stateNode.context;break e;case 1:if(Mr(f.type)){f=f.stateNode.__reactInternalMemoizedMergedChildContext;break e}}f=f.return}while(f!==null);throw Error(a(171))}if(c.tag===1){var v=c.type;if(Mr(v))return To(c,v,f)}return f}function Y1(c){var f=c._reactInternals;if(f===void 0)throw typeof c.render=="function"?Error(a(188)):(c=Object.keys(c).join(","),Error(a(268,c)));return c=ve(f),c===null?null:c.stateNode}function Tf(c,f){if(c=c.memoizedState,c!==null&&c.dehydrated!==null){var v=c.retryLane;c.retryLane=v!==0&&v=Fe&&M>=Tt&&T<=it&&V<=et){c.splice(f,1);break}else if(_!==Fe||v.width!==fe.width||etV){if(!(M!==Tt||v.height!==fe.height||it<_||Fe>T)){Fe>_&&(fe.width+=Fe-_,fe.x=_),itM&&(fe.height+=Tt-M,fe.y=M),etv&&(v=V)),V ")+` - -No matching component was found for: - `)+c.join(" > ")}return null},n.getPublicRootInstance=function(c){if(c=c.current,!c.child)return null;switch(c.child.tag){case 5:return we(c.child.stateNode);default:return c.child.stateNode}},n.injectIntoDevTools=function(c){if(c={bundleType:c.bundleType,version:c.version,rendererPackageName:c.rendererPackageName,rendererConfig:c.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:s.ReactCurrentDispatcher,findHostInstanceByFiber:mp,findFiberByHostInstance:c.findFiberByHostInstance||Z1,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0"},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")c=!1;else{var f=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(f.isDisabled||!f.supportsFiber)c=!0;else{try{an=f.inject(c),Ot=f}catch{}c=!!f.checkDCE}}return c},n.isAlreadyRendering=function(){return!1},n.observeVisibleRects=function(c,f,v,_){if(!yt)throw Error(a(363));c=$1(c,f);var T=Ut(c,v,_).disconnect;return{disconnect:function(){T()}}},n.registerMutableSourceForHydration=function(c,f){var v=f._getVersion;v=v(f._source),c.mutableSourceEagerHydrationData==null?c.mutableSourceEagerHydrationData=[f,v]:c.mutableSourceEagerHydrationData.push(f,v)},n.runWithPriority=function(c,f){var v=It;try{return It=c,f()}finally{It=v}},n.shouldError=function(){return null},n.shouldSuspend=function(){return!1},n.updateContainer=function(c,f,v,_){var T=f.current,M=vi(),V=Fr(T);return v=K1(v),f.context===null?f.context=v:f.pendingContext=v,f=vs(M,V),f.payload={element:c},_=_===void 0?null:_,_!==null&&(f.callback=_),c=el(T,f,V),c!==null&&(Oo(c,T,V,M),Dh(c,T,V)),V},n};(function(e){e.exports=y6e})(jH);const b6e=g9(jH.exports);var N7={exports:{}},Mh={};/** - * @license React - * react-reconciler-constants.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */Mh.ConcurrentRoot=1;Mh.ContinuousEventPriority=4;Mh.DefaultEventPriority=16;Mh.DiscreteEventPriority=1;Mh.IdleEventPriority=536870912;Mh.LegacyRoot=0;(function(e){e.exports=Mh})(N7);const wI={children:!0,ref:!0,key:!0,style:!0,forwardedRef:!0,unstable_applyCache:!0,unstable_applyDrawHitFromCache:!0};let CI=!1,_I=!1;const D7=".react-konva-event",x6e=`ReactKonva: You have a Konva node with draggable = true and position defined but no onDragMove or onDragEnd events are handled. -Position of a node will be changed during drag&drop, so you should update state of the react app as well. -Consider to add onDragMove or onDragEnd events. -For more info see: https://github.com/konvajs/react-konva/issues/256 -`,S6e=`ReactKonva: You are using "zIndex" attribute for a Konva node. -react-konva may get confused with ordering. Just define correct order of elements in your render function of a component. -For more info see: https://github.com/konvajs/react-konva/issues/194 -`,w6e={};function Vb(e,t,n=w6e){if(!CI&&"zIndex"in t&&(console.warn(S6e),CI=!0),!_I&&t.draggable){var r=t.x!==void 0||t.y!==void 0,i=t.onDragEnd||t.onDragMove;r&&!i&&(console.warn(x6e),_I=!0)}for(var o in n)if(!wI[o]){var a=o.slice(0,2)==="on",s=n[o]!==t[o];if(a&&s){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),e.off(l,n[o])}var d=!t.hasOwnProperty(o);d&&e.setAttr(o,void 0)}var p=t._useStrictMode,g={},m=!1;const y={};for(var o in t)if(!wI[o]){var a=o.slice(0,2)==="on",b=n[o]!==t[o];if(a&&b){var l=o.substr(2).toLowerCase();l.substr(0,7)==="content"&&(l="content"+l.substr(7,1).toUpperCase()+l.substr(8)),t[o]&&(y[l]=t[o])}!a&&(t[o]!==n[o]||p&&t[o]!==e.getAttr(o))&&(m=!0,g[o]=t[o])}m&&(e.setAttrs(g),Dd(e));for(var l in y)e.on(l+D7,y[l])}function Dd(e){if(!lt.autoDrawEnabled){var t=e.getLayer()||e.getStage();t&&t.batchDraw()}}const qH={},C6e={};mh.Node.prototype._applyProps=Vb;function _6e(e,t){if(typeof t=="string"){console.error(`Do not use plain text as child of Konva.Node. You are using text: ${t}`);return}e.add(t),Dd(e)}function k6e(e,t,n){let r=mh[e];r||(console.error(`Konva has no node with the type ${e}. Group will be used instead. If you use minimal version of react-konva, just import required nodes into Konva: "import "konva/lib/shapes/${e}" If you want to render DOM elements as part of canvas tree take a look into this demo: https://konvajs.github.io/docs/react/DOM_Portal.html`),r=mh.Group);const i={},o={};for(var a in t){var s=a.slice(0,2)==="on";s?o[a]=t[a]:i[a]=t[a]}const l=new r(i);return Vb(l,o),l}function E6e(e,t,n){console.error(`Text components are not supported for now in ReactKonva. Your text is: "${e}"`)}function P6e(e,t,n){return!1}function T6e(e){return e}function L6e(){return null}function A6e(){return null}function I6e(e,t,n,r){return C6e}function R6e(){}function M6e(e){}function O6e(e,t){return!1}function N6e(){return qH}function D6e(){return qH}const z6e=setTimeout,$6e=clearTimeout,F6e=-1;function B6e(e,t){return!1}const H6e=!1,W6e=!0,V6e=!0;function U6e(e,t){t.parent===e?t.moveToTop():e.add(t),Dd(e)}function G6e(e,t){t.parent===e?t.moveToTop():e.add(t),Dd(e)}function KH(e,t,n){t._remove(),e.add(t),t.setZIndex(n.getZIndex()),Dd(e)}function j6e(e,t,n){KH(e,t,n)}function q6e(e,t){t.destroy(),t.off(D7),Dd(e)}function K6e(e,t){t.destroy(),t.off(D7),Dd(e)}function Y6e(e,t,n){console.error(`Text components are not yet supported in ReactKonva. You text is: "${n}"`)}function Z6e(e,t,n){}function X6e(e,t,n,r,i){Vb(e,i,r)}function Q6e(e){e.hide(),Dd(e)}function J6e(e){}function eCe(e,t){(t.visible==null||t.visible)&&e.show()}function tCe(e,t){}function nCe(e){}function rCe(){}const iCe=()=>N7.exports.DefaultEventPriority,oCe=Object.freeze(Object.defineProperty({__proto__:null,appendInitialChild:_6e,createInstance:k6e,createTextInstance:E6e,finalizeInitialChildren:P6e,getPublicInstance:T6e,prepareForCommit:L6e,preparePortalMount:A6e,prepareUpdate:I6e,resetAfterCommit:R6e,resetTextContent:M6e,shouldDeprioritizeSubtree:O6e,getRootHostContext:N6e,getChildHostContext:D6e,scheduleTimeout:z6e,cancelTimeout:$6e,noTimeout:F6e,shouldSetTextContent:B6e,isPrimaryRenderer:H6e,warnsIfNotActing:W6e,supportsMutation:V6e,appendChild:U6e,appendChildToContainer:G6e,insertBefore:KH,insertInContainerBefore:j6e,removeChild:q6e,removeChildFromContainer:K6e,commitTextUpdate:Y6e,commitMount:Z6e,commitUpdate:X6e,hideInstance:Q6e,hideTextInstance:J6e,unhideInstance:eCe,unhideTextInstance:tCe,clearContainer:nCe,detachDeletedInstance:rCe,getCurrentEventPriority:iCe,now:Jp.exports.unstable_now,idlePriority:Jp.exports.unstable_IdlePriority,run:Jp.exports.unstable_runWithPriority},Symbol.toStringTag,{value:"Module"}));var aCe=Object.defineProperty,sCe=Object.defineProperties,lCe=Object.getOwnPropertyDescriptors,kI=Object.getOwnPropertySymbols,uCe=Object.prototype.hasOwnProperty,cCe=Object.prototype.propertyIsEnumerable,EI=(e,t,n)=>t in e?aCe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,PI=(e,t)=>{for(var n in t||(t={}))uCe.call(t,n)&&EI(e,n,t[n]);if(kI)for(var n of kI(t))cCe.call(t,n)&&EI(e,n,t[n]);return e},dCe=(e,t)=>sCe(e,lCe(t));function z7(e,t,n){if(!e)return;if(n(e)===!0)return e;let r=t?e.return:e.child;for(;r;){const i=z7(r,t,n);if(i)return i;r=t?null:r.sibling}}function YH(e){try{return Object.defineProperties(e,{_currentRenderer:{get(){return null},set(){}},_currentRenderer2:{get(){return null},set(){}}})}catch{return e}}const $7=YH(C.exports.createContext(null));class ZH extends C.exports.Component{render(){return w($7.Provider,{value:this._reactInternals,children:this.props.children})}}const{ReactCurrentOwner:fCe,ReactCurrentDispatcher:hCe}=C.exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function pCe(){const e=C.exports.useContext($7);if(!e)throw new Error("its-fine: useFiber must be called within a !");const t=C.exports.useId();return C.exports.useMemo(()=>{var r;return(r=fCe.current)!=null?r:z7(e,!1,i=>{let o=i.memoizedState;for(;o;){if(o.memoizedState===t)return!0;o=o.next}})},[e,t])}const xg=[],TI=new WeakMap;function gCe(){var e;const t=pCe();xg.splice(0,xg.length),z7(t,!0,n=>{var r;const i=(r=n.type)==null?void 0:r._context;i&&i!==$7&&xg.push(YH(i))});for(const n of xg){const r=(e=hCe.current)==null?void 0:e.readContext(n);TI.set(n,r)}return C.exports.useMemo(()=>xg.reduce((n,r)=>i=>C.exports.createElement(n,null,C.exports.createElement(r.Provider,dCe(PI({},i),{value:TI.get(r)}))),n=>w(ZH,{...PI({},n)})),[])}function mCe(e){const t=re.useRef();return re.useLayoutEffect(()=>{t.current=e}),t.current}const vCe=e=>{const t=re.useRef(),n=re.useRef(),r=re.useRef(),i=mCe(e),o=gCe(),a=s=>{const{forwardedRef:l}=e;!l||(typeof l=="function"?l(s):l.current=s)};return re.useLayoutEffect(()=>(n.current=new mh.Stage({width:e.width,height:e.height,container:t.current}),a(n.current),r.current=Fg.createContainer(n.current,N7.exports.LegacyRoot,!1,null),Fg.updateContainer(w(o,{children:e.children}),r.current),()=>{!mh.isBrowser||(a(null),Fg.updateContainer(null,r.current,null),n.current.destroy())}),[]),re.useLayoutEffect(()=>{a(n.current),Vb(n.current,e,i),Fg.updateContainer(w(o,{children:e.children}),r.current,null)}),w("div",{ref:t,accessKey:e.accessKey,className:e.className,role:e.role,style:e.style,tabIndex:e.tabIndex,title:e.title})},aw="Layer",yCe="Group",qC="Rect",KC="Circle",bCe="Line",sw="Image",xCe="Transformer",Fg=b6e(oCe);Fg.injectIntoDevTools({findHostInstanceByFiber:()=>null,bundleType:0,version:re.version,rendererPackageName:"react-konva"});const SCe=re.forwardRef((e,t)=>w(ZH,{children:w(vCe,{...e,forwardedRef:t})})),wCe=e=>{const{r:t,g:n,b:r,a:i}=e;return`rgba(${t}, ${n}, ${r}, ${i})`},XH=e=>{const{r:t,g:n,b:r}=e;return`rgba(${t}, ${n}, ${r})`},CCe=Jt(e=>e.inpainting,e=>{const{lines:t,maskColor:n}=e;return{lines:t,maskColorString:XH(n)}}),_Ce=Jt([e=>e.inpainting,e=>e.options,ds],(e,t,n)=>{const{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,lines:d,pastLines:p,futureLines:g,shouldShowBoundingBoxFill:m}=e,{showDualDisplay:y}=t;return{tool:r,brushSize:i,maskColor:o,shouldInvertMask:a,shouldShowMask:s,shouldShowCheckboardTransparency:l,canUndo:p.length>0,canRedo:g.length>0,isMaskEmpty:d.length===0,activeTabName:n,showDualDisplay:y,shouldShowBoundingBoxFill:m}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),kCe=Jt(e=>e.inpainting,e=>{const{tool:t,brushSize:n,maskColor:r,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}=e;return{tool:t,brushSize:n,shouldInvertMask:i,shouldShowMask:o,shouldShowCheckboardTransparency:a,maskColor:r,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}},{memoizeOptions:{resultEqualityCheck:(e,t)=>{const{imageToInpaint:n,...r}=e,{imageToInpaint:i,...o}=t;return Yt.isEqual(r,o)&&n==i}}}),ECe=()=>{const{lines:e,maskColorString:t}=Ze(CCe);return w(Un,{children:e.map((n,r)=>w(bCe,{points:n.points,stroke:t,strokeWidth:n.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,listening:!1,globalCompositeOperation:n.tool==="brush"?"source-over":"destination-out"},r))})},PCe=Jt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},shouldShowBrushPreview:i,brushSize:o,maskColor:a,tool:s,shouldShowBrush:l}=e;return{cursorPosition:t,width:n,height:r,shouldShowBrushPreview:i,brushSize:o,maskColorString:XH(a),tool:s,shouldShowBrush:l}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),TCe=()=>{const{cursorPosition:e,width:t,height:n,shouldShowBrushPreview:r,brushSize:i,maskColorString:o,tool:a,shouldShowBrush:s}=Ze(PCe);return!s||!(e||r)?null:w(KC,{x:e?e.x:t/2,y:e?e.y:n/2,radius:i/2,fill:o,listening:!1,globalCompositeOperation:a==="eraser"?"destination-out":"source-over"})},LCe=Jt(e=>e.inpainting,e=>{const{cursorPosition:t,canvasDimensions:{width:n,height:r},shouldShowBrushPreview:i,brushSize:o,stageScale:a,shouldShowBrush:s}=e;return{cursorPosition:t,width:n,height:r,shouldShowBrushPreview:i,brushSize:o,strokeWidth:1/a,shouldShowBrush:s}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),ACe=()=>{const{cursorPosition:e,width:t,height:n,shouldShowBrushPreview:r,brushSize:i,strokeWidth:o,shouldShowBrush:a}=Ze(LCe);return!a||!(e||r)?null:ne(Un,{children:[w(KC,{x:e?e.x:t/2,y:e?e.y:n/2,radius:i/2,stroke:"rgba(0,0,0,1)",strokeWidth:o,strokeEnabled:!0,listening:!1}),w(KC,{x:e?e.x:t/2,y:e?e.y:n/2,radius:1,fill:"rgba(0,0,0,1)",listening:!1})]})},ICe=()=>{const{tool:e,lines:t,cursorPosition:n,brushSize:r,canvasDimensions:{width:i,height:o},maskColor:a,shouldInvertMask:s,shouldShowMask:l,shouldShowBrushPreview:d,shouldShowCheckboardTransparency:p,imageToInpaint:g,shouldShowBrush:m,shouldShowBoundingBoxFill:y,shouldLockBoundingBox:b,stageScale:S,pastLines:E,futureLines:P,needsCache:k,isDrawing:L}=Ze(R=>R.inpainting);return C.exports.useLayoutEffect(()=>{!El.current||El.current.cache({x:0,y:0,width:i,height:o})},[t,n,i,o,e,r,a,s,l,d,p,g,m,y,b,S,E,P,k,L]),C.exports.useEffect(()=>{const R=window.setTimeout(()=>{!El.current||El.current.cache({x:0,y:0,width:i,height:o})},0);return()=>{window.clearTimeout(R)}}),null},$y=e=>{const t=e.getPointerPosition(),n=e.getAbsoluteTransform().copy();if(!t||!n)return;const r=n.invert().point(t);return{x:Math.floor(r.x),y:Math.floor(r.y)}},RCe=4,QH=Jt(e=>e.inpainting,e=>{const{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFill:r,canvasDimensions:i,stageScale:o,imageToInpaint:a,shouldLockBoundingBox:s}=e;return{boundingBoxCoordinate:t,boundingBoxDimensions:n,boundingBoxPreviewFillString:wCe(r),canvasDimensions:i,stageScale:o,imageToInpaint:a,dash:RCe/o,strokeWidth:1/o,shouldLockBoundingBox:s}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),MCe=()=>{const{boundingBoxCoordinate:e,boundingBoxDimensions:t,boundingBoxPreviewFillString:n,canvasDimensions:r}=Ze(QH);return ne(yCe,{children:[w(qC,{x:0,y:0,height:r.height,width:r.width,fill:n}),w(qC,{x:e.x,y:e.y,width:t.width,height:t.height,fill:"rgb(255,255,255)",listening:!1,globalCompositeOperation:"destination-out"})]})},OCe=()=>{const e=gt(),{boundingBoxCoordinate:t,boundingBoxDimensions:n,strokeWidth:r,stageScale:i,imageToInpaint:o,shouldLockBoundingBox:a}=Ze(QH),s=C.exports.useRef(null),l=C.exports.useRef(null);C.exports.useEffect(()=>{!s.current||!l.current||(s.current.nodes([l.current]),s.current.getLayer()?.batchDraw())},[a]),C.exports.useEffect(()=>()=>{const S=Ms.current?.container();!S||(S.style.cursor="unset")},[a]);const d=64*i,p=C.exports.useCallback(S=>{e(TA({x:Math.floor(S.target.x()),y:Math.floor(S.target.y())}))},[e]),g=C.exports.useCallback(S=>{if(!o)return t;const{x:E,y:P}=S,k=o.width-n.width,L=o.height-n.height,R=Math.floor(Yt.clamp(E,0,k*i)),N=Math.floor(Yt.clamp(P,0,L*i));return{x:R,y:N}},[t,n,o,i]),m=C.exports.useCallback(()=>{if(!l.current)return;const S=l.current,E=S.scaleX(),P=S.scaleY(),k=Math.round(S.width()*E),L=Math.round(S.height()*P),R=Math.round(S.x()),N=Math.round(S.y());e(Mg({width:k,height:L})),e(TA({x:R,y:N})),S.scaleX(1),S.scaleY(1)},[e]),y=C.exports.useCallback((S,E,P)=>{const k=S.x%d,L=S.y%d,R=CA(E.x,d)+k,N=CA(E.y,d)+L,z=Math.abs(E.x-R),$=Math.abs(E.y-N),F=z!o||E.width+E.x>o.width*i||E.height+E.y>o.height*i||E.x<0||E.y<0?S:E,[o,i]);return ne(Un,{children:[w(qC,{x:t.x,y:t.y,width:n.width,height:n.height,ref:l,stroke:"white",strokeWidth:r,listening:!a,onMouseEnter:S=>{const E=S?.target?.getStage()?.container();!E||(E.style.cursor=a?"none":"move")},onMouseLeave:S=>{const E=S?.target?.getStage()?.container();!E||(E.style.cursor=a?"none":"default")},draggable:!a,onDragMove:p,dragBoundFunc:g,onTransform:m}),w(xCe,{ref:s,anchorCornerRadius:3,anchorFill:"rgba(212,216,234,1)",anchorSize:15,anchorStroke:"rgb(42,42,42)",borderDash:[4,4],borderStroke:"black",rotateEnabled:!1,borderEnabled:!0,flipEnabled:!1,ignoreStroke:!0,keepRatio:!1,listening:!a,enabledAnchors:a?[]:void 0,boundBoxFunc:b,anchorDragBoundFunc:y})]})},NCe=Jt([e=>e.options,e=>e.inpainting,ds],(e,t,n)=>{const{shouldShowMask:r,cursorPosition:i,shouldLockBoundingBox:o}=t;return{activeTabName:n,shouldShowMask:r,isCursorOnCanvas:Boolean(i),shouldLockBoundingBox:o}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),DCe=()=>{const e=gt(),{shouldShowMask:t,activeTabName:n,isCursorOnCanvas:r,shouldLockBoundingBox:i}=Ze(NCe),o=C.exports.useRef(!1),a=C.exports.useRef(null);return C.exports.useEffect(()=>{const s=l=>{if(!(!["x"," "].includes(l.key)||n!=="inpainting"||!t)){if(!r){a.current||(a.current=l),o.current=!1;return}if(l.stopPropagation(),l.preventDefault(),!l.repeat){if(a.current||(o.current=!0,a.current=l),!o.current&&l.type==="keyup"){o.current=!0,a.current=l;return}switch(l.key){case"x":{e(H3e());break}case" ":{if(!t)break;l.type==="keydown"&&e(Og(!1)),e(_B(!i));break}}a.current=l,o.current=!0}}};return document.addEventListener("keydown",s),document.addEventListener("keyup",s),()=>{document.removeEventListener("keydown",s),document.removeEventListener("keyup",s)}},[e,n,t,r,i]),null};let Ms,El,X3;const zCe=()=>{const e=gt(),{tool:t,brushSize:n,shouldInvertMask:r,shouldShowMask:i,shouldShowCheckboardTransparency:o,maskColor:a,imageToInpaint:s,stageScale:l,shouldShowBoundingBox:d,shouldShowBoundingBoxFill:p,isDrawing:g,shouldLockBoundingBox:m,boundingBoxDimensions:y}=Ze(kCe),b=Id();Ms=C.exports.useRef(null),El=C.exports.useRef(null),X3=C.exports.useRef(null);const S=C.exports.useRef({x:0,y:0}),E=C.exports.useRef(!1),[P,k]=C.exports.useState(null);C.exports.useEffect(()=>{if(s){const F=new Image;F.onload=()=>{X3.current=F,k(F)},F.onerror=()=>{b({title:"Unable to Load Image",description:`Image ${s.url} failed to load`,status:"error",isClosable:!0}),e(x7())},F.src=s.url}else k(null)},[s,e,l,b]);const L=C.exports.useCallback(()=>{if(!Ms.current)return;const F=$y(Ms.current);!F||!El.current||!m||(e(Og(!0)),e(kA({tool:t,strokeWidth:n/2,points:[F.x,F.y]})))},[e,n,t,m]),R=C.exports.useCallback(()=>{if(!Ms.current)return;const F=$y(Ms.current);!F||(e(PA(F)),!(!El.current||!m)&&(S.current=F,g&&(E.current=!0,e(EA([F.x,F.y])))))},[e,g,m]),N=C.exports.useCallback(()=>{if(!E.current&&g&&Ms.current){const F=$y(Ms.current);if(!F||!El.current||!m)return;e(EA([F.x,F.y]))}else E.current=!1;e(Og(!1))},[e,g,m]),z=C.exports.useCallback(()=>{e(PA(null)),e(Og(!1))},[e]),$=C.exports.useCallback(F=>{if(F.evt.buttons===1){if(!Ms.current)return;const q=$y(Ms.current);if(!q||!El.current||!m)return;e(Og(!0)),e(kA({tool:t,strokeWidth:n/2,points:[q.x,q.y]}))}},[e,n,t,m]);return ne("div",{className:"inpainting-canvas-wrapper",tabIndex:1,children:[ne("div",{className:"inpainting-alerts",children:[!i&&w("div",{style:{pointerEvents:"none"},children:"Mask Hidden (H)"}),r&&w("div",{style:{pointerEvents:"none"},children:"Mask Inverted (Shift+M)"}),!m&&w("div",{style:{pointerEvents:"none"},children:`Transforming Bounding Box ${y.width}x${y.height} (M)`})]}),P&&ne(SCe,{width:Math.floor(P.width*l),height:Math.floor(P.height*l),scale:{x:l,y:l},onMouseDown:L,onMouseMove:R,onMouseEnter:$,onMouseUp:N,onMouseOut:z,onMouseLeave:z,style:{cursor:i?"none":"default"},className:"inpainting-canvas-stage checkerboard",ref:Ms,children:[!r&&!o&&w(aw,{name:"image-layer",listening:!1,children:w(sw,{listening:!1,image:P})}),i&&ne(Un,{children:[ne(aw,{name:"mask-layer",listening:!1,opacity:o||r?1:a.a,ref:El,children:[w(ECe,{}),m&&w(TCe,{}),r&&w(sw,{image:P,listening:!1,globalCompositeOperation:"source-in"}),!r&&o&&w(sw,{image:P,listening:!1,globalCompositeOperation:"source-out"})]}),i&&ne(aw,{children:[p&&d&&w(MCe,{}),d&&w(OCe,{}),m&&w(ACe,{})]})]})]}),w(ICe,{}),w(DCe,{})]})},$Ce=()=>{const e=gt(),{needsCache:t,imageToInpaint:n}=Ze(i=>i.inpainting),r=C.exports.useRef(null);return C.exports.useLayoutEffect(()=>{window.setTimeout(()=>{if(!r.current||!n)return;const i=r.current.clientWidth,o=r.current.clientHeight,a=Math.min(1,Math.min(i/n.width,o/n.height));e(B3e(a))},0)},[e,n,t]),w("div",{ref:r,className:"inpainting-canvas-area",children:w(X0,{thickness:"2px",speed:"1s",size:"xl"})})};function FCe(e){return Ct({tag:"svg",attr:{viewBox:"0 0 16 16",fill:"currentColor"},child:[{tag:"path",attr:{d:"M14 1H3L2 2v11l1 1h11l1-1V2l-1-1zM8 13H3V2h5v11zm6 0H9V2h5v11z"}}]})(e)}function Ub(){return(Ub=Object.assign||function(e){for(var t=1;t=0||(i[n]=e[n]);return i}function YC(e){var t=C.exports.useRef(e),n=C.exports.useRef(function(r){t.current&&t.current(r)});return t.current=e,n.current}var W0=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e0:E.buttons>0)&&i.current?o(LI(i.current,E,s.current)):S(!1)},b=function(){return S(!1)};function S(E){var P=l.current,k=ZC(i.current),L=E?k.addEventListener:k.removeEventListener;L(P?"touchmove":"mousemove",y),L(P?"touchend":"mouseup",b)}return[function(E){var P=E.nativeEvent,k=i.current;if(k&&(AI(P),!function(R,N){return N&&!mm(R)}(P,l.current)&&k)){if(mm(P)){l.current=!0;var L=P.changedTouches||[];L.length&&(s.current=L[0].identifier)}k.focus(),o(LI(k,P,s.current)),S(!0)}},function(E){var P=E.which||E.keyCode;P<37||P>40||(E.preventDefault(),a({left:P===39?.05:P===37?-.05:0,top:P===40?.05:P===38?-.05:0}))},S]},[a,o]),p=d[0],g=d[1],m=d[2];return C.exports.useEffect(function(){return m},[m]),w("div",{...Ub({},r,{onTouchStart:p,onMouseDown:p,className:"react-colorful__interactive",ref:i,onKeyDown:g,tabIndex:0,role:"slider"})})}),Gb=function(e){return e.filter(Boolean).join(" ")},B7=function(e){var t=e.color,n=e.left,r=e.top,i=r===void 0?.5:r,o=Gb(["react-colorful__pointer",e.className]);return w("div",{className:o,style:{top:100*i+"%",left:100*n+"%"},children:w("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}})})},So=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},eW=function(e){var t=e.s,n=e.v,r=e.a,i=(200-t)*n/100;return{h:So(e.h),s:So(i>0&&i<200?t*n/100/(i<=100?i:200-i)*100:0),l:So(i/2),a:So(r,2)}},XC=function(e){var t=eW(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},lw=function(e){var t=eW(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},BCe=function(e){var t=e.h,n=e.s,r=e.v,i=e.a;t=t/360*6,n/=100,r/=100;var o=Math.floor(t),a=r*(1-n),s=r*(1-(t-o)*n),l=r*(1-(1-t+o)*n),d=o%6;return{r:So(255*[r,s,a,a,l,r][d]),g:So(255*[l,r,r,s,a,a][d]),b:So(255*[a,a,l,r,r,s][d]),a:So(i,2)}},HCe=function(e){var t=e.r,n=e.g,r=e.b,i=e.a,o=Math.max(t,n,r),a=o-Math.min(t,n,r),s=a?o===t?(n-r)/a:o===n?2+(r-t)/a:4+(t-n)/a:0;return{h:So(60*(s<0?s+6:s)),s:So(o?a/o*100:0),v:So(o/255*100),a:i}},WCe=re.memo(function(e){var t=e.hue,n=e.onChange,r=Gb(["react-colorful__hue",e.className]);return re.createElement("div",{className:r},re.createElement(F7,{onMove:function(i){n({h:360*i.left})},onKey:function(i){n({h:W0(t+360*i.left,0,360)})},"aria-label":"Hue","aria-valuenow":So(t),"aria-valuemax":"360","aria-valuemin":"0"},re.createElement(B7,{className:"react-colorful__hue-pointer",left:t/360,color:XC({h:t,s:100,v:100,a:1})})))}),VCe=re.memo(function(e){var t=e.hsva,n=e.onChange,r={backgroundColor:XC({h:t.h,s:100,v:100,a:1})};return re.createElement("div",{className:"react-colorful__saturation",style:r},re.createElement(F7,{onMove:function(i){n({s:100*i.left,v:100-100*i.top})},onKey:function(i){n({s:W0(t.s+100*i.left,0,100),v:W0(t.v-100*i.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+So(t.s)+"%, Brightness "+So(t.v)+"%"},re.createElement(B7,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:XC(t)})))}),tW=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0};function UCe(e,t,n){var r=YC(n),i=C.exports.useState(function(){return e.toHsva(t)}),o=i[0],a=i[1],s=C.exports.useRef({color:t,hsva:o});C.exports.useEffect(function(){if(!e.equal(t,s.current.color)){var d=e.toHsva(t);s.current={hsva:d,color:t},a(d)}},[t,e]),C.exports.useEffect(function(){var d;tW(o,s.current.hsva)||e.equal(d=e.fromHsva(o),s.current.color)||(s.current={hsva:o,color:d},r(d))},[o,e,r]);var l=C.exports.useCallback(function(d){a(function(p){return Object.assign({},p,d)})},[]);return[o,l]}var GCe=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,jCe=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},II=new Map,qCe=function(e){GCe(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!II.has(t)){var n=t.createElement("style");n.innerHTML=`.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,II.set(t,n);var r=jCe();r&&n.setAttribute("nonce",r),t.head.appendChild(n)}},[])},KCe=function(e){var t=e.className,n=e.hsva,r=e.onChange,i={backgroundImage:"linear-gradient(90deg, "+lw(Object.assign({},n,{a:0}))+", "+lw(Object.assign({},n,{a:1}))+")"},o=Gb(["react-colorful__alpha",t]),a=So(100*n.a);return re.createElement("div",{className:o},w("div",{className:"react-colorful__alpha-gradient",style:i}),re.createElement(F7,{onMove:function(s){r({a:s.left})},onKey:function(s){r({a:W0(n.a+s.left)})},"aria-label":"Alpha","aria-valuetext":a+"%","aria-valuenow":a,"aria-valuemin":"0","aria-valuemax":"100"},re.createElement(B7,{className:"react-colorful__alpha-pointer",left:n.a,color:lw(n)})))},YCe=function(e){var t=e.className,n=e.colorModel,r=e.color,i=r===void 0?n.defaultColor:r,o=e.onChange,a=JH(e,["className","colorModel","color","onChange"]),s=C.exports.useRef(null);qCe(s);var l=UCe(n,i,o),d=l[0],p=l[1],g=Gb(["react-colorful",t]);return re.createElement("div",Ub({},a,{ref:s,className:g}),w(VCe,{hsva:d,onChange:p}),w(WCe,{hue:d.h,onChange:p}),re.createElement(KCe,{hsva:d,onChange:p,className:"react-colorful__last-control"}))},ZCe={defaultColor:{r:0,g:0,b:0,a:1},toHsva:HCe,fromHsva:BCe,equal:tW},XCe=function(e){return re.createElement(YCe,Ub({},e,{colorModel:ZCe}))};const QCe=e=>{const{styleClass:t,...n}=e;return w(XCe,{className:`invokeai__color-picker ${t}`,...n})},JCe=()=>{const{tool:e,brushSize:t,maskColor:n,shouldInvertMask:r,shouldShowMask:i,canUndo:o,canRedo:a,isMaskEmpty:s,activeTabName:l,showDualDisplay:d}=Ze(_Ce),p=gt(),g=Id(),[m,y]=C.exports.useState(!1);Ht("[",Y=>{Y.preventDefault(),t-5>0?P(t-5):P(1)},{enabled:l==="inpainting"&&i},[l,i,t]),Ht("]",Y=>{Y.preventDefault(),P(t+5)},{enabled:l==="inpainting"&&i},[l,i,t]),Ht("shift+[",Y=>{Y.preventDefault(),z({...n,a:Math.max(n.a-.05,0)})},{enabled:l==="inpainting"&&i},[l,i,n.a]),Ht("shift+]",Y=>{Y.preventDefault(),z({...n,a:Math.min(n.a+.05,100)})},{enabled:l==="inpainting"&&i},[l,i,n.a]),Ht("e",Y=>{Y.preventDefault(),!(l!=="inpainting"||!i)&&S()},{enabled:l==="inpainting"&&i},[l,i]),Ht("b",Y=>{Y.preventDefault(),E()},{enabled:l==="inpainting"&&i},[l,i]),Ht("m",Y=>{Y.preventDefault(),p(q3e())},{enabled:l==="inpainting"&&i},[l,i]),Ht("cmd+z, control+z",Y=>{Y.preventDefault(),$()},{enabled:l==="inpainting"&&i&&o},[l,i,o]),Ht("cmd+shift+z, control+shift+z, control+y, cmd+y",Y=>{Y.preventDefault(),F()},{enabled:l==="inpainting"&&i&&a},[l,i,a]),Ht("h",Y=>{Y.preventDefault(),k()},{enabled:l==="inpainting"},[l,i]),Ht("shift+m",Y=>{Y.preventDefault(),L()},{enabled:l==="inpainting"&&i},[l,r,i]),Ht("shift+c",Y=>{Y.preventDefault(),b(),g({title:"Mask Cleared",status:"success",duration:2500,isClosable:!0})},{enabled:l==="inpainting"&&i&&!s},[l,s,i]),Ht("shift+j",()=>{q()},[d]);const b=()=>{p(z3e())},S=()=>p(_A("eraser")),E=()=>p(_A("brush")),P=Y=>{p(GS(!0)),p(M3e(Y))},k=()=>p(N3e(!i)),L=()=>p(O3e(!r)),R=()=>{p(GS(!0))},N=()=>{p(GS(!1))},z=Y=>{p(D3e(Y))},$=()=>p($3e()),F=()=>p(F3e()),q=()=>{p(S9e(!d)),p(th(!0))};return ne("div",{className:"inpainting-settings",children:[ne("div",{className:"inpainting-buttons-group",children:[w(w5,{trigger:"hover",onOpen:R,onClose:N,triggerComponent:w(vn,{"aria-label":"Brush (B)",tooltip:"Brush (B)",icon:w(fB,{}),onClick:E,"data-selected":e==="brush",isDisabled:!i}),children:ne("div",{className:"inpainting-slider-numberinput",children:[w(Y3,{label:"Brush Size",value:t,onChange:P,min:1,max:200,width:"100px",focusThumbOnChange:!1,isDisabled:!i}),w(Co,{value:t,onChange:P,width:"80px",min:1,max:999,isDisabled:!i})]})}),w(vn,{"aria-label":"Eraser (E)",tooltip:"Eraser (E)",icon:w(J5e,{}),onClick:S,"data-selected":e==="eraser",isDisabled:!i})]}),ne("div",{className:"inpainting-buttons-group",children:[w(w5,{trigger:"click",onOpen:()=>y(!0),onClose:()=>y(!1),triggerComponent:w(vn,{"aria-label":"Mask Options",tooltip:"Mask Options",icon:w(t3e,{}),cursor:"pointer","data-selected":m}),children:ne("div",{className:"inpainting-button-dropdown",children:[w(vn,{"aria-label":"Hide/Show Mask (H)",tooltip:"Hide/Show Mask (H)","data-selected":!i,icon:i?w(hH,{size:22}):w(fH,{size:22}),onClick:k}),w(vn,{tooltip:"Invert Mask Display (Shift+M)","aria-label":"Invert Mask Display (Shift+M)","data-selected":r,icon:r?w(M5e,{size:22}):w(D5e,{size:22}),onClick:L,isDisabled:!i}),w(w5,{trigger:"hover",placement:"right",styleClass:"inpainting-color-picker",triggerComponent:w(vn,{"aria-label":"Mask Color",tooltip:"Mask Color",icon:w(i3e,{}),isDisabled:!i,cursor:"pointer"}),children:w(QCe,{color:n,onChange:z})})]})}),w(vn,{"aria-label":"Clear Mask (Shift+C)",tooltip:"Clear Mask (Shift+C)",icon:w(a3e,{size:18,style:{transform:"rotate(45deg)"}}),onClick:b,isDisabled:s||!i})]}),ne("div",{className:"inpainting-buttons-group",children:[w(vn,{"aria-label":"Undo",tooltip:"Undo",icon:w(h3e,{}),onClick:$,isDisabled:!o||!i}),w(vn,{"aria-label":"Redo",tooltip:"Redo",icon:w(l3e,{}),onClick:F,isDisabled:!a||!i})]}),w("div",{className:"inpainting-buttons-group",children:w(vn,{"aria-label":"Clear Image",tooltip:"Clear Image",icon:w(f3e,{size:16}),onClick:()=>{p(x7())}})}),w(vn,{"aria-label":"Split Layout (Shift+J)",tooltip:"Split Layout (Shift+J)",icon:w(FCe,{}),"data-selected":d,onClick:q})]})},e9e=Jt([e=>e.inpainting,e=>e.options],(e,t)=>{const{needsCache:n,imageToInpaint:r}=e,{showDualDisplay:i}=t;return{needsCache:n,showDualDisplay:i,imageToInpaint:r}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),t9e=()=>{const e=gt(),{showDualDisplay:t,needsCache:n,imageToInpaint:r}=Ze(e9e);return C.exports.useLayoutEffect(()=>{const o=Yt.debounce(()=>e(th(!0)),250);return window.addEventListener("resize",o),()=>window.removeEventListener("resize",o)},[e]),ne("div",{className:t?"workarea-split-view":"workarea-single-view",children:[ne("div",{className:"workarea-split-view-left",children:[r?ne("div",{className:"inpainting-main-area",children:[w(JCe,{}),w("div",{className:"inpainting-canvas-area",children:n?w($Ce,{}):w(zCe,{})})]}):w(PB,{})," "]}),t&&w("div",{className:"workarea-split-view-right",children:w(w7,{})})]})};function n9e(){return w(L7,{optionsPanel:w(sSe,{}),styleClass:"inpainting-workarea-overrides",children:w(t9e,{})})}function r9e(){const e=Ze(n=>n.options.showAdvancedOptions),t={seed:{header:w(l7,{}),feature:xo.SEED,options:w(u7,{})},variations:{header:w(d7,{}),feature:xo.VARIATIONS,options:w(f7,{})},face_restore:{header:w(o7,{}),feature:xo.FACE_CORRECTION,options:w(Rb,{})},upscale:{header:w(c7,{}),feature:xo.UPSCALE,options:w(Mb,{})},other:{header:w(tB,{}),feature:xo.OTHER,options:w(nB,{})}};return ne(S7,{children:[w(y7,{}),w(v7,{}),w(g7,{}),w(h7,{}),e?w(m7,{accordionInfo:t}):null]})}const i9e=()=>w("div",{className:"workarea-single-view",children:w("div",{className:"text-to-image-area",children:w(w7,{})})});function o9e(){return w(L7,{optionsPanel:w(r9e,{}),children:w(i9e,{})})}const Op={txt2img:{title:w(Wye,{fill:"black",boxSize:"2.5rem"}),workarea:w(o9e,{}),tooltip:"Text To Image"},img2img:{title:w(zye,{fill:"black",boxSize:"2.5rem"}),workarea:w(nSe,{}),tooltip:"Image To Image"},inpainting:{title:w($ye,{fill:"black",boxSize:"2.5rem"}),workarea:w(n9e,{}),tooltip:"Inpainting"},outpainting:{title:w(Bye,{fill:"black",boxSize:"2.5rem"}),workarea:w(Nye,{}),tooltip:"Outpainting"},nodes:{title:w(Fye,{fill:"black",boxSize:"2.5rem"}),workarea:w(Oye,{}),tooltip:"Nodes"},postprocess:{title:w(Hye,{fill:"black",boxSize:"2.5rem"}),workarea:w(Dye,{}),tooltip:"Post Processing"}},Hv=Yt.map(Op,(e,t)=>t);[...Hv];function a9e(){const e=Ze(i=>i.options.activeTab),t=gt();Ht("1",()=>{t(Ka(0))}),Ht("2",()=>{t(Ka(1))}),Ht("3",()=>{t(Ka(2))}),Ht("4",()=>{t(Ka(3))}),Ht("5",()=>{t(Ka(4))}),Ht("6",()=>{t(Ka(5))});const n=()=>{const i=[];return Object.keys(Op).forEach(o=>{i.push(w(li,{hasArrow:!0,label:Op[o].tooltip,placement:"right",children:w(j$,{children:Op[o].title})},o))}),i},r=()=>{const i=[];return Object.keys(Op).forEach(o=>{i.push(w(U$,{className:"app-tabs-panel",children:Op[o].workarea},o))}),i};return ne(V$,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:i=>{t(Ka(i))},children:[w("div",{className:"app-tabs-list",children:n()}),w(G$,{className:"app-tabs-panels",children:r()})]})}const nW={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,img2imgStrength:.75,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunFacetool:!1,facetoolStrength:.8,facetoolType:"gfpgan",codeformerFidelity:.75,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,showDualDisplay:!0,shouldShowOptionsPanel:!0,shouldPinOptionsPanel:!0,optionsPanelScrollPosition:0,shouldHoldOptionsPanelOpen:!1,shouldLoopback:!1},s9e=nW,rW=bb({name:"options",initialState:s9e,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=S5(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setFacetoolStrength:(e,t)=>{e.facetoolStrength=t.payload},setCodeformerFidelity:(e,t)=>{e.codeformerFidelity=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,i={...e,[n]:r};return n==="seed"&&(i.shouldRandomizeSeed=!1),i},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllTextToImageParameters:(e,t)=>{const{sampler:n,prompt:r,seed:i,variations:o,steps:a,cfg_scale:s,threshold:l,perlin:d,seamless:p,hires_fix:g,width:m,height:y}=t.payload.image;o&&o.length>0?(e.seedWeights=B3(o),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),r&&(e.prompt=S5(r)),n&&(e.sampler=n),a&&(e.steps=a),s&&(e.cfgScale=s),l&&(e.threshold=l),typeof l>"u"&&(e.threshold=0),d&&(e.perlin=d),typeof d>"u"&&(e.perlin=0),typeof p=="boolean"&&(e.seamless=p),typeof g=="boolean"&&(e.hiresFix=g),m&&(e.width=m),y&&(e.height=y)},setAllImageToImageParameters:(e,t)=>{const{type:n,strength:r,fit:i,init_image_path:o,mask_image_path:a}=t.payload.image;n==="img2img"&&(o&&(e.initialImage=o),a&&(e.maskPath=a),r&&(e.img2imgStrength=r),typeof i=="boolean"&&(e.shouldFitToWidthHeight=i))},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:i,seed:o,variations:a,steps:s,cfg_scale:l,threshold:d,perlin:p,seamless:g,hires_fix:m,width:y,height:b,strength:S,fit:E,init_image_path:P,mask_image_path:k}=t.payload.image;n==="img2img"&&(P&&(e.initialImage=P),k&&(e.maskPath=k),S&&(e.img2imgStrength=S),typeof E=="boolean"&&(e.shouldFitToWidthHeight=E)),a&&a.length>0?(e.seedWeights=B3(a),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,o&&(e.seed=o,e.shouldRandomizeSeed=!1),i&&(e.prompt=S5(i)),r&&(e.sampler=r),s&&(e.steps=s),l&&(e.cfgScale=l),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),p&&(e.perlin=p),typeof p>"u"&&(e.perlin=0),typeof g=="boolean"&&(e.seamless=g),typeof m=="boolean"&&(e.hiresFix=m),y&&(e.width=y),b&&(e.height=b)},resetOptionsState:e=>({...e,...nW}),setShouldRunFacetool:(e,t)=>{e.shouldRunFacetool=t.payload},setFacetoolType:(e,t)=>{e.facetoolType=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{typeof t.payload=="number"?e.activeTab=t.payload:e.activeTab=Hv.indexOf(t.payload)},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShowDualDisplay:(e,t)=>{e.showDualDisplay=t.payload},setInitialImage:(e,t)=>{e.initialImage=t.payload},clearInitialImage:e=>{e.initialImage=void 0},setShouldPinOptionsPanel:(e,t)=>{e.shouldPinOptionsPanel=t.payload},setShouldShowOptionsPanel:(e,t)=>{e.shouldShowOptionsPanel=t.payload},setOptionsPanelScrollPosition:(e,t)=>{e.optionsPanelScrollPosition=t.payload},setShouldHoldOptionsPanelOpen:(e,t)=>{e.shouldHoldOptionsPanelOpen=t.payload},setShouldLoopback:(e,t)=>{e.shouldLoopback=t.payload}}}),{setPrompt:H7,setIterations:l9e,setSteps:iW,setCfgScale:oW,setThreshold:u9e,setPerlin:c9e,setHeight:aW,setWidth:sW,setSampler:lW,setSeed:Wv,setSeamless:uW,setHiresFix:cW,setImg2imgStrength:dW,setFacetoolStrength:P5,setFacetoolType:T5,setCodeformerFidelity:fW,setUpscalingLevel:QC,setUpscalingStrength:JC,setMaskPath:e9,resetSeed:v7e,resetOptionsState:y7e,setShouldFitToWidthHeight:hW,setParameter:b7e,setShouldGenerateVariations:d9e,setSeedWeights:pW,setVariationAmount:f9e,setAllParameters:h9e,setShouldRunFacetool:p9e,setShouldRunESRGAN:g9e,setShouldRandomizeSeed:m9e,setShowAdvancedOptions:v9e,setActiveTab:Ka,setShouldShowImageDetails:y9e,setAllTextToImageParameters:b9e,setAllImageToImageParameters:x9e,setShowDualDisplay:S9e,setInitialImage:cv,clearInitialImage:t9,setShouldShowOptionsPanel:n9,setShouldPinOptionsPanel:w9e,setOptionsPanelScrollPosition:C9e,setShouldHoldOptionsPanelOpen:_9e,setShouldLoopback:k9e}=rW.actions,E9e=rW.reducer,Gl=Object.create(null);Gl.open="0";Gl.close="1";Gl.ping="2";Gl.pong="3";Gl.message="4";Gl.upgrade="5";Gl.noop="6";const L5=Object.create(null);Object.keys(Gl).forEach(e=>{L5[Gl[e]]=e});const P9e={type:"error",data:"parser error"},T9e=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",L9e=typeof ArrayBuffer=="function",A9e=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,gW=({type:e,data:t},n,r)=>T9e&&t instanceof Blob?n?r(t):RI(t,r):L9e&&(t instanceof ArrayBuffer||A9e(t))?n?r(t):RI(new Blob([t]),r):r(Gl[e]+(t||"")),RI=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},MI="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Bg=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,i=0,o,a,s,l;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),p=new Uint8Array(d);for(r=0;r>4,p[i++]=(a&15)<<4|s>>2,p[i++]=(s&3)<<6|l&63;return d},R9e=typeof ArrayBuffer=="function",mW=(e,t)=>{if(typeof e!="string")return{type:"message",data:vW(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:M9e(e.substring(1),t)}:L5[n]?e.length>1?{type:L5[n],data:e.substring(1)}:{type:L5[n]}:P9e},M9e=(e,t)=>{if(R9e){const n=I9e(e);return vW(n,t)}else return{base64:!0,data:e}},vW=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},yW=String.fromCharCode(30),O9e=(e,t)=>{const n=e.length,r=new Array(n);let i=0;e.forEach((o,a)=>{gW(o,!1,s=>{r[a]=s,++i===n&&t(r.join(yW))})})},N9e=(e,t)=>{const n=e.split(yW),r=[];for(let i=0;itypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function xW(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const z9e=setTimeout,$9e=clearTimeout;function jb(e,t){t.useNativeTimers?(e.setTimeoutFn=z9e.bind(ad),e.clearTimeoutFn=$9e.bind(ad)):(e.setTimeoutFn=setTimeout.bind(ad),e.clearTimeoutFn=clearTimeout.bind(ad))}const F9e=1.33;function B9e(e){return typeof e=="string"?H9e(e):Math.ceil((e.byteLength||e.size)*F9e)}function H9e(e){let t=0,n=0;for(let r=0,i=e.length;r=57344?n+=3:(r++,n+=4);return n}class W9e extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class SW extends ei{constructor(t){super(),this.writable=!1,jb(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new W9e(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=mW(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const wW="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),r9=64,V9e={};let OI=0,Fy=0,NI;function DI(e){let t="";do t=wW[e%r9]+t,e=Math.floor(e/r9);while(e>0);return t}function CW(){const e=DI(+new Date);return e!==NI?(OI=0,NI=e):e+"."+DI(OI++)}for(;Fy{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};N9e(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,O9e(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=CW()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const i=_W(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new Bl(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(i,o)=>{this.onError("xhr post error",i,o)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class Bl extends ei{constructor(t,n){super(),jb(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=xW(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new EW(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=Bl.requestsCount++,Bl.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=j9e,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete Bl.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}Bl.requestsCount=0;Bl.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",zI);else if(typeof addEventListener=="function"){const e="onpagehide"in ad?"pagehide":"unload";addEventListener(e,zI,!1)}}function zI(){for(let e in Bl.requests)Bl.requests.hasOwnProperty(e)&&Bl.requests[e].abort()}const Y9e=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),By=ad.WebSocket||ad.MozWebSocket,$I=!0,Z9e="arraybuffer",FI=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class X9e extends SW{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=FI?{}:xW(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=$I&&!FI?n?new By(t,n):new By(t):new By(t,n,r)}catch(i){return this.emitReserved("error",i)}this.ws.binaryType=this.socket.binaryType||Z9e,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const a={};try{$I&&this.ws.send(o)}catch{}i&&Y9e(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=CW()),this.supportsBinary||(t.b64=1);const i=_W(t),o=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(o?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(i.length?"?"+i:"")}check(){return!!By}}const Q9e={websocket:X9e,polling:K9e},J9e=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,e8e=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function i9(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let i=J9e.exec(e||""),o={},a=14;for(;a--;)o[e8e[a]]=i[a]||"";return n!=-1&&r!=-1&&(o.source=t,o.host=o.host.substring(1,o.host.length-1).replace(/;/g,":"),o.authority=o.authority.replace("[","").replace("]","").replace(/;/g,":"),o.ipv6uri=!0),o.pathNames=t8e(o,o.path),o.queryKey=n8e(o,o.query),o}function t8e(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function n8e(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,i,o){i&&(n[i]=o)}),n}class ed extends ei{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=i9(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=i9(n.host).host),jb(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=U9e(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=bW,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new Q9e[t](r)}open(){let t;if(this.opts.rememberUpgrade&&ed.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;ed.priorWebsocketSuccess=!1;const i=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",g=>{if(!r)if(g.type==="pong"&&g.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;ed.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(p(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function o(){r||(r=!0,p(),n.close(),n=null)}const a=g=>{const m=new Error("probe error: "+g);m.transport=n.name,o(),this.emitReserved("upgradeError",m)};function s(){a("transport closed")}function l(){a("socket closed")}function d(g){n&&g.name!==n.name&&o()}const p=()=>{n.removeListener("open",i),n.removeListener("error",a),n.removeListener("close",s),this.off("close",l),this.off("upgrading",d)};n.once("open",i),n.once("error",a),n.once("close",s),this.once("close",l),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",ed.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,i){if(typeof n=="function"&&(i=n,n=void 0),typeof r=="function"&&(i=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const o={type:t,data:n,options:r};this.emitReserved("packetCreate",o),this.writeBuffer.push(o),i&&this.once("flush",i),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){ed.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const i=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,PW=Object.prototype.toString,a8e=typeof Blob=="function"||typeof Blob<"u"&&PW.call(Blob)==="[object BlobConstructor]",s8e=typeof File=="function"||typeof File<"u"&&PW.call(File)==="[object FileConstructor]";function W7(e){return i8e&&(e instanceof ArrayBuffer||o8e(e))||a8e&&e instanceof Blob||s8e&&e instanceof File}function A5(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case ln.ACK:case ln.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class f8e{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=u8e(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const h8e=Object.freeze(Object.defineProperty({__proto__:null,protocol:c8e,get PacketType(){return ln},Encoder:d8e,Decoder:V7},Symbol.toStringTag,{value:"Module"}));function Ds(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const p8e=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class TW extends ei{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[Ds(t,"open",this.onopen.bind(this)),Ds(t,"packet",this.onpacket.bind(this)),Ds(t,"error",this.onerror.bind(this)),Ds(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(p8e.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:ln.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const a=this.ids++,s=n.pop();this._registerAckCallback(a,s),r.id=a}const i=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!i||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const i=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let o=0;o{this.io.clearTimeoutFn(i),n.apply(this,[null,...o])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:ln.CONNECT,data:t})}):this.packet({type:ln.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case ln.CONNECT:if(t.data&&t.data.sid){const i=t.data.sid;this.onconnect(i)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case ln.EVENT:case ln.BINARY_EVENT:this.onevent(t);break;case ln.ACK:case ln.BINARY_ACK:this.onack(t);break;case ln.DISCONNECT:this.ondisconnect();break;case ln.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...i){r||(r=!0,n.packet({type:ln.ACK,id:t,data:i}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:ln.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}u1.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};u1.prototype.reset=function(){this.attempts=0};u1.prototype.setMin=function(e){this.ms=e};u1.prototype.setMax=function(e){this.max=e};u1.prototype.setJitter=function(e){this.jitter=e};class s9 extends ei{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,jb(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new u1({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const i=n.parser||h8e;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new ed(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const i=Ds(n,"open",function(){r.onopen(),t&&t()}),o=Ds(n,"error",a=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",a),t?t(a):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const a=this._timeout;a===0&&i();const s=this.setTimeoutFn(()=>{i(),n.close(),n.emit("error",new Error("timeout"))},a);this.opts.autoUnref&&s.unref(),this.subs.push(function(){clearTimeout(s)})}return this.subs.push(i),this.subs.push(o),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(Ds(t,"ping",this.onping.bind(this)),Ds(t,"data",this.ondata.bind(this)),Ds(t,"error",this.onerror.bind(this)),Ds(t,"close",this.onclose.bind(this)),Ds(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new TW(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(i=>{i?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",i)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Sg={};function I5(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=r8e(e,t.path||"/socket.io"),r=n.source,i=n.id,o=n.path,a=Sg[i]&&o in Sg[i].nsps,s=t.forceNew||t["force new connection"]||t.multiplex===!1||a;let l;return s?l=new s9(r,t):(Sg[i]||(Sg[i]=new s9(r,t)),l=Sg[i]),n.query&&!t.query&&(t.query=n.queryKey),l.socket(n.path,t)}Object.assign(I5,{Manager:s9,Socket:TW,io:I5,connect:I5});let Hy;const g8e=new Uint8Array(16);function m8e(){if(!Hy&&(Hy=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Hy))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Hy(g8e)}const Ni=[];for(let e=0;e<256;++e)Ni.push((e+256).toString(16).slice(1));function v8e(e,t=0){return(Ni[e[t+0]]+Ni[e[t+1]]+Ni[e[t+2]]+Ni[e[t+3]]+"-"+Ni[e[t+4]]+Ni[e[t+5]]+"-"+Ni[e[t+6]]+Ni[e[t+7]]+"-"+Ni[e[t+8]]+Ni[e[t+9]]+"-"+Ni[e[t+10]]+Ni[e[t+11]]+Ni[e[t+12]]+Ni[e[t+13]]+Ni[e[t+14]]+Ni[e[t+15]]).toLowerCase()}const y8e=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),BI={randomUUID:y8e};function wg(e,t,n){if(BI.randomUUID&&!t&&!e)return BI.randomUUID();e=e||{};const r=e.random||(e.rng||m8e)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let i=0;i<16;++i)t[n+i]=r[i];return t}return v8e(r)}var b8e=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,x8e=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,S8e=/[^-+\dA-Z]/g;function $i(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(HI[t]||t||HI.default);var i=t.slice(0,4);(i==="UTC:"||i==="GMT:")&&(t=t.slice(4),n=!0,i==="GMT:"&&(r=!0));var o=function(){return n?"getUTC":"get"},a=function(){return e[o()+"Date"]()},s=function(){return e[o()+"Day"]()},l=function(){return e[o()+"Month"]()},d=function(){return e[o()+"FullYear"]()},p=function(){return e[o()+"Hours"]()},g=function(){return e[o()+"Minutes"]()},m=function(){return e[o()+"Seconds"]()},y=function(){return e[o()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},S=function(){return w8e(e)},E=function(){return C8e(e)},P={d:function(){return a()},dd:function(){return ha(a())},ddd:function(){return Fo.dayNames[s()]},DDD:function(){return WI({y:d(),m:l(),d:a(),_:o(),dayName:Fo.dayNames[s()],short:!0})},dddd:function(){return Fo.dayNames[s()+7]},DDDD:function(){return WI({y:d(),m:l(),d:a(),_:o(),dayName:Fo.dayNames[s()+7]})},m:function(){return l()+1},mm:function(){return ha(l()+1)},mmm:function(){return Fo.monthNames[l()]},mmmm:function(){return Fo.monthNames[l()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return ha(d(),4)},h:function(){return p()%12||12},hh:function(){return ha(p()%12||12)},H:function(){return p()},HH:function(){return ha(p())},M:function(){return g()},MM:function(){return ha(g())},s:function(){return m()},ss:function(){return ha(m())},l:function(){return ha(y(),3)},L:function(){return ha(Math.floor(y()/10))},t:function(){return p()<12?Fo.timeNames[0]:Fo.timeNames[1]},tt:function(){return p()<12?Fo.timeNames[2]:Fo.timeNames[3]},T:function(){return p()<12?Fo.timeNames[4]:Fo.timeNames[5]},TT:function(){return p()<12?Fo.timeNames[6]:Fo.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":_8e(e)},o:function(){return(b()>0?"-":"+")+ha(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+ha(Math.floor(Math.abs(b())/60),2)+":"+ha(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][a()%10>3?0:(a()%100-a()%10!=10)*a()%10]},W:function(){return S()},WW:function(){return ha(S())},N:function(){return E()}};return t.replace(b8e,function(k){return k in P?P[k]():k.slice(1,k.length-1)})}var HI={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},Fo={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},ha=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},WI=function(t){var n=t.y,r=t.m,i=t.d,o=t._,a=t.dayName,s=t.short,l=s===void 0?!1:s,d=new Date,p=new Date;p.setDate(p[o+"Date"]()-1);var g=new Date;g.setDate(g[o+"Date"]()+1);var m=function(){return d[o+"Date"]()},y=function(){return d[o+"Month"]()},b=function(){return d[o+"FullYear"]()},S=function(){return p[o+"Date"]()},E=function(){return p[o+"Month"]()},P=function(){return p[o+"FullYear"]()},k=function(){return g[o+"Date"]()},L=function(){return g[o+"Month"]()},R=function(){return g[o+"FullYear"]()};return b()===n&&y()===r&&m()===i?l?"Tdy":"Today":P()===n&&E()===r&&S()===i?l?"Ysd":"Yesterday":R()===n&&L()===r&&k()===i?l?"Tmw":"Tomorrow":a},w8e=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var i=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-i);var o=(n-r)/(864e5*7);return 1+Math.floor(o)},C8e=function(t){var n=t.getDay();return n===0&&(n=7),n},_8e=function(t){return(String(t).match(x8e)||[""]).pop().replace(S8e,"").replace(/GMT\+0000/g,"UTC")};const k8e=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(gA(!0)),t(VS("Connected"));const r=n().gallery;r.categories.user.latest_mtime?t(bA("user")):t(CC("user")),r.categories.result.latest_mtime?t(bA("result")):t(CC("result"))}catch(r){console.error(r)}},onDisconnect:()=>{try{t(gA(!1)),t(VS("Disconnected")),t(zi({timestamp:$i(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{shouldLoopback:i,activeTab:o}=n().options,a={uuid:wg(),...r,category:"result"};if(t(yy({category:"result",image:a})),i)switch(Hv[o]){case"img2img":{t(cv(a));break}case"inpainting":{t(W3(a));break}}t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Image generated: ${r.url}`}))}catch(i){console.error(i)}},onIntermediateResult:r=>{try{t(n4e({uuid:wg(),...r})),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Intermediate image generated: ${r.url}`}))}catch(i){console.error(i)}},onPostprocessingResult:r=>{try{t(yy({category:"result",image:{uuid:wg(),...r,category:"result"}})),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Postprocessed: ${r.url}`}))}catch(i){console.error(i)}},onProgressUpdate:r=>{try{t(b0(!0)),t(w5e(r))}catch(i){console.error(i)}},onError:r=>{const{message:i,additionalData:o}=r;try{t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Server error: ${i}`,level:"error"})),t(SC()),t(AA())}catch(a){console.error(a)}},onGalleryImages:r=>{const{images:i,areMoreImagesAvailable:o,category:a}=r,s=i.map(l=>({uuid:wg(),...l}));t(t4e({images:s,areMoreImagesAvailable:o,category:a})),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Loaded ${i.length} images`}))},onProcessingCanceled:()=>{t(k5e());const{intermediateImage:r}=n().gallery;r&&(r.isBase64||(t(yy({category:"result",image:r})),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`}))),t(AA())),t(zi({timestamp:$i(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:i}=r;t(LB(r));const{initialImage:o,maskPath:a}=n().options,{imageToInpaint:s}=n().inpainting;(o?.url===i||o===i)&&t(t9()),s?.url===i&&t(x7()),a===i&&t(e9("")),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Image deleted: ${i}`}))},onImageUploaded:r=>{const{destination:i,...o}=r,a={uuid:wg(),...o};try{switch(t(yy({image:a,category:"user"})),i){case"img2img":{t(cv(a));break}case"inpainting":{t(W3(a));break}default:{t(AB(a));break}}t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Image uploaded: ${r.url}`}))}catch(s){console.error(s)}},onMaskImageUploaded:r=>{const{url:i}=r;t(e9(i)),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Mask image uploaded: ${i}`}))},onSystemConfig:r=>{t(C5e(r))},onModelChanged:r=>{const{model_name:i,model_list:o}=r;t(mA(o)),t(VS("Model Changed")),t(b0(!1)),t(vA(!0)),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Model changed: ${i}`,level:"info"}))},onModelChangeFailed:r=>{const{model_name:i,model_list:o}=r;t(mA(o)),t(b0(!1)),t(vA(!0)),t(SC()),t(zi({timestamp:$i(new Date,"isoDateTime"),message:`Model change failed: ${i}`,level:"error"}))}}},E8e=(e,t)=>{const{width:n,height:r}=e,i=document.createElement("div"),o=new E5.Stage({container:i,width:n,height:r}),a=new E5.Layer;return o.add(a),t.forEach(s=>a.add(new E5.Line({points:s.points,stroke:"rgb(0,0,0)",strokeWidth:s.strokeWidth*2,tension:0,lineCap:"round",lineJoin:"round",shadowForStrokeEnabled:!1,globalCompositeOperation:s.tool==="brush"?"source-over":"destination-out"}))),a.draw(),i.remove(),{stage:o,layer:a}},P8e=(e,t)=>{const n=e.toCanvas().getContext("2d")?.getImageData(t.x,t.y,t.width,t.height);if(!n)throw new Error("Unable to get image data from generated canvas");return!new Uint32Array(n.data.buffer).some(i=>i!==0)},T8e=(e,t,n)=>{const{stage:r,layer:i}=E8e(e,t),o=P8e(r,n);return i.add(new E5.Image({image:e,globalCompositeOperation:"source-out"})),{maskDataURL:r.toDataURL(),isMaskEmpty:o}},L8e=e=>{const{generationMode:t,optionsState:n,inpaintingState:r,systemState:i,imageToProcessUrl:o,maskImageElement:a}=e,{prompt:s,iterations:l,steps:d,cfgScale:p,threshold:g,perlin:m,height:y,width:b,sampler:S,seed:E,seamless:P,hiresFix:k,img2imgStrength:L,initialImage:R,shouldFitToWidthHeight:N,shouldGenerateVariations:z,variationAmount:$,seedWeights:F,shouldRunESRGAN:q,upscalingLevel:j,upscalingStrength:Y,shouldRunFacetool:ve,facetoolStrength:ge,codeformerFidelity:Se,facetoolType:_e,shouldRandomizeSeed:we}=n,{shouldDisplayInProgressType:J}=i,G={prompt:s,iterations:l,steps:d,cfg_scale:p,threshold:g,perlin:m,height:y,width:b,sampler_name:S,seed:E,progress_images:J==="full-res",progress_latents:J==="latents"};if(G.seed=we?rB(a7,s7):E,["txt2img","img2img"].includes(t)&&(G.seamless=P,G.hires_fix=k),t==="img2img"&&R&&(G.init_img=typeof R=="string"?R:R.url,G.strength=L,G.fit=N),t==="inpainting"&&a){const{lines:W,boundingBoxCoordinate:se,boundingBoxDimensions:de,inpaintReplace:xe,shouldUseInpaintReplace:ze}=r,Me={...se,...de};G.init_img=o,G.strength=L,G.fit=!1;const{maskDataURL:Ue,isMaskEmpty:Ee}=T8e(a,W,Me);G.is_mask_empty=Ee,G.init_mask=Ue.split("data:image/png;base64,")[1],ze&&(G.inpaint_replace=xe),G.bounding_box=Me,G.progress_images=!1}z?(G.variation_amount=$,F&&(G.with_variations=wye(F))):G.variation_amount=0;let te=!1,Q=!1;return q&&(te={level:j,strength:Y}),ve&&(Q={type:_e,strength:ge},_e==="codeformer"&&(Q.codeformer_fidelity=Se)),{generationParameters:G,esrganParameters:te,facetoolParameters:Q}},A8e=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:i=>{n(b0(!0));const o=r(),{options:a,system:s,inpainting:l,gallery:d}=o,p={generationMode:i,optionsState:a,inpaintingState:l,systemState:s};if(i==="inpainting"){if(!X3.current||!l.imageToInpaint?.url){n(zi({timestamp:$i(new Date,"isoDateTime"),message:"Inpainting image not loaded, cannot generate image.",level:"error"})),n(SC());return}p.imageToProcessUrl=l.imageToInpaint.url,p.maskImageElement=X3.current}else if(!["txt2img","img2img"].includes(i)){if(!d.currentImage?.url)return;p.imageToProcessUrl=d.currentImage.url}const{generationParameters:g,esrganParameters:m,facetoolParameters:y}=L8e(p);t.emit("generateImage",g,m,y),g.init_mask&&(g.init_mask=g.init_mask.substr(0,20).concat("...")),n(zi({timestamp:$i(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...g,...m,...y})}`}))},emitRunESRGAN:i=>{n(b0(!0));const o=r().options,{upscalingLevel:a,upscalingStrength:s}=o,l={upscale:[a,s]};t.emit("runPostprocessing",i,{type:"esrgan",...l}),n(zi({timestamp:$i(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:i.url,...l})}`}))},emitRunFacetool:i=>{n(b0(!0));const o=r().options,{facetoolType:a,facetoolStrength:s,codeformerFidelity:l}=o,d={facetool_strength:s};a==="codeformer"&&(d.codeformer_fidelity=l),t.emit("runPostprocessing",i,{type:a,...d}),n(zi({timestamp:$i(new Date,"isoDateTime"),message:`Face restoration (${a}) requested: ${JSON.stringify({file:i.url,...d})}`}))},emitDeleteImage:i=>{const{url:o,uuid:a,category:s}=i;n(LB(i)),t.emit("deleteImage",o,a,s)},emitRequestImages:i=>{const o=r().gallery,{earliest_mtime:a}=o.categories[i];t.emit("requestImages",i,a)},emitRequestNewImages:i=>{const o=r().gallery,{latest_mtime:a}=o.categories[i];t.emit("requestLatestImages",i,a)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadImage:i=>{const{file:o,destination:a}=i;t.emit("uploadImage",o,o.name,a)},emitUploadMaskImage:i=>{t.emit("uploadMaskImage",i,i.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")},emitRequestModelChange:i=>{n(E5e()),t.emit("requestModelChange",i)}}},I8e=()=>{const{origin:e}=new URL(window.location.href),t=I5(e,{timeout:6e4,path:window.location.pathname+"socket.io"});let n=!1;return i=>o=>a=>{const{onConnect:s,onDisconnect:l,onError:d,onPostprocessingResult:p,onGenerationResult:g,onIntermediateResult:m,onProgressUpdate:y,onGalleryImages:b,onProcessingCanceled:S,onImageDeleted:E,onImageUploaded:P,onMaskImageUploaded:k,onSystemConfig:L,onModelChanged:R,onModelChangeFailed:N}=k8e(i),{emitGenerateImage:z,emitRunESRGAN:$,emitRunFacetool:F,emitDeleteImage:q,emitRequestImages:j,emitRequestNewImages:Y,emitCancelProcessing:ve,emitUploadImage:ge,emitUploadMaskImage:Se,emitRequestSystemConfig:_e,emitRequestModelChange:we}=A8e(i,t);switch(n||(t.on("connect",()=>s()),t.on("disconnect",()=>l()),t.on("error",J=>d(J)),t.on("generationResult",J=>g(J)),t.on("postprocessingResult",J=>p(J)),t.on("intermediateResult",J=>m(J)),t.on("progressUpdate",J=>y(J)),t.on("galleryImages",J=>b(J)),t.on("processingCanceled",()=>{S()}),t.on("imageDeleted",J=>{E(J)}),t.on("imageUploaded",J=>{P(J)}),t.on("maskImageUploaded",J=>{k(J)}),t.on("systemConfig",J=>{L(J)}),t.on("modelChanged",J=>{R(J)}),t.on("modelChangeFailed",J=>{N(J)}),n=!0),a.type){case"socketio/generateImage":{z(a.payload);break}case"socketio/runESRGAN":{$(a.payload);break}case"socketio/runFacetool":{F(a.payload);break}case"socketio/deleteImage":{q(a.payload);break}case"socketio/requestImages":{j(a.payload);break}case"socketio/requestNewImages":{Y(a.payload);break}case"socketio/cancelProcessing":{ve();break}case"socketio/uploadImage":{ge(a.payload);break}case"socketio/uploadMaskImage":{Se(a.payload);break}case"socketio/requestSystemConfig":{_e();break}case"socketio/requestModelChange":{we(a.payload);break}}o(a)}},R8e={key:"root",storage:zv,blacklist:["gallery","system","inpainting"]},M8e={key:"system",storage:zv,blacklist:["isCancelable","isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},O8e={key:"gallery",storage:zv,whitelist:["galleryWidth","shouldPinGallery","shouldShowGallery","galleryScrollPosition","galleryImageMinimumWidth","galleryImageObjectFit"]},N8e={key:"inpainting",storage:zv,blacklist:["pastLines","futuresLines","cursorPosition"]},D8e=LF({options:E9e,gallery:b5(O8e,l4e),system:b5(M8e,P5e),inpainting:b5(N8e,K3e)}),z8e=b5(R8e,D8e),LW=a2e({reducer:z8e,middleware:e=>e({serializableCheck:!1}).concat(I8e())}),gt=G2e,Ze=O2e;function R5(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?R5=function(n){return typeof n}:R5=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},R5(e)}function $8e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function VI(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),IW=()=>w(Wn,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:w(X0,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),W8e=Jt(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),V8e=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=Ze(W8e),i=t?Math.round(t*100/n):0;return w(k$,{value:i,isIndeterminate:e&&!r,className:"progress-bar"})};function U8e(e){const{title:t,hotkey:n,description:r}=e;return ne("div",{className:"hotkey-modal-item",children:[ne("div",{className:"hotkey-info",children:[w("p",{className:"hotkey-title",children:t}),r&&w("p",{className:"hotkey-description",children:r})]}),w("div",{className:"hotkey-key",children:n})]})}function G8e({children:e}){const{isOpen:t,onOpen:n,onClose:r}=_3(),i=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Toggle Options",desc:"Open and close the options panel",hotkey:"O"},{title:"Pin Options",desc:"Pin the options panel",hotkey:"Shift+O"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],o=[{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send current image to Image to Image",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"}],a=[{title:"Previous Image",desc:"Display the previous image in gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in gallery",hotkey:"Arrow right"},{title:"Toggle Gallery Pin",desc:"Pins and unpins the gallery to the UI",hotkey:"Shift+G"},{title:"Increase Gallery Image Size",desc:"Increases gallery thumbnails size",hotkey:"Shift+Up"},{title:"Decrease Gallery Image Size",desc:"Decreases gallery thumbnails size",hotkey:"Shift+Down"},{title:"Reset Gallery Image Size",desc:"Resets image gallery size",hotkey:"Shift+R"}],s=[{title:"Select Brush",desc:"Selects the inpainting brush",hotkey:"B"},{title:"Select Eraser",desc:"Selects the inpainting eraser",hotkey:"E"},{title:"Quick Toggle Brush/Eraser",desc:"Quick toggle between brush and eraser",hotkey:"X"},{title:"Decrease Brush Size",desc:"Decreases the size of the inpainting brush/eraser",hotkey:"["},{title:"Increase Brush Size",desc:"Increases the size of the inpainting brush/eraser",hotkey:"]"},{title:"Hide Mask",desc:"Hide and unhide mask",hotkey:"H"},{title:"Decrease Mask Opacity",desc:"Decreases the opacity of the mask",hotkey:"Shift+["},{title:"Increase Mask Opacity",desc:"Increases the opacity of the mask",hotkey:"Shift+]"},{title:"Invert Mask",desc:"Invert the mask preview",hotkey:"Shift+M"},{title:"Clear Mask",desc:"Clear the entire mask",hotkey:"Shift+C"},{title:"Undo Stroke",desc:"Undo a brush stroke",hotkey:"Ctrl+Z"},{title:"Redo Stroke",desc:"Redo a brush stroke",hotkey:"Ctrl+Shift+Z, Ctrl+Y"},{title:"Lock Bounding Box",desc:"Locks the bounding box",hotkey:"M"},{title:"Quick Toggle Lock Bounding Box",desc:"Hold to toggle locking the bounding box",hotkey:"Space"},{title:"Expand Inpainting Area",desc:"Expand your inpainting work area",hotkey:"Shift+J"}],l=d=>{const p=[];return d.forEach((g,m)=>{p.push(w(U8e,{title:g.title,description:g.desc,hotkey:g.hotkey},m))}),w("div",{className:"hotkey-modal-category",children:p})};return ne(Un,{children:[C.exports.cloneElement(e,{onClick:n}),ne(z0,{isOpen:t,onClose:r,children:[w(Jm,{}),ne(Qm,{className:"hotkeys-modal",children:[w(L_,{}),w("h1",{children:"Keyboard Shorcuts"}),w("div",{className:"hotkeys-modal-items",children:ne(Z4,{allowMultiple:!0,children:[ne(Qf,{children:[ne(Zf,{className:"hotkeys-modal-button",children:[w("h2",{children:"App Hotkeys"}),w(Xf,{})]}),w(Jf,{children:l(i)})]}),ne(Qf,{children:[ne(Zf,{className:"hotkeys-modal-button",children:[w("h2",{children:"General Hotkeys"}),w(Xf,{})]}),w(Jf,{children:l(o)})]}),ne(Qf,{children:[ne(Zf,{className:"hotkeys-modal-button",children:[w("h2",{children:"Gallery Hotkeys"}),w(Xf,{})]}),w(Jf,{children:l(a)})]}),ne(Qf,{children:[ne(Zf,{className:"hotkeys-modal-button",children:[w("h2",{children:"Inpainting Hotkeys"}),w(Xf,{})]}),w(Jf,{children:l(s)})]})]})})]})]})]})}const j8e=e=>{const{isProcessing:t,isConnected:n}=Ze(l=>l.system),r=gt(),{name:i,status:o,description:a}=e,s=()=>{r(w3e(i))};return ne("div",{className:"model-list-item",children:[w(li,{label:a,hasArrow:!0,placement:"bottom",children:w("div",{className:"model-list-item-name",children:i})}),w(sz,{}),w("div",{className:`model-list-item-status ${o.split(" ").join("-")}`,children:o}),w("div",{className:"model-list-item-load-btn",children:w(ts,{size:"sm",onClick:s,isDisabled:o==="active"||t||!n,children:"Load"})})]})},q8e=Jt(e=>e.system,e=>{const t=Yt.map(e.model_list,(r,i)=>({name:i,...r})),n=t.find(r=>r.status==="active");return{models:t,activeModel:n}}),K8e=()=>{const{models:e}=Ze(q8e);return w("div",{className:"model-list",children:w(Z4,{allowToggle:!0,children:ne(Qf,{children:[w(Zf,{children:ne("div",{className:"model-list-button",children:[w("h2",{children:"Models"}),w(Xf,{})]})}),w(Jf,{children:w("div",{className:"model-list-list",children:e.map((t,n)=>w(j8e,{name:t.name,status:t.status,description:t.description},n))})})]})})})};function GI({settingTitle:e,isChecked:t,dispatcher:n}){const r=gt();return w(Zu,{styleClass:"settings-modal-item",label:e,isChecked:t,onChange:i=>r(n(i.target.checked))})}function Y8e({settingTitle:e,validValues:t,defaultValue:n,dispatcher:r}){const i=gt();return w(r1,{styleClass:"settings-modal-item",label:e,validValues:t,defaultValue:n,onChange:o=>i(r(o.target.value))})}const Z8e=Jt(e=>e.system,e=>{const{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,model_list:i}=e;return{shouldDisplayInProgressType:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r,models:Yt.map(i,(o,a)=>a)}},{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),X8e=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=_3(),{isOpen:i,onOpen:o,onClose:a}=_3(),{shouldDisplayInProgressType:s,shouldConfirmOnDelete:l,shouldDisplayGuides:d}=Ze(Z8e),p=()=>{VW.purge().then(()=>{r(),o()})};return ne(Un,{children:[C.exports.cloneElement(e,{onClick:n}),ne(z0,{isOpen:t,onClose:r,children:[w(Jm,{}),ne(Qm,{className:"settings-modal",children:[w(I_,{className:"settings-modal-header",children:"Settings"}),w(L_,{}),ne(T3,{className:"settings-modal-content",children:[w(K8e,{}),ne("div",{className:"settings-modal-items",children:[w(Y8e,{settingTitle:"Display In-Progress Images",validValues:Yye,defaultValue:s,dispatcher:x5e}),w(GI,{settingTitle:"Confirm on Delete",isChecked:l,dispatcher:oB}),w(GI,{settingTitle:"Display Help Icons",isChecked:d,dispatcher:_5e})]}),ne("div",{className:"settings-modal-reset",children:[w(oh,{size:"md",children:"Reset Web UI"}),w(Wo,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),w(Wo,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),w(ts,{colorScheme:"red",onClick:p,children:"Reset Web UI"})]})]}),w(A_,{children:w(ts,{onClick:r,children:"Close"})})]})]}),ne(z0,{closeOnOverlayClick:!1,isOpen:i,onClose:a,isCentered:!0,children:[w(Jm,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),w(Qm,{children:w(T3,{pb:6,pt:6,children:w(Wn,{justifyContent:"center",children:w(Wo,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},Q8e=Jt(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),J8e=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:i,hasError:o,wasErrorSeen:a}=Ze(Q8e),s=gt();let l;e&&!o?l="status-good":l="status-bad";let d=i;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(l="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),w(li,{label:o&&!a?"Click to clear, check logs for details":void 0,children:w(Wo,{cursor:o&&!a?"pointer":"initial",onClick:()=>{(o||!a)&&s(aB())},className:`status ${l}`,children:d})})},e_e=()=>{const{colorMode:e,toggleColorMode:t}=d8();Ht("shift+d",()=>{t()},[e,t]);const n=e=="light"?w(r3e,{}):w(c3e,{}),r=e=="light"?18:20;return ne("div",{className:"site-header",children:[ne("div",{className:"site-header-left-side",children:[w("img",{src:kB,alt:"invoke-ai-logo"}),ne("h1",{children:["invoke ",w("strong",{children:"ai"})]})]}),ne("div",{className:"site-header-right-side",children:[w(J8e,{}),w(G8e,{children:w(no,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:w($5e,{})})}),w(li,{hasArrow:!0,label:"Theme",placement:"bottom",children:w(no,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})}),w(li,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:w(no,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:w(d0,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:w(uB,{})})})}),w(li,{hasArrow:!0,label:"Github",placement:"bottom",children:w(no,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:w(d0,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:w(q5e,{})})})}),w(li,{hasArrow:!0,label:"Discord",placement:"bottom",children:w(no,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:w(d0,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:w(j5e,{})})})}),w(X8e,{children:w(no,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:w(O5e,{})})})]})]})},t_e=Jt(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),n_e=Jt(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:ka.exports.isEqual}}),r_e=()=>{const e=gt(),t=Ze(t_e),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:i}=Ze(n_e),[o,a]=C.exports.useState(!0),s=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{s.current!==null&&o&&(s.current.scrollTop=s.current.scrollHeight)},[o,t,n]);const l=()=>{e(aB()),e(pA(!n))};return Ht("`",()=>{e(pA(!n))},[n]),ne(Un,{children:[n&&w(NB,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0,zIndex:20},maxHeight:"90vh",children:w("div",{className:"console",ref:s,onScroll:()=>{!s.current||o&&s.current.scrollTop{const{timestamp:m,message:y,level:b}=p;return ne("div",{className:`console-entry console-${b}-color`,children:[ne("p",{className:"console-timestamp",children:[m,":"]}),w("p",{className:"console-message",children:y})]},g)})})}),n&&w(li,{hasArrow:!0,label:o?"Autoscroll On":"Autoscroll Off",children:w(no,{className:"console-autoscroll-icon-button","data-autoscroll-enabled":o,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:w(K5e,{}),onClick:()=>a(!o)})}),w(li,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:w(no,{className:"console-toggle-icon-button","data-error-seen":r||!i,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?w(n3e,{}):w(Q5e,{}),onClick:l})})]})};function i_e(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(i=>i)};(!{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"./",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}var o_e=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Vv(e,t){var n=a_e(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function a_e(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),i=o_e.get(r);i&&Object.defineProperty(e,"type",{value:i,writable:!1,configurable:!1,enumerable:!0})}return e}var s_e=[".DS_Store","Thumbs.db"];function l_e(e){return Y0(this,void 0,void 0,function(){return Z0(this,function(t){return Q3(e)&&u_e(e.dataTransfer)?[2,h_e(e.dataTransfer,e.type)]:c_e(e)?[2,d_e(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,f_e(e)]:[2,[]]})})}function u_e(e){return Q3(e)}function c_e(e){return Q3(e)&&Q3(e.target)}function Q3(e){return typeof e=="object"&&e!==null}function d_e(e){return c9(e.target.files).map(function(t){return Vv(t)})}function f_e(e){return Y0(this,void 0,void 0,function(){var t;return Z0(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Vv(r)})]}})})}function h_e(e,t){return Y0(this,void 0,void 0,function(){var n,r;return Z0(this,function(i){switch(i.label){case 0:return e.items?(n=c9(e.items).filter(function(o){return o.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(p_e))]):[3,2];case 1:return r=i.sent(),[2,jI(RW(r))];case 2:return[2,jI(c9(e.files).map(function(o){return Vv(o)}))]}})})}function jI(e){return e.filter(function(t){return s_e.indexOf(t.name)===-1})}function c9(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,XI(n)];if(e.sizen)return[!1,XI(n)]}return[!0,null]}function Uf(e){return e!=null}function A_e(e){var t=e.files,n=e.accept,r=e.minSize,i=e.maxSize,o=e.multiple,a=e.maxFiles,s=e.validator;return!o&&t.length>1||o&&a>=1&&t.length>a?!1:t.every(function(l){var d=DW(l,n),p=dv(d,1),g=p[0],m=zW(l,r,i),y=dv(m,1),b=y[0],S=s?s(l):null;return g&&b&&!S})}function J3(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Wy(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function JI(e){e.preventDefault()}function I_e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function R_e(e){return e.indexOf("Edge/")!==-1}function M_e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return I_e(e)||R_e(e)}function xl(){for(var e=arguments.length,t=new Array(e),n=0;n1?i-1:0),a=1;ae.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function Z_e(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o=0)&&(n[i]=e[i]);return n}var U7=C.exports.forwardRef(function(e,t){var n=e.children,r=e4(e,F_e),i=WW(r),o=i.open,a=e4(i,B_e);return C.exports.useImperativeHandle(t,function(){return{open:o}},[o]),w(C.exports.Fragment,{children:n(vr(vr({},a),{},{open:o}))})});U7.displayName="Dropzone";var HW={disabled:!1,getFilesFromEvent:l_e,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};U7.defaultProps=HW;U7.propTypes={children:Dn.exports.func,accept:Dn.exports.objectOf(Dn.exports.arrayOf(Dn.exports.string)),multiple:Dn.exports.bool,preventDropOnDocument:Dn.exports.bool,noClick:Dn.exports.bool,noKeyboard:Dn.exports.bool,noDrag:Dn.exports.bool,noDragEventsBubbling:Dn.exports.bool,minSize:Dn.exports.number,maxSize:Dn.exports.number,maxFiles:Dn.exports.number,disabled:Dn.exports.bool,getFilesFromEvent:Dn.exports.func,onFileDialogCancel:Dn.exports.func,onFileDialogOpen:Dn.exports.func,useFsAccessApi:Dn.exports.bool,autoFocus:Dn.exports.bool,onDragEnter:Dn.exports.func,onDragLeave:Dn.exports.func,onDragOver:Dn.exports.func,onDrop:Dn.exports.func,onDropAccepted:Dn.exports.func,onDropRejected:Dn.exports.func,onError:Dn.exports.func,validator:Dn.exports.func};var p9={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function WW(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=vr(vr({},HW),e),n=t.accept,r=t.disabled,i=t.getFilesFromEvent,o=t.maxSize,a=t.minSize,s=t.multiple,l=t.maxFiles,d=t.onDragEnter,p=t.onDragLeave,g=t.onDragOver,m=t.onDrop,y=t.onDropAccepted,b=t.onDropRejected,S=t.onFileDialogCancel,E=t.onFileDialogOpen,P=t.useFsAccessApi,k=t.autoFocus,L=t.preventDropOnDocument,R=t.noClick,N=t.noKeyboard,z=t.noDrag,$=t.noDragEventsBubbling,F=t.onError,q=t.validator,j=C.exports.useMemo(function(){return D_e(n)},[n]),Y=C.exports.useMemo(function(){return N_e(n)},[n]),ve=C.exports.useMemo(function(){return typeof E=="function"?E:tR},[E]),ge=C.exports.useMemo(function(){return typeof S=="function"?S:tR},[S]),Se=C.exports.useRef(null),_e=C.exports.useRef(null),we=C.exports.useReducer(X_e,p9),J=uw(we,2),G=J[0],te=J[1],Q=G.isFocused,W=G.isFileDialogActive,se=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&P&&O_e()),de=function(){!se.current&&W&&setTimeout(function(){if(_e.current){var tt=_e.current.files;tt.length||(te({type:"closeDialog"}),ge())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",de,!1),function(){window.removeEventListener("focus",de,!1)}},[_e,W,ge,se]);var xe=C.exports.useRef([]),ze=function(tt){Se.current&&Se.current.contains(tt.target)||(tt.preventDefault(),xe.current=[])};C.exports.useEffect(function(){return L&&(document.addEventListener("dragover",JI,!1),document.addEventListener("drop",ze,!1)),function(){L&&(document.removeEventListener("dragover",JI),document.removeEventListener("drop",ze))}},[Se,L]),C.exports.useEffect(function(){return!r&&k&&Se.current&&Se.current.focus(),function(){}},[Se,k,r]);var Me=C.exports.useCallback(function(Ne){F?F(Ne):console.error(Ne)},[F]),Ue=C.exports.useCallback(function(Ne){Ne.preventDefault(),Ne.persist(),yt(Ne),xe.current=[].concat(V_e(xe.current),[Ne.target]),Wy(Ne)&&Promise.resolve(i(Ne)).then(function(tt){if(!(J3(Ne)&&!$)){var jt=tt.length,Ut=jt>0&&A_e({files:tt,accept:j,minSize:a,maxSize:o,multiple:s,maxFiles:l,validator:q}),Pe=jt>0&&!Ut;te({isDragAccept:Ut,isDragReject:Pe,isDragActive:!0,type:"setDraggedFiles"}),d&&d(Ne)}}).catch(function(tt){return Me(tt)})},[i,d,Me,$,j,a,o,s,l,q]),Ee=C.exports.useCallback(function(Ne){Ne.preventDefault(),Ne.persist(),yt(Ne);var tt=Wy(Ne);if(tt&&Ne.dataTransfer)try{Ne.dataTransfer.dropEffect="copy"}catch{}return tt&&g&&g(Ne),!1},[g,$]),Ve=C.exports.useCallback(function(Ne){Ne.preventDefault(),Ne.persist(),yt(Ne);var tt=xe.current.filter(function(Ut){return Se.current&&Se.current.contains(Ut)}),jt=tt.indexOf(Ne.target);jt!==-1&&tt.splice(jt,1),xe.current=tt,!(tt.length>0)&&(te({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Wy(Ne)&&p&&p(Ne))},[Se,p,$]),ot=C.exports.useCallback(function(Ne,tt){var jt=[],Ut=[];Ne.forEach(function(Pe){var Pt=DW(Pe,j),en=uw(Pt,2),jn=en[0],je=en[1],At=zW(Pe,a,o),Be=uw(At,2),ct=Be[0],qe=Be[1],St=q?q(Pe):null;if(jn&&ct&&!St)jt.push(Pe);else{var tn=[je,qe];St&&(tn=tn.concat(St)),Ut.push({file:Pe,errors:tn.filter(function(Qn){return Qn})})}}),(!s&&jt.length>1||s&&l>=1&&jt.length>l)&&(jt.forEach(function(Pe){Ut.push({file:Pe,errors:[L_e]})}),jt.splice(0)),te({acceptedFiles:jt,fileRejections:Ut,type:"setFiles"}),m&&m(jt,Ut,tt),Ut.length>0&&b&&b(Ut,tt),jt.length>0&&y&&y(jt,tt)},[te,s,j,a,o,l,m,y,b,q]),pt=C.exports.useCallback(function(Ne){Ne.preventDefault(),Ne.persist(),yt(Ne),xe.current=[],Wy(Ne)&&Promise.resolve(i(Ne)).then(function(tt){J3(Ne)&&!$||ot(tt,Ne)}).catch(function(tt){return Me(tt)}),te({type:"reset"})},[i,ot,Me,$]),Wt=C.exports.useCallback(function(){if(se.current){te({type:"openDialog"}),ve();var Ne={multiple:s,types:Y};window.showOpenFilePicker(Ne).then(function(tt){return i(tt)}).then(function(tt){ot(tt,null),te({type:"closeDialog"})}).catch(function(tt){z_e(tt)?(ge(tt),te({type:"closeDialog"})):$_e(tt)?(se.current=!1,_e.current?(_e.current.value=null,_e.current.click()):Me(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):Me(tt)});return}_e.current&&(te({type:"openDialog"}),ve(),_e.current.value=null,_e.current.click())},[te,ve,ge,P,ot,Me,Y,s]),Dt=C.exports.useCallback(function(Ne){!Se.current||!Se.current.isEqualNode(Ne.target)||(Ne.key===" "||Ne.key==="Enter"||Ne.keyCode===32||Ne.keyCode===13)&&(Ne.preventDefault(),Wt())},[Se,Wt]),Oe=C.exports.useCallback(function(){te({type:"focus"})},[]),nt=C.exports.useCallback(function(){te({type:"blur"})},[]),mt=C.exports.useCallback(function(){R||(M_e()?setTimeout(Wt,0):Wt())},[R,Wt]),st=function(tt){return r?null:tt},vt=function(tt){return N?null:st(tt)},yn=function(tt){return z?null:st(tt)},yt=function(tt){$&&tt.stopPropagation()},Vt=C.exports.useMemo(function(){return function(){var Ne=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},tt=Ne.refKey,jt=tt===void 0?"ref":tt,Ut=Ne.role,Pe=Ne.onKeyDown,Pt=Ne.onFocus,en=Ne.onBlur,jn=Ne.onClick,je=Ne.onDragEnter,At=Ne.onDragOver,Be=Ne.onDragLeave,ct=Ne.onDrop,qe=e4(Ne,H_e);return vr(vr(h9({onKeyDown:vt(xl(Pe,Dt)),onFocus:vt(xl(Pt,Oe)),onBlur:vt(xl(en,nt)),onClick:st(xl(jn,mt)),onDragEnter:yn(xl(je,Ue)),onDragOver:yn(xl(At,Ee)),onDragLeave:yn(xl(Be,Ve)),onDrop:yn(xl(ct,pt)),role:typeof Ut=="string"&&Ut!==""?Ut:"presentation"},jt,Se),!r&&!N?{tabIndex:0}:{}),qe)}},[Se,Dt,Oe,nt,mt,Ue,Ee,Ve,pt,N,z,r]),on=C.exports.useCallback(function(Ne){Ne.stopPropagation()},[]),zt=C.exports.useMemo(function(){return function(){var Ne=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},tt=Ne.refKey,jt=tt===void 0?"ref":tt,Ut=Ne.onChange,Pe=Ne.onClick,Pt=e4(Ne,W_e),en=h9({accept:j,multiple:s,type:"file",style:{display:"none"},onChange:st(xl(Ut,pt)),onClick:st(xl(Pe,on)),tabIndex:-1},jt,_e);return vr(vr({},en),Pt)}},[_e,n,s,pt,r]);return vr(vr({},G),{},{isFocused:Q&&!r,getRootProps:Vt,getInputProps:zt,rootRef:Se,inputRef:_e,open:st(Wt)})}function X_e(e,t){switch(t.type){case"focus":return vr(vr({},e),{},{isFocused:!0});case"blur":return vr(vr({},e),{},{isFocused:!1});case"openDialog":return vr(vr({},p9),{},{isFileDialogActive:!0});case"closeDialog":return vr(vr({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return vr(vr({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return vr(vr({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return vr({},p9);default:return e}}function tR(){}const Q_e=e=>{const{children:t}=e,n=gt(),r=Ze(ds),i=Id({}),[o,a]=C.exports.useState(!1),s=C.exports.useCallback(E=>{a(!0);const P=E.errors.reduce((k,L)=>k+` -`+L.message,"");i({title:"Upload failed",description:P,status:"error",isClosable:!0})},[i]),l=C.exports.useCallback(E=>{a(!0);const P={file:E};["img2img","inpainting"].includes(r)&&(P.destination=r),n(xA(P))},[n,r]),d=C.exports.useCallback((E,P)=>{P.forEach(k=>{s(k)}),E.forEach(k=>{l(k)})},[l,s]),{getRootProps:p,getInputProps:g,isDragAccept:m,isDragReject:y,isDragActive:b,open:S}=WW({accept:{"image/png":[".png"],"image/jpeg":[".jpg",".jpeg",".png"]},noClick:!0,onDrop:d,maxFiles:1});return C.exports.useEffect(()=>{const E=P=>{const k=P.clipboardData?.items;if(!k)return;const L=[];for(const z of k)z.kind==="file"&&["image/png","image/jpg"].includes(z.type)&&L.push(z);if(!L.length)return;if(P.stopImmediatePropagation(),L.length>1){i({description:"Multiple images pasted, may only upload one image at a time",status:"error",isClosable:!0});return}const R=L[0].getAsFile();if(!R){i({description:"Unable to load file",status:"error",isClosable:!0});return}const N={file:R};["img2img","inpainting"].includes(r)&&(N.destination=r),n(xA(N))};return document.addEventListener("paste",E),()=>{document.removeEventListener("paste",E)}},[n,i,r]),w(EB.Provider,{value:S,children:ne("div",{...p({style:{}}),children:[w("input",{...g()}),t,b&&ne("div",{className:"dropzone-container",children:[m&&w("div",{className:"dropzone-overlay is-drag-accept",children:w(oh,{size:"lg",children:"Drop Images"})}),y&&ne("div",{className:"dropzone-overlay is-drag-reject",children:[w(oh,{size:"lg",children:"Invalid Upload"}),w(oh,{size:"md",children:"Must be single JPEG or PNG image"})]}),o&&w("div",{className:"dropzone-overlay is-handling-upload",children:w(X0,{})})]})]})})},J_e=()=>{const e=gt();return w(vn,{tooltip:"Show Gallery (G)",tooltipPlacement:"top","aria-label":"Show Gallery",styleClass:"floating-show-hide-button right",onMouseOver:()=>{e(EC(!0))},children:w(cB,{})})};function e7e(e){return Ct({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M32 384h272v32H32zM400 384h80v32h-80zM384 447.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 240h80v32H32zM208 240h272v32H208zM192 303.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]},{tag:"g",attr:{},child:[{tag:"path",attr:{d:"M32 96h272v32H32zM400 96h80v32h-80zM384 159.5c0 17.949-14.327 32.5-32 32.5-17.673 0-32-14.551-32-32.5v-95c0-17.949 14.327-32.5 32-32.5 17.673 0 32 14.551 32 32.5v95z"}}]}]})(e)}const t7e=Jt(e=>e.options,e=>{const{shouldPinOptionsPanel:t,shouldShowOptionsPanel:n}=e;return{shouldShowProcessButtons:!t||!n}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),n7e=()=>{const e=gt(),{shouldShowProcessButtons:t}=Ze(t7e);return ne("div",{className:"show-hide-button-options",children:[w(vn,{tooltip:"Show Options Panel (O)",tooltipPlacement:"top","aria-label":"Show Options Panel",onClick:()=>{e(n9(!0))},children:w(e7e,{})}),t&&ne(Un,{children:[w(pB,{iconButton:!0}),w(mB,{}),w(gB,{})]})]})};i_e();const r7e=Jt([e=>e.gallery,e=>e.options,e=>e.system,ds],(e,t,n,r)=>{const{shouldShowGallery:i,shouldHoldGalleryOpen:o,shouldPinGallery:a}=e,{shouldShowOptionsPanel:s,shouldHoldOptionsPanelOpen:l,shouldPinOptionsPanel:d}=t,p=Yt.reduce(n.model_list,(y,b,S)=>(b.status==="active"&&(y=S),y),""),g=!(i||o&&!a),m=!(s||l&&!d)&&["txt2img","img2img","inpainting"].includes(r);return{modelStatusText:p,shouldShowGalleryButton:g,shouldShowOptionsPanelButton:m}},{memoizeOptions:{resultEqualityCheck:Yt.isEqual}}),i7e=()=>{const e=gt(),[t,n]=C.exports.useState(!1),{shouldShowGalleryButton:r,shouldShowOptionsPanelButton:i}=Ze(r7e);return C.exports.useEffect(()=>{e(S3e()),n(!0)},[e]),t?w("div",{className:"App",children:ne(Q_e,{children:[w(V8e,{}),ne("div",{className:"app-content",children:[w(e_e,{}),w(a9e,{})]}),w("div",{className:"app-console",children:w(r_e,{})}),r&&w(J_e,{}),i&&w(n7e,{})]})}):w(IW,{})};const VW=dye(LW);dw.createRoot(document.getElementById("root")).render(w(re.StrictMode,{children:w(W2e,{store:LW,children:w(AW,{loading:w(IW,{}),persistor:VW,children:ne(Eve,{theme:UI,children:[w(KY,{initialColorMode:UI.config.initialColorMode}),w(i7e,{})]})})})})); diff --git a/frontend/dist/assets/index.f9f4c989.css b/frontend/dist/assets/index.f9f4c989.css new file mode 100644 index 0000000000..ed93c01c1e --- /dev/null +++ b/frontend/dist/assets/index.f9f4c989.css @@ -0,0 +1 @@ +[data-theme=dark]{--white: rgb(255, 255, 255);--root-bg-color: rgb(10, 10, 10);--background-color: rgb(20, 20, 26);--background-color-secondary: rgb(16, 16, 22);--text-color: rgb(255, 255, 255);--text-color-secondary: rgb(160, 162, 188);--subtext-color: rgb(24, 24, 34);--subtext-color-bright: rgb(48, 48, 64);--border-color: rgb(30, 30, 46);--border-color-light: rgb(60, 60, 76);--invalid: rgb(255, 75, 75);--invalid-secondary: rgb(120, 5, 5);--accent-color-dim: rgb(57, 25, 153);--accent-color: rgb(80, 40, 200);--accent-color-hover: rgb(104, 60, 230);--destructive-color: rgb(185, 55, 55);--destructive-color-hover: rgb(255, 75, 75);--warning-color: rgb(200, 88, 40);--warning-color-hover: rgb(230, 117, 60);--border-color-invalid: rgb(255, 80, 50);--box-shadow-color-invalid: rgb(210, 30, 10);--svg-color: rgb(24, 24, 34);--progress-bar-color: rgb(100, 50, 245);--prompt-bg-color: rgb(10, 10, 10);--btn-svg-color: rgb(255, 255, 255);--btn-grey: rgb(30, 32, 42);--btn-grey-hover: rgb(46, 48, 68);--btn-load-more: rgb(30, 32, 42);--btn-load-more-hover: rgb(54, 56, 66);--btn-checkbox-border-hover: rgb(46, 48, 68);--switch-bg-color: rgb(100, 102, 110);--switch-bg-active-color: rgb(80, 40, 200);--resizeable-handle-border-color: rgb(80, 82, 112);--tab-color: rgb(30, 32, 42);--tab-hover-color: rgb(36, 38, 48);--tab-list-bg: var(--accent-color);--tab-list-text: rgb(202, 204, 216);--tab-list-text-inactive: rgb(92, 94, 114);--tab-panel-bg: rgb(20, 22, 28);--metadata-bg-color: rgba(0, 0, 0, .7);--metadata-json-bg-color: rgba(255, 255, 255, .1);--status-good-color: rgb(125, 255, 100);--status-good-glow: rgb(40, 215, 40);--status-working-color: rgb(255, 175, 55);--status-working-glow: rgb(255, 160, 55);--status-bad-color: rgb(255, 90, 90);--status-bad-glow: rgb(255, 40, 40);--settings-modal-bg: rgb(30, 32, 42);--input-checkbox-bg: rgb(90, 90, 120);--input-checkbox-checked-bg: rgb(80, 40, 200);--input-checkbox-checked-tick: rgb(0, 0, 0);--input-border-color: rgb(140, 110, 255);--input-box-shadow-color: rgb(80, 30, 210);--error-level-info: rgb(200, 202, 224);--error-level-warning: rgb(255, 225, 105);--error-level-error: rgb(255, 81, 46);--console-bg-color: rgb(30, 30, 36);--console-icon-button-bg-color: rgb(50, 53, 64);--console-icon-button-bg-color-hover: rgb(70, 73, 84);--img2img-img-bg-color: rgb(30, 32, 42);--context-menu-bg-color: rgb(46, 48, 58);--context-menu-box-shadow: none;--context-menu-bg-color-hover: rgb(30, 32, 42);--floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(140, 101, 255, .5));--inpainting-alerts-bg: rgba(20, 20, 26, .75);--inpainting-alerts-icon-color: rgb(255, 255, 255);--inpainting-alerts-bg-active: rgb(80, 40, 200);--inpainting-alerts-icon-active: rgb(255, 255, 255);--inpainting-alerts-bg-alert: var(--invalid);--inpainting-alerts-icon-alert: rgb(255, 255, 255)}[data-theme=light]{--white: rgb(255, 255, 255);--root-bg-color: rgb(255, 255, 255);--background-color: rgb(220, 222, 224);--background-color-secondary: rgb(204, 206, 208);--text-color: rgb(0, 0, 0);--text-color-secondary: rgb(40, 40, 40);--subtext-color: rgb(24, 24, 34);--subtext-color-bright: rgb(142, 144, 146);--border-color: rgb(200, 200, 200);--border-color-light: rgb(147, 147, 147);--invalid: rgb(255, 75, 75);--invalid-secondary: rgb(120, 5, 5);--accent-color-dim: rgb(186, 146, 0);--accent-color: rgb(235, 185, 5);--accent-color-hover: rgb(255, 200, 0);--destructive-color: rgb(237, 51, 51);--destructive-color-hover: rgb(255, 55, 55);--warning-color: rgb(224, 142, 42);--warning-color-hover: rgb(255, 167, 60);--border-color-invalid: rgb(255, 80, 50);--box-shadow-color-invalid: none;--svg-color: rgb(186, 188, 190);--progress-bar-color: rgb(235, 185, 5);--prompt-bg-color: rgb(225, 227, 229);--btn-svg-color: rgb(0, 0, 0);--btn-grey: rgb(220, 222, 224);--btn-grey-hover: rgb(230, 232, 234);--btn-load-more: rgb(202, 204, 206);--btn-load-more-hover: rgb(178, 180, 182);--btn-checkbox-border-hover: rgb(176, 178, 182);--switch-bg-color: rgb(178, 180, 182);--switch-bg-active-color: rgb(235, 185, 5);--resizeable-handle-border-color: rgb(160, 162, 164);--tab-color: rgb(202, 204, 206);--tab-hover-color: rgb(206, 208, 210);--tab-list-bg: rgb(235, 185, 5);--tab-list-text: rgb(0, 0, 0);--tab-list-text-inactive: rgb(106, 108, 110);--tab-panel-bg: rgb(214, 216, 218);--metadata-bg-color: rgba(230, 230, 230, .9);--metadata-json-bg-color: rgba(0, 0, 0, .1);--status-good-color: rgb(21, 126, 0);--status-good-glow: var(--background-color);--status-working-color: rgb(235, 141, 0);--status-working-glow: var(--background-color);--status-bad-color: rgb(202, 0, 0);--status-bad-glow: var(--background-color);--settings-modal-bg: rgb(202, 204, 206);--input-checkbox-bg: rgb(90, 90, 120);--input-checkbox-checked-bg: rgb(235, 185, 5);--input-checkbox-checked-tick: rgb(0, 0, 0);--input-border-color: rgb(0, 0, 0);--input-box-shadow-color: none;--error-level-info: rgb(42, 42, 42);--error-level-warning: rgb(173, 121, 0);--error-level-error: rgb(145, 14, 0);--console-bg-color: rgb(220, 224, 230);--console-icon-button-bg-color: var(--switch-bg-color);--console-icon-button-bg-color-hover: var(--resizeable-handle-border-color);--img2img-img-bg-color: rgb(180, 182, 184);--context-menu-bg-color: var(--background-color);--context-menu-box-shadow: 0px 10px 38px -10px rgba(22, 23, 24, .35), 0px 10px 20px -15px rgba(22, 23, 24, .2);--context-menu-bg-color-hover: var(--background-color-secondary);--floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(0, 0, 0, .3));--inpainting-alerts-bg: rgba(220, 222, 224, .75);--inpainting-alerts-icon-color: rgb(0, 0, 0);--inpainting-alerts-bg-active: rgb(255, 200, 0);--inpainting-alerts-icon-active: rgb(0, 0, 0);--inpainting-alerts-bg-alert: var(--invalid);--inpainting-alerts-icon-alert: rgb(0, 0, 0)}@font-face{font-family:Inter;src:url(./Inter.b9a8e5e2.ttf);font-display:swap;font-weight:400;font-style:normal}@font-face{font-family:Inter;src:url(./Inter-Bold.790c108b.ttf);font-display:swap;font-weight:600;font-style:normal}@keyframes slideOut{0%{transform:translate(10rem)}to{transform:translate(0)}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.checkerboard{background-position:0px 0px,10px 10px;background-size:20px 20px;background-image:linear-gradient(45deg,#eee 25%,transparent 25%,transparent 75%,#eee 75%,#eee 100%),linear-gradient(45deg,#eee 25%,white 25%,white 75%,#eee 75%,#eee 100%)}.App{display:grid;width:100vw;height:100vh;background-color:var(--background-color)}.app-content{display:grid;row-gap:1rem;padding:1rem;grid-auto-rows:min-content auto;width:calc(100vw + -0px);height:calc(100vh - .3rem)}.site-header{display:grid;grid-template-columns:auto max-content}.site-header-left-side{display:flex;align-items:center;column-gap:.7rem;padding-left:.5rem}.site-header-left-side img{width:32px;height:32px}.site-header-left-side h1{font-size:1.4rem}.site-header-right-side{display:flex;align-items:center;column-gap:.5rem}.status{font-size:.8rem;font-weight:700}.status-good{color:var(--status-good-color);text-shadow:0 0 10px var(--status-good-glow)}.status-bad{color:var(--status-bad-color);text-shadow:0 0 10px var(--status-bad-glow)}.status-working{color:var(--status-working-color);text-shadow:0 0 10px var(--status-working-glow)}.settings-modal{background-color:var(--settings-modal-bg)!important;max-height:36rem;font-family:Inter}.settings-modal .settings-modal-content{display:grid;row-gap:2rem;overflow-y:scroll}.settings-modal .settings-modal-header{font-weight:700}.settings-modal .settings-modal-items{display:grid;row-gap:.5rem}.settings-modal .settings-modal-items .settings-modal-item{display:grid;grid-auto-flow:column;background-color:var(--background-color);padding:.4rem 1rem;border-radius:.5rem;align-items:center;width:100%}.settings-modal .settings-modal-reset{display:grid;row-gap:1rem}.settings-modal .settings-modal-reset button{min-width:100%;min-height:100%;background-color:var(--destructive-color)!important}.settings-modal .settings-modal-reset button:hover{background-color:var(--destructive-color-hover)!important}.settings-modal .settings-modal-reset button:disabled{background-color:#2d2d37!important}.settings-modal .settings-modal-reset button:disabled:hover{background-color:#2d2d37!important}.settings-modal .settings-modal-reset button svg{width:20px;height:20px;color:var(--btn-svg-color)}.model-list-accordion{outline:none;padding:.25rem}.model-list-accordion button{padding:0;margin:0}.model-list-accordion button:hover{background-color:unset}.model-list-accordion div{border:none!important}.model-list-accordion .model-list-button{display:flex;flex-direction:row;row-gap:.5rem;justify-content:space-between;align-items:center;width:100%}.model-list-accordion .model-list-header-hint{color:var(--text-color-secondary);font-weight:400}.model-list-accordion .model-list-list{display:flex;flex-direction:column;row-gap:.5rem}.model-list-accordion .model-list-list .model-list-item{display:flex;column-gap:.5rem;width:100%;justify-content:space-between;align-items:center}.model-list-accordion .model-list-list .model-list-item .model-list-item-description{font-size:.9rem}.model-list-accordion .model-list-list .model-list-item .model-list-item-status.active{color:var(--status-good-color)}.model-list-accordion .model-list-list .model-list-item .model-list-item-status.cached{color:var(--status-working-color)}.model-list-accordion .model-list-list .model-list-item .model-list-item-status.not-loaded{color:var(--text-color-secondary)}.model-list-accordion .model-list-list .model-list-item .model-list-item-load-btn button{padding:.5rem}.hotkeys-modal{width:36rem!important;max-width:36rem!important;display:grid;padding:1rem;background-color:var(--settings-modal-bg)!important;row-gap:1rem;font-family:Inter}.hotkeys-modal h1{font-size:1.2rem;font-weight:700}.hotkeys-modal h2{font-weight:700}.hotkeys-modal-button{display:flex;align-items:center;justify-content:space-between}.hotkeys-modal-items{max-height:36rem;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.hotkeys-modal-items::-webkit-scrollbar{display:none}.hotkeys-modal-items .chakra-accordion{display:grid;row-gap:.5rem}.hotkeys-modal-items .chakra-accordion__item{border:none;border-radius:.3rem;background-color:var(--tab-hover-color)}.hotkeys-modal-items button{border-radius:.3rem!important}.hotkeys-modal-items button[aria-expanded=true]{background-color:var(--tab-hover-color);border-radius:.3rem}.hotkey-modal-category{display:grid;row-gap:.5rem}.hotkey-modal-item{display:grid;grid-template-columns:auto max-content;justify-content:space-between;align-items:center;background-color:var(--background-color);padding:.5rem 1rem;border-radius:.3rem}.hotkey-modal-item .hotkey-info{display:grid}.hotkey-modal-item .hotkey-info .hotkey-title{font-weight:700}.hotkey-modal-item .hotkey-info .hotkey-description{font-size:.9rem;color:var(--text-color-secondary)}.hotkey-modal-item .hotkey-key{font-size:.8rem;font-weight:700;border:2px solid var(--settings-modal-bg);padding:.2rem .5rem;border-radius:.3rem}.console{width:100vw;display:flex;flex-direction:column;background:var(--console-bg-color);overflow:auto;direction:column;font-family:monospace;padding:0 1rem 1rem 3rem;border-top-width:.3rem;border-color:var(--resizeable-handle-border-color)}.console .console-info-color{color:var(--error-level-info)}.console .console-warning-color{color:var(--error-level-warning)}.console .console-error-color{color:var(--status-bad-color)}.console .console-entry{display:flex;column-gap:.5rem}.console .console-entry .console-timestamp{font-weight:semibold}.console .console-entry .console-message{word-break:break-all}.console-toggle-icon-button{background:var(--console-icon-button-bg-color)!important;position:fixed!important;left:.5rem;bottom:.5rem;z-index:10000}.console-toggle-icon-button:hover{background:var(--console-icon-button-bg-color-hover)!important}.console-toggle-icon-button[data-error-seen=true],.console-toggle-icon-button[data-error-seen=true]:hover{background:var(--status-bad-color)!important}.console-autoscroll-icon-button{background:var(--console-icon-button-bg-color)!important;position:fixed!important;left:.5rem;bottom:3rem;z-index:10000}.console-autoscroll-icon-button:hover{background:var(--console-icon-button-bg-color-hover)!important}.console-autoscroll-icon-button[data-autoscroll-enabled=true]{background:var(--accent-color)!important}.console-autoscroll-icon-button[data-autoscroll-enabled=true]:hover{background:var(--accent-color-hover)!important}.prompt-bar{display:grid;row-gap:1rem}.prompt-bar input,.prompt-bar textarea{background-color:var(--prompt-bg-color);font-size:1rem;border:2px solid var(--border-color)}.prompt-bar input:hover,.prompt-bar textarea:hover{border:2px solid var(--border-color-light)}.prompt-bar input:focus-visible,.prompt-bar textarea:focus-visible{border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.prompt-bar input[aria-invalid=true],.prompt-bar textarea[aria-invalid=true]{border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.prompt-bar input:disabled,.prompt-bar textarea:disabled{border:2px solid var(--border-color);box-shadow:none}.prompt-bar textarea{min-height:10rem}.process-buttons{display:flex;column-gap:.5rem}.invoke-btn{flex-grow:1;width:100%;min-width:100%;min-height:100%;background-color:var(--accent-color)!important}.invoke-btn svg{width:18px!important;height:18px!important}.invoke-btn:hover{background-color:var(--accent-color-hover)!important}.invoke-btn:disabled{background-color:#2d2d37!important}.invoke-btn:disabled:hover{background-color:#2d2d37!important}.invoke-btn svg{width:20px;height:20px;color:var(--btn-svg-color)}.cancel-btn{min-width:100%;min-height:100%;background-color:var(--destructive-color)!important}.cancel-btn:hover{background-color:var(--destructive-color-hover)!important}.cancel-btn:disabled{background-color:#2d2d37!important}.cancel-btn:disabled:hover{background-color:#2d2d37!important}.cancel-btn svg{width:20px;height:20px;color:var(--btn-svg-color)}.main-options,.main-options-list{display:grid;row-gap:1rem}.main-options-row{display:grid;grid-template-columns:repeat(3,auto);column-gap:1rem;max-width:22.5rem}.main-option-block{border-radius:.5rem;display:grid!important;grid-template-columns:auto!important;row-gap:.4rem}.main-option-block .invokeai__number-input-form-label,.main-option-block .invokeai__select-label{width:100%;font-size:.9rem!important;font-weight:700}.main-option-block .number-input-entry{padding:0;height:2.4rem}.main-option-block .iai-select-picker{height:2.4rem;border-radius:.3rem}.advanced-options-checkbox{padding:1rem;font-weight:700}.advanced-settings{display:grid;row-gap:.5rem}.advanced-settings-item{display:grid;max-width:22.5rem;border:none;border-top:0px;border-radius:.4rem}.advanced-settings-item[aria-expanded=true]{background-color:var(--tab-hover-color);border-radius:0 0 .4rem .4rem}.advanced-settings-panel{background-color:var(--tab-panel-bg);border-radius:0 0 .4rem .4rem;border:2px solid var(--tab-hover-color)}.advanced-settings-header{border-radius:.4rem}.advanced-settings-header[aria-expanded=true]{background-color:var(--tab-color);border-radius:.4rem .4rem 0 0}.advanced-settings-header:hover{background-color:var(--tab-hover-color)!important}.upscale-options{display:grid;grid-template-columns:auto 1fr;column-gap:1rem}.inpainting-bounding-box-settings{display:flex;flex-direction:column;border-radius:.4rem;border:2px solid var(--tab-color)}.inpainting-bounding-box-header{background-color:var(--tab-color);display:flex;flex-direction:row;justify-content:space-between;padding:.5rem 1rem;border-radius:.4rem .4rem 0 0;align-items:center}.inpainting-bounding-box-header button{width:.5rem!important;height:1.2rem!important;background:none!important}.inpainting-bounding-box-header button:hover{background:none!important}.inpainting-bounding-box-header p{font-weight:700}.inpainting-bounding-box-settings-items{padding:1rem;display:flex;flex-direction:column;row-gap:1rem}.inpainting-bounding-box-settings-items .inpainting-bounding-box-reset-icon-btn{background-color:var(--btn-load-more)!important}.inpainting-bounding-box-settings-items .inpainting-bounding-box-reset-icon-btn:hover{background-color:var(--btn-load-more-hover)!important}.inpainting-bounding-box-dimensions-slider-numberinput{display:grid;grid-template-columns:repeat(3,auto);column-gap:1rem}.inpainting-bounding-box-darken{width:max-content}.progress-bar{background-color:var(--root-bg-color);height:.3rem!important;z-index:99}.progress-bar div{background-color:var(--progress-bar-color)}.progress-bar div[data-indeterminate]{background-color:unset;background-image:linear-gradient(to right,transparent 0%,var(--progress-bar-color) 50%,transparent 100%)}.current-image-area{display:flex;flex-direction:column;height:100%;row-gap:1rem;background-color:var(--background-color-secondary);border-radius:.5rem}.current-image-preview{position:relative;justify-content:center;align-items:center;display:flex;width:100%;height:100%}.current-image-preview img{background-color:var(--img2img-img-bg-color);border-radius:.5rem;object-fit:contain;max-width:100%;max-height:100%;height:auto;position:absolute}.current-image-metadata{grid-area:current-image-preview}.current-image-next-prev-buttons{grid-area:current-image-content;display:flex;justify-content:space-between;z-index:1;height:100%;width:100%;pointer-events:none}.next-prev-button-trigger-area{width:7rem;height:100%;width:15%;display:grid;align-items:center;pointer-events:auto}.next-prev-button-trigger-area.prev-button-trigger-area{justify-content:flex-start}.next-prev-button-trigger-area.next-button-trigger-area{justify-content:flex-end}.next-prev-button{font-size:4rem;fill:var(--white);filter:drop-shadow(0 0 1rem var(--text-color-secondary));opacity:70%}.current-image-display-placeholder{background-color:var(--background-color-secondary);display:grid;display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:.5rem}.current-image-display-placeholder svg{width:10rem;height:10rem;color:var(--svg-color)}.current-image-options{width:100%;display:flex;justify-content:center;align-items:center;column-gap:.5rem}.current-image-options .current-image-send-to-popover,.current-image-options .current-image-postprocessing-popover{display:flex;flex-direction:column;row-gap:.5rem;max-width:25rem}.current-image-options .chakra-popover__popper{z-index:11}.image-gallery-wrapper-enter{transform:translate(150%)}.image-gallery-wrapper-enter-active{transform:translate(0);transition:all .12s ease-out}.image-gallery-wrapper-exit{transform:translate(0)}.image-gallery-wrapper-exit-active{transform:translate(150%);transition:all .12s ease-out}.image-gallery-wrapper[data-pinned=false]{position:fixed;height:100vh;top:0;right:0}.image-gallery-wrapper[data-pinned=false] .image-gallery-popup{border-radius:0;box-shadow:0 0 1rem var(--text-color-a3)}.image-gallery-wrapper[data-pinned=false] .image-gallery-popup .image-gallery-container{max-height:calc(100vh + 4.7rem)}.image-gallery-wrapper .image-gallery-popup{background-color:var(--tab-color);padding:1rem;display:flex;flex-direction:column;row-gap:1rem;border-radius:.5rem;border-left-width:.3rem;border-color:var(--resizeable-handle-border-color)}.image-gallery-wrapper .image-gallery-popup[data-resize-alert=true]{border-color:var(--status-bad-color)}.image-gallery-wrapper .image-gallery-popup .image-gallery-header{display:flex;align-items:center;column-gap:.5rem;justify-content:space-between}.image-gallery-wrapper .image-gallery-popup .image-gallery-header div{display:flex;column-gap:.5rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-icon-btn{background-color:var(--btn-load-more)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-icon-btn:hover{background-color:var(--btn-load-more-hover)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-settings-popover{display:flex;flex-direction:column;row-gap:.5rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-header .image-gallery-settings-popover div{display:flex;column-gap:.5rem;align-items:center;justify-content:space-between}.image-gallery-wrapper .image-gallery-popup .image-gallery-header h1{font-weight:700}.image-gallery-wrapper .image-gallery-popup .image-gallery-container{display:flex;flex-direction:column;max-height:calc(100vh - (70px + 7rem));overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.image-gallery-wrapper .image-gallery-popup .image-gallery-container::-webkit-scrollbar{display:none}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder{display:flex;flex-direction:column;background-color:var(--background-color-secondary);border-radius:.5rem;place-items:center;padding:2rem;text-align:center}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder p{color:var(--subtext-color-bright);font-family:Inter}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-container-placeholder svg{width:5rem;height:5rem;color:var(--svg-color)}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn{background-color:var(--btn-load-more)!important;font-size:.85rem!important;padding:.5rem;margin-top:1rem}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn:disabled:hover{background-color:var(--btn-load-more)!important}.image-gallery-wrapper .image-gallery-popup .image-gallery-container .image-gallery-load-more-btn:hover{background-color:var(--btn-load-more-hover)!important}.image-gallery-category-btn-group{width:100%!important;column-gap:0!important;justify-content:stretch!important}.image-gallery-category-btn-group button{flex-grow:1}.image-gallery-category-btn-group button[data-selected=true]{background-color:var(--accent-color)}.image-gallery-category-btn-group button[data-selected=true]:hover{background-color:var(--accent-color-hover)}.image-gallery{display:grid;grid-gap:.5rem}.image-gallery .hoverable-image{padding:.5rem;position:relative}.image-gallery .hoverable-image:before{content:"";display:block;padding-bottom:100%}.image-gallery .hoverable-image .hoverable-image-image{position:absolute;max-width:100%;top:50%;left:50%;transform:translate(-50%,-50%)}.hoverable-image{display:flex;justify-content:center;transition:transform .2s ease-out}.hoverable-image:hover{cursor:pointer;border-radius:.5rem;z-index:2}.hoverable-image .hoverable-image-image{width:100%;height:100%;max-width:100%;max-height:100%}.hoverable-image .hoverable-image-delete-button{position:absolute;top:.25rem;right:.25rem}.hoverable-image .hoverable-image-content{display:flex;position:absolute;top:0;left:0;width:100%;height:100%;align-items:center;justify-content:center}.hoverable-image .hoverable-image-content .hoverable-image-check{fill:var(--status-good-color)}.hoverable-image .hoverable-image-icons{position:absolute;bottom:-2rem;display:grid;width:min-content;grid-template-columns:repeat(2,max-content);border-radius:.4rem;background-color:var(--background-color-secondary);padding:.2rem;gap:.2rem;grid-auto-rows:max-content}.hoverable-image .hoverable-image-icons button{width:12px;height:12px;border-radius:.2rem;padding:10px 0;flex-shrink:2}.hoverable-image .hoverable-image-icons button svg{width:12px;height:12px}.hoverable-image-context-menu{z-index:15;padding:.4rem;border-radius:.25rem;background-color:var(--context-menu-bg-color);box-shadow:var(--context-menu-box-shadow)}.hoverable-image-context-menu [role=menuitem]{font-size:.8rem;line-height:1rem;border-radius:3px;display:flex;align-items:center;height:1.75rem;padding:0 .5rem;position:relative;user-select:none;cursor:pointer;outline:none}.hoverable-image-context-menu [role=menuitem][data-disabled]{color:gray;pointer-events:none;cursor:not-allowed}.hoverable-image-context-menu [role=menuitem][data-warning]{color:var(--status-bad-color)}.hoverable-image-context-menu [role=menuitem][data-highlighted]{background-color:var(--context-menu-bg-color-hover)}.image-metadata-viewer{position:absolute;top:0;width:100%;border-radius:.5rem;padding:1rem;background-color:var(--metadata-bg-color);overflow:scroll;max-height:calc(100vh - (70px + 5.4rem));height:100%;z-index:10}.image-json-viewer{border-radius:.5rem;margin:0 .5rem 1rem;padding:1rem;overflow-x:scroll;word-break:break-all;background-color:var(--metadata-json-bg-color)}.app-tabs{display:grid!important;grid-template-columns:min-content auto;column-gap:1rem;height:calc(100vh - (70px + 1rem))}.app-tabs-list{display:grid;row-gap:.3rem;grid-auto-rows:min-content;color:var(--tab-list-text-inactive)}.app-tabs-list button{font-size:.85rem;padding:.5rem}.app-tabs-list button:hover{background-color:var(--tab-hover-color);border-radius:.3rem}.app-tabs-list button svg{width:26px;height:26px}.app-tabs-list button[aria-selected=true]{background-color:var(--tab-list-bg);color:var(--tab-list-text);font-weight:700;border-radius:.3rem;border:none}.app-tabs-panels .app-tabs-panel{padding:0;height:100%}.workarea-wrapper{position:relative;width:100%;height:100%}.workarea-wrapper .workarea-main{display:flex;column-gap:1rem;height:100%}.workarea-wrapper .workarea-main .workarea-children-wrapper{position:relative;width:100%;height:100%}.workarea-wrapper .workarea-main .workarea-split-view{width:100%;height:100%;display:grid;grid-template-columns:1fr 1fr;background-color:var(--background-color-secondary);border-radius:.5rem}.workarea-wrapper .workarea-main .workarea-single-view{width:100%;height:100%;background-color:var(--background-color-secondary);border-radius:.5rem}.workarea-wrapper .workarea-main .workarea-split-view-left,.workarea-wrapper .workarea-main .workarea-split-view-right{display:flex;flex-direction:column;height:100%;width:100%;row-gap:1rem;background-color:var(--background-color-secondary);border-radius:.5rem;padding:1rem}.workarea-wrapper .workarea-main .workarea-split-view-left{padding-right:.5rem}.workarea-wrapper .workarea-main .workarea-split-view-right{padding-left:.5rem}.workarea-split-button{position:absolute;cursor:pointer;padding:.5rem;top:0;right:0;z-index:20}.workarea-split-button[data-selected=true]{top:0;right:0}.workarea-split-button[data-selected=true] svg{opacity:1}.workarea-split-button svg{opacity:.5}.options-panel-wrapper-enter{transform:translate(-150%)}.options-panel-wrapper-enter-active{transform:translate(0);transition:all .12s ease-out}.options-panel-wrapper-exit{transform:translate(0)}.options-panel-wrapper-exit-active{transform:translate(-150%);transition:all .12s ease-out}.options-panel-wrapper{background-color:var(--background-color);height:calc(100vh - (70px + 1rem));width:22.5rem;max-width:22.5rem;flex-shrink:0;position:relative;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.options-panel-wrapper::-webkit-scrollbar{display:none}.options-panel-wrapper .options-panel{display:flex;flex-direction:column;row-gap:1rem;height:100%;-ms-overflow-style:none;scrollbar-width:none;background-color:var(--background-color)!important}.options-panel-wrapper .options-panel::-webkit-scrollbar{display:none}.options-panel-wrapper[data-pinned=false]{z-index:20;position:fixed;top:0;left:0;filter:var(--floating-panel-drop-shadow);width:24.5rem;max-width:24.5rem;height:100%}.options-panel-wrapper[data-pinned=false] .options-panel-margin{margin:1rem}.options-panel-wrapper .options-panel-pin-button{position:absolute;cursor:pointer;padding:.5rem;top:1rem;right:1rem;z-index:20}.options-panel-wrapper .options-panel-pin-button[data-selected=true]{top:0;right:0}.options-panel-wrapper .options-panel-pin-button svg{opacity:.5}.invoke-ai-logo-wrapper{display:flex;align-items:center;column-gap:.7rem;padding-left:.5rem;padding-top:.3rem}.invoke-ai-logo-wrapper img{width:32px;height:32px}.invoke-ai-logo-wrapper h1{font-size:1.4rem}.text-to-image-area{padding:1rem;height:100%}.image-to-image-area{display:flex;flex-direction:column;row-gap:1rem;width:100%;height:100%}.image-to-image-strength-main-option{display:grid;grid-template-columns:none!important}.image-to-image-strength-main-option .number-input-entry{padding:0 1rem}.init-image-preview-header{display:flex;align-items:center;justify-content:center;width:100%}.init-image-preview-header h2{font-weight:700;font-size:.9rem}.init-image-preview{position:relative;height:100%;width:100%;display:flex;align-items:center;justify-content:center}.init-image-preview img{border-radius:.5rem;object-fit:contain;position:absolute}.image-to-image-current-image-display{position:relative}.floating-show-hide-button{position:absolute!important;top:50%;transform:translateY(-50%);z-index:20;padding:0;min-width:1rem;min-height:12rem;background-color:var(--btn-grey)!important}.floating-show-hide-button.left{left:0;border-radius:0 .5rem .5rem 0!important}.floating-show-hide-button.right{right:0;border-radius:.5rem 0 0 .5rem!important}.floating-show-hide-button:hover{background-color:var(--btn-grey-hover)!important}.floating-show-hide-button:disabled{background-color:#2d2d37!important}.floating-show-hide-button:disabled:hover{background-color:#2d2d37!important}.floating-show-hide-button svg{width:20px;height:20px;color:var(--btn-svg-color)}.show-hide-button-options{position:absolute!important;transform:translateY(-50%);z-index:20;min-width:2rem!important;top:50%;left:calc(42px + 2rem);border-radius:0 .5rem .5rem 0!important;display:flex;flex-direction:column;row-gap:.5rem}.show-hide-button-options button{border-radius:0 .3rem .3rem 0;background-color:var(--btn-grey)}.show-hide-button-options button svg{width:18px}.inpainting-main-area{display:flex;flex-direction:column;align-items:center;row-gap:1rem;width:100%;height:100%}.inpainting-main-area .inpainting-settings,.inpainting-main-area .inpainting-settings .inpainting-buttons-group{display:flex;align-items:center;column-gap:.5rem}.inpainting-main-area .inpainting-settings .inpainting-button-dropdown{display:flex;flex-direction:column;row-gap:.5rem}.inpainting-main-area .inpainting-settings .inpainting-color-picker{margin-left:1rem!important}.inpainting-main-area .inpainting-settings .inpainting-brush-options{display:flex;align-items:center;column-gap:1rem}.inpainting-main-area .inpainting-canvas-area{display:flex;flex-direction:column;align-items:center;row-gap:1rem;width:100%;height:100%}.inpainting-main-area .inpainting-canvas-spiner{display:flex;align-items:center;width:100%;height:100%}.inpainting-main-area .inpainting-canvas-container{display:flex;align-items:center;justify-content:center;height:100%;width:100%;border-radius:.5rem}.inpainting-main-area .inpainting-canvas-container .inpainting-canvas-wrapper{position:relative}.inpainting-main-area .inpainting-canvas-container .inpainting-canvas-stage{border-radius:.5rem}.inpainting-main-area .inpainting-canvas-container .inpainting-canvas-stage canvas{border-radius:.5rem}.inpainting-options-btn{min-height:2rem}.inpainting-alerts{position:absolute;top:0;left:0;z-index:2;margin:.5rem}.inpainting-alerts button{background-color:var(--inpainting-alerts-bg)}.inpainting-alerts button svg{fill:var(--inpainting-alerts-icon-color)}.inpainting-alerts button[data-selected=true]{background-color:var(--inpainting-alerts-bg-active)}.inpainting-alerts button[data-selected=true] svg{fill:var(--inpainting-alerts-icon-active)}.inpainting-alerts button[data-alert=true]{background-color:var(--inpainting-alerts-bg-alert)}.inpainting-alerts button[data-alert=true] svg{fill:var(--inpainting-alerts-icon-alert)}.invokeai__number-input-form-control{display:grid;grid-template-columns:max-content auto;align-items:center}.invokeai__number-input-form-control .invokeai__number-input-form-label{color:var(--text-color-secondary);margin-right:0;font-size:1rem;margin-bottom:0;flex-grow:2;white-space:nowrap;padding-right:1rem}.invokeai__number-input-form-control .invokeai__number-input-form-label[data-focus]+.invokeai__number-input-root{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.invokeai__number-input-form-control .invokeai__number-input-form-label[aria-invalid=true]+.invokeai__number-input-root{outline:none;border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.invokeai__number-input-form-control .invokeai__number-input-root{height:2rem;display:grid;grid-template-columns:auto max-content;column-gap:.5rem;align-items:center;background-color:var(--background-color-secondary);border:2px solid var(--border-color);border-radius:.2rem}.invokeai__number-input-form-control .invokeai__number-input-field{border:none;font-weight:700;width:100%;height:auto;padding:0;font-size:.9rem;padding-left:.5rem;padding-right:.5rem}.invokeai__number-input-form-control .invokeai__number-input-field:focus{outline:none;box-shadow:none}.invokeai__number-input-form-control .invokeai__number-input-field:disabled{opacity:.2}.invokeai__number-input-form-control .invokeai__number-input-stepper{display:grid;padding-right:.5rem}.invokeai__number-input-form-control .invokeai__number-input-stepper .invokeai__number-input-stepper-button{border:none;padding:0 .5rem;margin:0 -.5rem}.invokeai__number-input-form-control .invokeai__number-input-stepper .invokeai__number-input-stepper-button svg{width:10px;height:10px}.input{display:grid;grid-template-columns:max-content auto;column-gap:1rem;align-items:center}.input .input-label{color:var(--text-color-secondary);margin-right:0}.input .input-entry{background-color:var(--background-color-secondary);border:2px solid var(--border-color);border-radius:.2rem;font-weight:700}.input .input-entry:focus{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.input .input-entry:disabled{opacity:.2}.input .input-entry[aria-invalid=true]{outline:none;border:2px solid var(--border-color-invalid);box-shadow:0 0 10px 0 var(--box-shadow-color-invalid)}.invokeai__icon-button{background-color:var(--btn-grey);cursor:pointer}.invokeai__icon-button:hover{background-color:var(--btn-grey-hover)}.invokeai__icon-button[data-selected=true]{background-color:var(--accent-color)}.invokeai__icon-button[data-selected=true]:hover{background-color:var(--accent-color-hover)}.invokeai__icon-button[disabled]{cursor:not-allowed}.invokeai__icon-button[data-variant=link],.invokeai__icon-button[data-variant=link]:hover{background:none!important}.invokeai__icon-button[data-selected=true]{border-color:var(--accent-color)}.invokeai__icon-button[data-selected=true]:hover{border-color:var(--accent-color-hover)}.invokeai__icon-button[data-alert=true]{animation-name:pulseColor;animation-duration:1s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.invokeai__icon-button[data-alert=true]:hover{animation:none;background-color:var(--accent-color-hover)}.invokeai__icon-button[data-as-checkbox=true]{background-color:var(--btn-grey);border:3px solid var(--btn-grey)}.invokeai__icon-button[data-as-checkbox=true] svg{fill:var(--text-color)}.invokeai__icon-button[data-as-checkbox=true]:hover{background-color:var(--btn-grey);border-color:var(--btn-checkbox-border-hover)}.invokeai__icon-button[data-as-checkbox=true]:hover svg{fill:var(--text-color)}@keyframes pulseColor{0%{background-color:var(--accent-color)}50%{background-color:var(--accent-color-dim)}to{background-color:var(--accent-color)}}.invokeai__button{justify-content:space-between}.invokeai__switch-form-control .invokeai__switch-form-label{display:flex;column-gap:1rem;justify-content:space-between;align-items:center;color:var(--text-color-secondary);font-size:1rem;margin-right:0;margin-bottom:.1rem;white-space:nowrap;width:auto}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root span{background-color:var(--switch-bg-color)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root span span{background-color:var(--white)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root[data-checked] span{background:var(--switch-bg-active-color)}.invokeai__switch-form-control .invokeai__switch-form-label .invokeai__switch-root[data-checked] span span{background-color:var(--white)}.invokeai__select{display:flex;column-gap:1rem;align-items:center;width:max-content}.invokeai__select .invokeai__select-label{color:var(--text-color-secondary);margin-right:0}.invokeai__select .invokeai__select-picker{border:2px solid var(--border-color);background-color:var(--background-color-secondary);font-weight:700;height:2rem;border-radius:.2rem}.invokeai__select .invokeai__select-picker:focus{outline:none;border:2px solid var(--input-border-color);box-shadow:0 0 10px 0 var(--input-box-shadow-color)}.invokeai__select .invokeai__select-option{background-color:var(--background-color-secondary)}.invokeai__slider-form-control{display:flex;column-gap:1rem;justify-content:space-between;align-items:center;width:max-content;padding-right:.25rem}.invokeai__slider-form-control .invokeai__slider-inner-container{display:flex;column-gap:.5rem}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-form-label{color:var(--text-color-secondary);margin:0;margin-right:.5rem;margin-bottom:.1rem}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-root .invokeai__slider-filled-track{background-color:var(--accent-color-hover)}.invokeai__slider-form-control .invokeai__slider-inner-container .invokeai__slider-root .invokeai__slider-track{background-color:var(--text-color-secondary);height:5px;border-radius:9999px}.invokeai__checkbox .chakra-checkbox__label{margin-top:1px;color:var(--text-color-secondary);font-size:.9rem}.invokeai__checkbox .chakra-checkbox__control{width:1rem;height:1rem;border:none;border-radius:.2rem;background-color:var(--input-checkbox-bg)}.invokeai__checkbox .chakra-checkbox__control svg{width:.6rem;height:.6rem;stroke-width:3px!important}.invokeai__checkbox .chakra-checkbox__control[data-checked]{color:var(--text-color);background-color:var(--input-checkbox-checked-bg)}.invokeai__popover-content{min-width:unset;width:unset!important;padding:1rem;border-radius:.5rem!important;background-color:var(--background-color)!important;border:2px solid var(--border-color)!important}.invokeai__popover-content .invokeai__popover-arrow{background-color:var(--background-color)!important}.invokeai__color-picker .react-colorful__hue-pointer,.invokeai__color-picker .react-colorful__saturation-pointer{width:1.5rem;height:1.5rem;border-color:var(--white)}.dropzone-container{position:absolute;top:0;left:0;width:100vw;height:100vh;z-index:999;backdrop-filter:blur(20px)}.dropzone-container .dropzone-overlay{opacity:.5;width:100%;height:100%;display:flex;flex-direction:column;row-gap:1rem;align-items:center;justify-content:center;background-color:var(--background-color)}.dropzone-container .dropzone-overlay.is-drag-accept{box-shadow:inset 0 0 20rem 1rem var(--accent-color)}.dropzone-container .dropzone-overlay.is-drag-reject{box-shadow:inset 0 0 20rem 1rem var(--status-bad-color)}.dropzone-container .dropzone-overlay.is-handling-upload{box-shadow:inset 0 0 20rem 1rem var(--status-working-color)}.image-uploader-button-outer{min-width:20rem;width:100%;height:100%;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:.5rem;color:var(--tab-list-text-inactive);background-color:var(--btn-grey)}.image-uploader-button-outer:hover{background-color:var(--btn-grey-hover)}.image-upload-button-inner{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.image-upload-button{display:flex;flex-direction:column;row-gap:2rem;align-items:center;justify-content:center;text-align:center}.image-upload-button svg{width:4rem!important;height:4rem!important}.image-upload-button h2{font-size:1.2rem!important}.work-in-progress{display:grid;width:100%;height:calc(100vh - (70px + 1rem));grid-auto-rows:max-content;background-color:var(--background-color-secondary);border-radius:.4rem;place-content:center;place-items:center;row-gap:1rem}.work-in-progress h1{font-size:2rem;font-weight:700}.work-in-progress p{text-align:center;max-width:50rem;color:var(--subtext-color-bright)}.guide-popover-arrow{background-color:var(--tab-panel-bg)!important;box-shadow:none!important}.guide-popover-content{background-color:var(--background-color-secondary)!important;border:none!important}.guide-popover-guide-content{background:var(--tab-panel-bg);border:2px solid var(--tab-hover-color);border-radius:.4rem;padding:.75rem 1rem;display:grid;grid-template-rows:repeat(auto-fill,1fr);grid-row-gap:.5rem;justify-content:space-between}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body{-ms-overflow-style:none;scrollbar-width:none;background-color:var(--root-bg-color);overflow:hidden}html::-webkit-scrollbar,body::-webkit-scrollbar{display:none}#root{background-color:var(--root-bg-color);color:var(--text-color);font-family:Inter,Arial,Helvetica,sans-serif} diff --git a/frontend/dist/index.html b/frontend/dist/index.html index d0ccb39a8c..e1c5bea664 100644 --- a/frontend/dist/index.html +++ b/frontend/dist/index.html @@ -6,8 +6,8 @@ InvokeAI - A Stable Diffusion Toolkit - - + + diff --git a/frontend/src/app/App.tsx b/frontend/src/app/App.tsx index 655d5ee58c..71b001e9b0 100644 --- a/frontend/src/app/App.tsx +++ b/frontend/src/app/App.tsx @@ -1,8 +1,7 @@ -import { useEffect, useState } from 'react'; +import { useEffect } from 'react'; import ProgressBar from '../features/system/ProgressBar'; import SiteHeader from '../features/system/SiteHeader'; import Console from '../features/system/Console'; -import Loading from '../Loading'; import { useAppDispatch } from './store'; import { requestSystemConfig } from './socketio/actions'; import { keepGUIAlive } from './utils'; @@ -79,17 +78,14 @@ const appSelector = createSelector( const App = () => { const dispatch = useAppDispatch(); - const [isReady, setIsReady] = useState(false); - const { shouldShowGalleryButton, shouldShowOptionsPanelButton } = useAppSelector(appSelector); useEffect(() => { dispatch(requestSystemConfig()); - setIsReady(true); }, [dispatch]); - return isReady ? ( + return (
@@ -104,8 +100,6 @@ const App = () => { {shouldShowOptionsPanelButton && }
- ) : ( - ); }; diff --git a/frontend/src/app/constants.ts b/frontend/src/app/constants.ts index b46f7ec925..bd457dc7fb 100644 --- a/frontend/src/app/constants.ts +++ b/frontend/src/app/constants.ts @@ -1,5 +1,7 @@ // TODO: use Enums? +import { InProgressImageType } from '../features/system/systemSlice'; + // Valid samplers export const SAMPLERS: Array = [ 'ddim', @@ -38,8 +40,11 @@ export const NUMPY_RAND_MAX = 4294967295; export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const; -export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [ - { key: "None", value: 'none'}, - { key: "Fast", value: 'latents' }, - { key: "Accurate", value: 'full-res' } +export const IN_PROGRESS_IMAGE_TYPES: Array<{ + key: string; + value: InProgressImageType; +}> = [ + { key: 'None', value: 'none' }, + { key: 'Fast', value: 'latents' }, + { key: 'Accurate', value: 'full-res' }, ]; diff --git a/frontend/src/app/selectors/readinessSelector.ts b/frontend/src/app/selectors/readinessSelector.ts index fe02ff1dca..702f45c473 100644 --- a/frontend/src/app/selectors/readinessSelector.ts +++ b/frontend/src/app/selectors/readinessSelector.ts @@ -1,6 +1,6 @@ import { createSelector } from '@reduxjs/toolkit'; import _ from 'lodash'; -import { RootState } from '../../app/store'; +import { RootState } from '../store'; import { activeTabNameSelector } from '../../features/options/optionsSelectors'; import { OptionsState } from '../../features/options/optionsSlice'; @@ -25,7 +25,7 @@ export const readinessSelector = createSelector( prompt, shouldGenerateVariations, seedWeights, - maskPath, + // maskPath, initialImage, seed, } = options; @@ -34,33 +34,45 @@ export const readinessSelector = createSelector( const { imageToInpaint } = inpainting; + let isReady = true; + const reasonsWhyNotReady: string[] = []; + // Cannot generate without a prompt if (!prompt || Boolean(prompt.match(/^[\s\r\n]+$/))) { - return false; + isReady = false; + reasonsWhyNotReady.push('Missing prompt'); } if (activeTabName === 'img2img' && !initialImage) { - return false; + isReady = false; + reasonsWhyNotReady.push('No initial image selected'); } if (activeTabName === 'inpainting' && !imageToInpaint) { - return false; + isReady = false; + reasonsWhyNotReady.push('No inpainting image selected'); } - // Cannot generate with a mask without img2img - if (maskPath && !initialImage) { - return false; - } + // // We don't use mask paths now. + // // Cannot generate with a mask without img2img + // if (maskPath && !initialImage) { + // isReady = false; + // reasonsWhyNotReady.push( + // 'On ImageToImage tab, but no mask is provided.' + // ); + // } // TODO: job queue // Cannot generate if already processing an image if (isProcessing) { - return false; + isReady = false; + reasonsWhyNotReady.push('System Busy'); } // Cannot generate if not connected if (!isConnected) { - return false; + isReady = false; + reasonsWhyNotReady.push('System Disconnected'); } // Cannot generate variations without valid seed weights @@ -68,11 +80,12 @@ export const readinessSelector = createSelector( shouldGenerateVariations && (!(validateSeedWeights(seedWeights) || seedWeights === '') || seed === -1) ) { - return false; + isReady = false; + reasonsWhyNotReady.push('Seed-Weights badly formatted.'); } // All good - return true; + return { isReady, reasonsWhyNotReady }; }, { memoizeOptions: { diff --git a/frontend/src/app/socketio/listeners.ts b/frontend/src/app/socketio/listeners.ts index a9877bab38..e27d79f55c 100644 --- a/frontend/src/app/socketio/listeners.ts +++ b/frontend/src/app/socketio/listeners.ts @@ -146,12 +146,14 @@ const makeSocketIOListeners = ( ...data, }) ); - dispatch( - addLogEntry({ - timestamp: dateFormat(new Date(), 'isoDateTime'), - message: `Intermediate image generated: ${data.url}`, - }) - ); + if (!data.isBase64) { + dispatch( + addLogEntry({ + timestamp: dateFormat(new Date(), 'isoDateTime'), + message: `Intermediate image generated: ${data.url}`, + }) + ); + } } catch (e) { console.error(e); } diff --git a/frontend/src/app/store.ts b/frontend/src/app/store.ts index d37da505cb..76ccc09bfe 100644 --- a/frontend/src/app/store.ts +++ b/frontend/src/app/store.ts @@ -5,12 +5,16 @@ import type { TypedUseSelectorHook } from 'react-redux'; import { persistReducer } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; // defaults to localStorage for web -import optionsReducer from '../features/options/optionsSlice'; -import galleryReducer from '../features/gallery/gallerySlice'; -import inpaintingReducer from '../features/tabs/Inpainting/inpaintingSlice'; +import optionsReducer, { OptionsState } from '../features/options/optionsSlice'; +import galleryReducer, { GalleryState } from '../features/gallery/gallerySlice'; +import inpaintingReducer, { + InpaintingState, +} from '../features/tabs/Inpainting/inpaintingSlice'; -import systemReducer from '../features/system/systemSlice'; +import systemReducer, { SystemState } from '../features/system/systemSlice'; import { socketioMiddleware } from './socketio/middleware'; +import autoMergeLevel2 from 'redux-persist/es/stateReconciler/autoMergeLevel2'; +import { PersistPartial } from 'redux-persist/es/persistReducer'; /** * redux-persist provides an easy and reliable way to persist state across reloads. @@ -33,12 +37,14 @@ import { socketioMiddleware } from './socketio/middleware'; const rootPersistConfig = { key: 'root', storage, + stateReconciler: autoMergeLevel2, blacklist: ['gallery', 'system', 'inpainting'], }; const systemPersistConfig = { key: 'system', storage, + stateReconciler: autoMergeLevel2, blacklist: [ 'isCancelable', 'isConnected', @@ -58,6 +64,7 @@ const systemPersistConfig = { const galleryPersistConfig = { key: 'gallery', storage, + stateReconciler: autoMergeLevel2, whitelist: [ 'galleryWidth', 'shouldPinGallery', @@ -71,17 +78,26 @@ const galleryPersistConfig = { const inpaintingPersistConfig = { key: 'inpainting', storage, + stateReconciler: autoMergeLevel2, blacklist: ['pastLines', 'futuresLines', 'cursorPosition'], }; const reducers = combineReducers({ options: optionsReducer, - gallery: persistReducer(galleryPersistConfig, galleryReducer), - system: persistReducer(systemPersistConfig, systemReducer), - inpainting: persistReducer(inpaintingPersistConfig, inpaintingReducer), + gallery: persistReducer(galleryPersistConfig, galleryReducer), + system: persistReducer(systemPersistConfig, systemReducer), + inpainting: persistReducer( + inpaintingPersistConfig, + inpaintingReducer + ), }); -const persistedReducer = persistReducer(rootPersistConfig, reducers); +const persistedReducer = persistReducer<{ + options: OptionsState; + gallery: GalleryState & PersistPartial; + system: SystemState & PersistPartial; + inpainting: InpaintingState & PersistPartial; +}>(rootPersistConfig, reducers); // Continue with store setup export const store = configureStore({ diff --git a/frontend/src/common/components/IAIButton.scss b/frontend/src/common/components/IAIButton.scss new file mode 100644 index 0000000000..1ac41cf0d7 --- /dev/null +++ b/frontend/src/common/components/IAIButton.scss @@ -0,0 +1,3 @@ +.invokeai__button { + justify-content: space-between; +} diff --git a/frontend/src/common/components/IAIButton.tsx b/frontend/src/common/components/IAIButton.tsx index 92af017d01..d25e9decae 100644 --- a/frontend/src/common/components/IAIButton.tsx +++ b/frontend/src/common/components/IAIButton.tsx @@ -1,23 +1,32 @@ -import { Button, ButtonProps, Tooltip } from '@chakra-ui/react'; +import { + Button, + ButtonProps, + forwardRef, + Tooltip, + TooltipProps, +} from '@chakra-ui/react'; +import { ReactNode } from 'react'; export interface IAIButtonProps extends ButtonProps { - label: string; tooltip?: string; + tooltipProps?: Omit; styleClass?: string; + children: ReactNode; } -/** - * Reusable customized button component. - */ -const IAIButton = (props: IAIButtonProps) => { - const { label, tooltip = '', styleClass, ...rest } = props; +const IAIButton = forwardRef((props: IAIButtonProps, forwardedRef) => { + const { children, tooltip = '', tooltipProps, styleClass, ...rest } = props; return ( - - ); -}; +}); export default IAIButton; diff --git a/frontend/src/common/components/IAIIconButton.scss b/frontend/src/common/components/IAIIconButton.scss index d123f1597f..7bed75c3fc 100644 --- a/frontend/src/common/components/IAIIconButton.scss +++ b/frontend/src/common/components/IAIIconButton.scss @@ -1,6 +1,6 @@ @use '../../styles/Mixins/' as *; -.icon-button { +.invokeai__icon-button { background-color: var(--btn-grey); cursor: pointer; @@ -8,13 +8,68 @@ background-color: var(--btn-grey-hover); } - &[data-selected=true] { + &[data-selected='true'] { background-color: var(--accent-color); &:hover { background-color: var(--accent-color-hover); } } + &[disabled] { cursor: not-allowed; } + + &[data-variant='link'] { + background: none !important; + &:hover { + background: none !important; + } + } + + &[data-selected='true'] { + border-color: var(--accent-color); + &:hover { + border-color: var(--accent-color-hover); + } + } + + &[data-alert='true'] { + animation-name: pulseColor; + animation-duration: 1s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; + &:hover { + animation: none; + background-color: var(--accent-color-hover); + } + } + + &[data-as-checkbox='true'] { + background-color: var(--btn-grey); + border: 3px solid var(--btn-grey); + + svg { + fill: var(--text-color); + } + + &:hover { + background-color: var(--btn-grey); + border-color: var(--btn-checkbox-border-hover); + svg { + fill: var(--text-color); + } + } + } +} + +@keyframes pulseColor { + 0% { + background-color: var(--accent-color); + } + 50% { + background-color: var(--accent-color-dim); + } + 100% { + background-color: var(--accent-color); + } } diff --git a/frontend/src/common/components/IAIIconButton.tsx b/frontend/src/common/components/IAIIconButton.tsx index de8765c395..3cc76c09f0 100644 --- a/frontend/src/common/components/IAIIconButton.tsx +++ b/frontend/src/common/components/IAIIconButton.tsx @@ -2,38 +2,40 @@ import { IconButtonProps, IconButton, Tooltip, - PlacementWithLogical, + TooltipProps, + forwardRef, } from '@chakra-ui/react'; -interface Props extends IconButtonProps { - tooltip?: string; - tooltipPlacement?: PlacementWithLogical | undefined; +export type IAIIconButtonProps = IconButtonProps & { styleClass?: string; -} + tooltip?: string; + tooltipProps?: Omit; + asCheckbox?: boolean; + isChecked?: boolean; +}; -/** - * Reusable customized button component. Originally was more customized - now probably unecessary. - */ -const IAIIconButton = (props: Props) => { +const IAIIconButton = forwardRef((props: IAIIconButtonProps, forwardedRef) => { const { tooltip = '', - tooltipPlacement = 'bottom', styleClass, - onClick, - cursor, + tooltipProps, + asCheckbox, + isChecked, ...rest } = props; return ( - + ); -}; +}); export default IAIIconButton; diff --git a/frontend/src/common/components/IAINumberInput.scss b/frontend/src/common/components/IAINumberInput.scss index 32de658131..c7de72dd9a 100644 --- a/frontend/src/common/components/IAINumberInput.scss +++ b/frontend/src/common/components/IAINumberInput.scss @@ -1,7 +1,6 @@ .invokeai__number-input-form-control { display: grid; grid-template-columns: max-content auto; - column-gap: 1rem; align-items: center; .invokeai__number-input-form-label { @@ -11,6 +10,7 @@ margin-bottom: 0; flex-grow: 2; white-space: nowrap; + padding-right: 1rem; &[data-focus] + .invokeai__number-input-root { outline: none; diff --git a/frontend/src/common/components/IAINumberInput.tsx b/frontend/src/common/components/IAINumberInput.tsx index e2ff190b31..b538092909 100644 --- a/frontend/src/common/components/IAINumberInput.tsx +++ b/frontend/src/common/components/IAINumberInput.tsx @@ -123,13 +123,15 @@ const IAINumberInput = (props: Props) => { } {...formControlProps} > - - {label} - + {label && ( + + {label} + + )} { textAlign={textAlign} {...numberInputFieldProps} /> -
- - -
+ {showStepper && ( +
+ + +
+ )}
diff --git a/frontend/src/common/components/IAIPopover.tsx b/frontend/src/common/components/IAIPopover.tsx index 231355cb03..ff18d96ddd 100644 --- a/frontend/src/common/components/IAIPopover.tsx +++ b/frontend/src/common/components/IAIPopover.tsx @@ -3,13 +3,14 @@ import { PopoverArrow, PopoverContent, PopoverTrigger, - Box, + BoxProps, } from '@chakra-ui/react'; import { PopoverProps } from '@chakra-ui/react'; import { ReactNode } from 'react'; type IAIPopoverProps = PopoverProps & { triggerComponent: ReactNode; + triggerContainerProps?: BoxProps; children: ReactNode; styleClass?: string; hasArrow?: boolean; @@ -23,11 +24,10 @@ const IAIPopover = (props: IAIPopoverProps) => { hasArrow = true, ...rest } = props; + return ( - - {triggerComponent} - + {triggerComponent} {hasArrow && } {children} diff --git a/frontend/src/common/components/IAISelect.scss b/frontend/src/common/components/IAISelect.scss index 13e6f21344..d0b9e54037 100644 --- a/frontend/src/common/components/IAISelect.scss +++ b/frontend/src/common/components/IAISelect.scss @@ -1,8 +1,7 @@ @use '../../styles/Mixins/' as *; .invokeai__select { - display: grid; - grid-template-columns: repeat(2, max-content); + display: flex; column-gap: 1rem; align-items: center; width: max-content; diff --git a/frontend/src/common/components/IAISelect.tsx b/frontend/src/common/components/IAISelect.tsx index 3c65ea5c64..cfec3ff18d 100644 --- a/frontend/src/common/components/IAISelect.tsx +++ b/frontend/src/common/components/IAISelect.tsx @@ -1,17 +1,17 @@ import { FormControl, FormLabel, Select, SelectProps } from '@chakra-ui/react'; import { MouseEvent } from 'react'; -interface Props extends SelectProps { +type IAISelectProps = SelectProps & { label: string; styleClass?: string; validValues: | Array | Array<{ key: string; value: string | number }>; -} +}; /** * Customized Chakra FormControl + Select multi-part component. */ -const IAISelect = (props: Props) => { +const IAISelect = (props: IAISelectProps) => { const { label, isDisabled, @@ -33,19 +33,19 @@ const IAISelect = (props: Props) => { }} > {label} {children} - {isDragActive && ( -
- {isDragAccept && ( -
- Drop Images -
- )} - {isDragReject && ( -
- Invalid Upload - Must be single JPEG or PNG image -
- )} - {isHandlingUpload && ( -
- -
- )} -
+ {isDragActive && isHandlingUpload && ( + )} diff --git a/frontend/src/common/components/ImageUploaderIconButton.tsx b/frontend/src/common/components/ImageUploaderIconButton.tsx new file mode 100644 index 0000000000..214e7b7b7c --- /dev/null +++ b/frontend/src/common/components/ImageUploaderIconButton.tsx @@ -0,0 +1,19 @@ +import { useContext } from 'react'; +import { FaUpload } from 'react-icons/fa'; +import { ImageUploaderTriggerContext } from '../../app/contexts/ImageUploaderTriggerContext'; +import IAIIconButton from './IAIIconButton'; + +const ImageUploaderIconButton = () => { + const openImageUploader = useContext(ImageUploaderTriggerContext); + + return ( + } + onClick={openImageUploader || undefined} + /> + ); +}; + +export default ImageUploaderIconButton; diff --git a/frontend/src/common/util/parameterTranslation.ts b/frontend/src/common/util/parameterTranslation.ts index a9acded1e5..d1f52cd9ac 100644 --- a/frontend/src/common/util/parameterTranslation.ts +++ b/frontend/src/common/util/parameterTranslation.ts @@ -62,11 +62,13 @@ export const frontendToBackendParameters = ( shouldRandomizeSeed, } = optionsState; - const { shouldDisplayInProgressType } = systemState; + const { shouldDisplayInProgressType, saveIntermediatesInterval } = + systemState; const generationParameters: { [k: string]: any } = { prompt, - iterations, + iterations: + shouldRandomizeSeed || shouldGenerateVariations ? iterations : 1, steps, cfg_scale: cfgScale, threshold, @@ -76,7 +78,8 @@ export const frontendToBackendParameters = ( sampler_name: sampler, seed, progress_images: shouldDisplayInProgressType === 'full-res', - progress_latents: shouldDisplayInProgressType === 'latents' + progress_latents: shouldDisplayInProgressType === 'latents', + save_intermediates: saveIntermediatesInterval, }; generationParameters.seed = shouldRandomizeSeed diff --git a/frontend/src/features/gallery/CurrentImageButtons.scss b/frontend/src/features/gallery/CurrentImageButtons.scss new file mode 100644 index 0000000000..982fcc4867 --- /dev/null +++ b/frontend/src/features/gallery/CurrentImageButtons.scss @@ -0,0 +1,25 @@ +.current-image-options { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + column-gap: 0.5em; + + .current-image-send-to-popover, + .current-image-postprocessing-popover { + display: flex; + flex-direction: column; + row-gap: 0.5rem; + max-width: 25rem; + } + + .chakra-popover__popper { + z-index: 11; + } + + .delete-image-btn { + svg { + fill: var(--btn-delete-image); + } + } +} diff --git a/frontend/src/features/gallery/CurrentImageButtons.tsx b/frontend/src/features/gallery/CurrentImageButtons.tsx index 4bd5641824..b95e16dda9 100644 --- a/frontend/src/features/gallery/CurrentImageButtons.tsx +++ b/frontend/src/features/gallery/CurrentImageButtons.tsx @@ -1,8 +1,6 @@ import { createSelector } from '@reduxjs/toolkit'; import { isEqual } from 'lodash'; -import * as InvokeAI from '../../app/invokeai'; - import { useAppDispatch, useAppSelector } from '../../app/store'; import { RootState } from '../../app/store'; import { @@ -10,6 +8,7 @@ import { setActiveTab, setAllParameters, setInitialImage, + setPrompt, setSeed, setShouldShowImageDetails, } from '../options/optionsSlice'; @@ -18,27 +17,30 @@ import { SystemState } from '../system/systemSlice'; import IAIButton from '../../common/components/IAIButton'; import { runESRGAN, runFacetool } from '../../app/socketio/actions'; import IAIIconButton from '../../common/components/IAIIconButton'; -import { MdDelete, MdFace, MdHd, MdImage, MdInfo } from 'react-icons/md'; -import InvokePopover from './InvokePopover'; import UpscaleOptions from '../options/AdvancedOptions/Upscale/UpscaleOptions'; import FaceRestoreOptions from '../options/AdvancedOptions/FaceRestore/FaceRestoreOptions'; import { useHotkeys } from 'react-hotkeys-hook'; -import { useToast } from '@chakra-ui/react'; -import { FaCopy, FaPaintBrush, FaSeedling } from 'react-icons/fa'; -import { setImageToInpaint } from '../tabs/Inpainting/inpaintingSlice'; +import { ButtonGroup, Link, useClipboard, useToast } from '@chakra-ui/react'; +import { + FaAsterisk, + FaCode, + FaCopy, + FaDownload, + FaExpandArrowsAlt, + FaGrinStars, + FaQuoteRight, + FaSeedling, + FaShare, + FaShareAlt, + FaTrash, +} from 'react-icons/fa'; +import { + setImageToInpaint, + setNeedsCache, +} from '../tabs/Inpainting/inpaintingSlice'; import { GalleryState } from './gallerySlice'; import { activeTabNameSelector } from '../options/optionsSelectors'; - -const intermediateImageSelector = createSelector( - (state: RootState) => state.gallery, - (gallery: GalleryState) => gallery.intermediateImage, - { - memoizeOptions: { - resultEqualityCheck: (a, b) => - (a === undefined && b === undefined) || a.uuid === b.uuid, - }, - } -); +import IAIPopover from '../../common/components/IAIPopover'; const systemSelector = createSelector( [ @@ -59,7 +61,7 @@ const systemSelector = createSelector( const { upscalingLevel, facetoolStrength, shouldShowImageDetails } = options; - const { intermediateImage } = gallery; + const { intermediateImage, currentImage } = gallery; return { isProcessing, @@ -68,7 +70,8 @@ const systemSelector = createSelector( isESRGANAvailable, upscalingLevel, facetoolStrength, - intermediateImage, + shouldDisableToolbarButtons: Boolean(intermediateImage) || !currentImage, + currentImage, shouldShowImageDetails, activeTabName, }; @@ -80,15 +83,11 @@ const systemSelector = createSelector( } ); -type CurrentImageButtonsProps = { - image: InvokeAI.Image; -}; - /** * Row of buttons for common actions: * Use as init image, use all params, use seed, upscale, fix faces, details, delete. */ -const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { +const CurrentImageButtons = () => { const dispatch = useAppDispatch(); const { isProcessing, @@ -97,22 +96,37 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { isESRGANAvailable, upscalingLevel, facetoolStrength, - intermediateImage, + shouldDisableToolbarButtons, shouldShowImageDetails, - activeTabName, + currentImage, } = useAppSelector(systemSelector); + const { onCopy } = useClipboard( + currentImage ? window.location.toString() + currentImage.url : '' + ); + const toast = useToast(); const handleClickUseAsInitialImage = () => { - dispatch(setInitialImage(image)); - dispatch(setActiveTab(1)); + if (!currentImage) return; + dispatch(setInitialImage(currentImage)); + dispatch(setActiveTab('img2img')); + }; + + const handleCopyImageLink = () => { + onCopy(); + toast({ + title: 'Image Link Copied', + status: 'success', + duration: 2500, + isClosable: true, + }); }; useHotkeys( 'shift+i', () => { - if (image) { + if (currentImage) { handleClickUseAsInitialImage(); toast({ title: 'Sent To Image To Image', @@ -130,16 +144,20 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { }); } }, - [image] + [currentImage] ); - const handleClickUseAllParameters = () => - image.metadata && dispatch(setAllParameters(image.metadata)); + const handleClickUseAllParameters = () => { + if (!currentImage) return; + currentImage.metadata && dispatch(setAllParameters(currentImage.metadata)); + }; useHotkeys( 'a', () => { - if (['txt2img', 'img2img'].includes(image?.metadata?.image?.type)) { + if ( + ['txt2img', 'img2img'].includes(currentImage?.metadata?.image?.type) + ) { handleClickUseAllParameters(); toast({ title: 'Parameters Set', @@ -157,15 +175,18 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { }); } }, - [image] + [currentImage] ); - const handleClickUseSeed = () => - image.metadata && dispatch(setSeed(image.metadata.image.seed)); + const handleClickUseSeed = () => { + currentImage?.metadata && + dispatch(setSeed(currentImage.metadata.image.seed)); + }; + useHotkeys( 's', () => { - if (image?.metadata?.image?.seed) { + if (currentImage?.metadata?.image?.seed) { handleClickUseSeed(); toast({ title: 'Seed Set', @@ -183,16 +204,47 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { }); } }, - [image] + [currentImage] ); - const handleClickUpscale = () => dispatch(runESRGAN(image)); + const handleClickUsePrompt = () => + currentImage?.metadata?.image?.prompt && + dispatch(setPrompt(currentImage.metadata.image.prompt)); + + useHotkeys( + 'p', + () => { + if (currentImage?.metadata?.image?.prompt) { + handleClickUsePrompt(); + toast({ + title: 'Prompt Set', + status: 'success', + duration: 2500, + isClosable: true, + }); + } else { + toast({ + title: 'Prompt Not Set', + description: 'Could not find prompt for this image.', + status: 'error', + duration: 2500, + isClosable: true, + }); + } + }, + [currentImage] + ); + + const handleClickUpscale = () => { + currentImage && dispatch(runESRGAN(currentImage)); + }; + useHotkeys( 'u', () => { if ( isESRGANAvailable && - Boolean(!intermediateImage) && + !shouldDisableToolbarButtons && isConnected && !isProcessing && upscalingLevel @@ -208,23 +260,25 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { } }, [ - image, + currentImage, isESRGANAvailable, - intermediateImage, + shouldDisableToolbarButtons, isConnected, isProcessing, upscalingLevel, ] ); - const handleClickFixFaces = () => dispatch(runFacetool(image)); + const handleClickFixFaces = () => { + currentImage && dispatch(runFacetool(currentImage)); + }; useHotkeys( 'r', () => { if ( isGFPGANAvailable && - Boolean(!intermediateImage) && + !shouldDisableToolbarButtons && isConnected && !isProcessing && facetoolStrength @@ -240,9 +294,9 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { } }, [ - image, + currentImage, isGFPGANAvailable, - intermediateImage, + shouldDisableToolbarButtons, isConnected, isProcessing, facetoolStrength, @@ -253,10 +307,13 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { dispatch(setShouldShowImageDetails(!shouldShowImageDetails)); const handleSendToInpainting = () => { - dispatch(setImageToInpaint(image)); - if (activeTabName !== 'inpainting') { - dispatch(setActiveTab('inpainting')); - } + if (!currentImage) return; + + dispatch(setImageToInpaint(currentImage)); + + dispatch(setActiveTab('inpainting')); + dispatch(setNeedsCache(true)); + toast({ title: 'Sent to Inpainting', status: 'success', @@ -268,7 +325,7 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { useHotkeys( 'i', () => { - if (image) { + if (currentImage) { handleClickShowImageDetails(); } else { toast({ @@ -279,111 +336,141 @@ const CurrentImageButtons = ({ image }: CurrentImageButtonsProps) => { }); } }, - [image, shouldShowImageDetails] + [currentImage, shouldShowImageDetails] ); return (
- } - tooltip="Send To Image To Image" - aria-label="Send To Image To Image" - onClick={handleClickUseAsInitialImage} - /> + + } /> + } + > +
+ } + > + Send to Image to Image + + } + > + Send to Inpainting + + } + > + Copy Link to Image + + + } size={'sm'}> + + Download Image + + +
+
+
+ + + } + tooltip="Use Prompt" + aria-label="Use Prompt" + isDisabled={!currentImage?.metadata?.image?.prompt} + onClick={handleClickUsePrompt} + /> + + } + tooltip="Use Seed" + aria-label="Use Seed" + isDisabled={!currentImage?.metadata?.image?.seed} + onClick={handleClickUseSeed} + /> + + } + tooltip="Use All" + aria-label="Use All" + isDisabled={ + !['txt2img', 'img2img'].includes( + currentImage?.metadata?.image?.type + ) + } + onClick={handleClickUseAllParameters} + /> + + + + } aria-label="Restore Faces" /> + } + > +
+ + + Restore Faces + +
+
+ + } aria-label="Upscale" /> + } + > +
+ + + Upscale Image + +
+
+
} - tooltip="Send To Inpainting" - aria-label="Send To Inpainting" - onClick={handleSendToInpainting} - /> - - } - tooltip="Use All" - aria-label="Use All" - isDisabled={ - !['txt2img', 'img2img'].includes(image?.metadata?.image?.type) - } - onClick={handleClickUseAllParameters} - /> - - } - tooltip="Use Seed" - aria-label="Use Seed" - isDisabled={!image?.metadata?.image?.seed} - onClick={handleClickUseSeed} - /> - - {/* - - */} - - } - actionButton={ - - } - > - } aria-label="Restore Faces" /> - - - } - actionButton={ - - } - > - } aria-label="Upscale" /> - - - } + icon={} tooltip="Details" aria-label="Details" + data-selected={shouldShowImageDetails} onClick={handleClickShowImageDetails} /> - + } + icon={} tooltip="Delete Image" aria-label="Delete Image" - isDisabled={ - Boolean(intermediateImage) || !isConnected || isProcessing - } + isDisabled={!currentImage || !isConnected || isProcessing} + className="delete-image-btn" />
diff --git a/frontend/src/features/gallery/CurrentImageDisplay.scss b/frontend/src/features/gallery/CurrentImageDisplay.scss index 89230ae751..7999ebe06b 100644 --- a/frontend/src/features/gallery/CurrentImageDisplay.scss +++ b/frontend/src/features/gallery/CurrentImageDisplay.scss @@ -9,18 +9,6 @@ border-radius: 0.5rem; } -.current-image-options { - width: 100%; - display: flex; - justify-content: center; - align-items: center; - column-gap: 0.5rem; - - .chakra-popover__popper { - z-index: 11; - } -} - .current-image-preview { position: relative; justify-content: center; @@ -50,6 +38,7 @@ justify-content: space-between; z-index: 1; height: 100%; + width: 100%; pointer-events: none; } diff --git a/frontend/src/features/gallery/CurrentImageDisplay.tsx b/frontend/src/features/gallery/CurrentImageDisplay.tsx index dcf4d09dd9..d784096f7c 100644 --- a/frontend/src/features/gallery/CurrentImageDisplay.tsx +++ b/frontend/src/features/gallery/CurrentImageDisplay.tsx @@ -19,10 +19,9 @@ export const currentImageDisplaySelector = createSelector( const { shouldShowImageDetails } = options; return { - currentImage, - intermediateImage, activeTabName, shouldShowImageDetails, + hasAnImageToDisplay: currentImage || intermediateImage, }; }, { @@ -36,18 +35,16 @@ export const currentImageDisplaySelector = createSelector( * Displays the current image if there is one, plus associated actions. */ const CurrentImageDisplay = () => { - const { currentImage, intermediateImage, activeTabName } = useAppSelector( + const { hasAnImageToDisplay, activeTabName } = useAppSelector( currentImageDisplaySelector ); - const imageToDisplay = intermediateImage || currentImage; - return (
- {imageToDisplay ? ( + {hasAnImageToDisplay ? ( <> - - + + ) : (
diff --git a/frontend/src/features/gallery/CurrentImagePreview.tsx b/frontend/src/features/gallery/CurrentImagePreview.tsx index 845e047b8a..708361ca7f 100644 --- a/frontend/src/features/gallery/CurrentImagePreview.tsx +++ b/frontend/src/features/gallery/CurrentImagePreview.tsx @@ -2,8 +2,12 @@ import { IconButton, Image } from '@chakra-ui/react'; import { useState } from 'react'; import { FaAngleLeft, FaAngleRight } from 'react-icons/fa'; import { RootState, useAppDispatch, useAppSelector } from '../../app/store'; -import { GalleryState, selectNextImage, selectPrevImage } from './gallerySlice'; -import * as InvokeAI from '../../app/invokeai'; +import { + GalleryCategory, + GalleryState, + selectNextImage, + selectPrevImage, +} from './gallerySlice'; import { createSelector } from '@reduxjs/toolkit'; import _ from 'lodash'; import { OptionsState } from '../options/optionsSlice'; @@ -12,20 +16,29 @@ import ImageMetadataViewer from './ImageMetaDataViewer/ImageMetadataViewer'; export const imagesSelector = createSelector( [(state: RootState) => state.gallery, (state: RootState) => state.options], (gallery: GalleryState, options: OptionsState) => { - const { currentCategory } = gallery; + const { currentCategory, currentImage, intermediateImage } = gallery; const { shouldShowImageDetails } = options; - const tempImages = gallery.categories[currentCategory].images; + const tempImages = + gallery.categories[ + currentImage ? (currentImage.category as GalleryCategory) : 'result' + ].images; const currentImageIndex = tempImages.findIndex( (i) => i.uuid === gallery?.currentImage?.uuid ); const imagesLength = tempImages.length; + return { + imageToDisplay: intermediateImage ? intermediateImage : currentImage, + isIntermediate: intermediateImage, currentCategory, isOnFirstImage: currentImageIndex === 0, isOnLastImage: !isNaN(currentImageIndex) && currentImageIndex === imagesLength - 1, shouldShowImageDetails, + shouldShowPrevImageButton: currentImageIndex === 0, + shouldShowNextImageButton: + !isNaN(currentImageIndex) && currentImageIndex === imagesLength - 1, }; }, { @@ -35,16 +48,16 @@ export const imagesSelector = createSelector( } ); -interface CurrentImagePreviewProps { - imageToDisplay: InvokeAI.Image; -} - -export default function CurrentImagePreview(props: CurrentImagePreviewProps) { - const { imageToDisplay } = props; +export default function CurrentImagePreview() { const dispatch = useAppDispatch(); - const { isOnFirstImage, isOnLastImage, shouldShowImageDetails } = - useAppSelector(imagesSelector); + const { + isOnFirstImage, + isOnLastImage, + shouldShowImageDetails, + imageToDisplay, + isIntermediate, + } = useAppSelector(imagesSelector); const [shouldShowNextPrevButtons, setShouldShowNextPrevButtons] = useState(false); @@ -67,11 +80,13 @@ export default function CurrentImagePreview(props: CurrentImagePreviewProps) { return (
- + {imageToDisplay && ( + + )} {!shouldShowImageDetails && (
)} - {shouldShowImageDetails && ( + {shouldShowImageDetails && imageToDisplay && ( state.system, (system: SystemState) => { const { shouldConfirmOnDelete, isConnected, isProcessing } = system; return { shouldConfirmOnDelete, isConnected, isProcessing }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, } ); interface DeleteImageModalProps { @@ -44,7 +50,7 @@ interface DeleteImageModalProps { /** * The image to delete. */ - image: InvokeAI.Image; + image?: InvokeAI.Image; } /** @@ -67,7 +73,7 @@ const DeleteImageModal = forwardRef( }; const handleDelete = () => { - if (isConnected && !isProcessing) { + if (isConnected && !isProcessing && image) { dispatch(deleteImage(image)); } onClose(); @@ -89,7 +95,7 @@ const DeleteImageModal = forwardRef( <> {cloneElement(children, { // TODO: This feels wrong. - onClick: handleClickDelete, + onClick: image ? handleClickDelete : undefined, ref: ref, })} diff --git a/frontend/src/features/gallery/ImageGallery.scss b/frontend/src/features/gallery/ImageGallery.scss index c53296471e..3b8be38cfb 100644 --- a/frontend/src/features/gallery/ImageGallery.scss +++ b/frontend/src/features/gallery/ImageGallery.scss @@ -19,8 +19,6 @@ } .image-gallery-wrapper { - z-index: 100; - &[data-pinned='false'] { position: fixed; height: 100vh; diff --git a/frontend/src/features/gallery/ImageGallery.tsx b/frontend/src/features/gallery/ImageGallery.tsx index abb511cc5d..70098588f2 100644 --- a/frontend/src/features/gallery/ImageGallery.tsx +++ b/frontend/src/features/gallery/ImageGallery.tsx @@ -69,9 +69,9 @@ export default function ImageGallery() { if (!shouldPinGallery) return; if (activeTabName === 'inpainting') { - dispatch(setGalleryWidth(220)); - setGalleryMinWidth(220); - setGalleryMaxWidth(220); + dispatch(setGalleryWidth(190)); + setGalleryMinWidth(190); + setGalleryMaxWidth(190); } else if (activeTabName === 'img2img') { dispatch( setGalleryWidth(Math.min(Math.max(Number(galleryWidth), 0), 490)) @@ -163,6 +163,15 @@ export default function ImageGallery() { [shouldPinGallery] ); + useHotkeys( + 'esc', + () => { + if (shouldPinGallery) return; + dispatch(setShouldShowGallery(false)); + }, + [shouldPinGallery] + ); + const IMAGE_SIZE_STEP = 32; useHotkeys( @@ -261,6 +270,7 @@ export default function ImageGallery() { >
{ const dispatch = useAppDispatch(); - // const jsonBgColor = useColorModeValue('blackAlpha.100', 'whiteAlpha.100'); + + useHotkeys('esc', () => { + dispatch(setShouldShowImageDetails(false)); + }); const metadata = image?.metadata?.image || {}; const { diff --git a/frontend/src/features/gallery/InvokePopover.scss b/frontend/src/features/gallery/InvokePopover.scss deleted file mode 100644 index f9bc0a5f61..0000000000 --- a/frontend/src/features/gallery/InvokePopover.scss +++ /dev/null @@ -1,35 +0,0 @@ -.popover-content { - background-color: var(--background-color-secondary) !important; - border: none !important; - border-top: 0px; - background-color: var(--tab-hover-color); - border-radius: 0 0 0.4rem 0.4rem; -} - -.popover-arrow { - background: var(--tab-hover-color) !important; - box-shadow: none; -} - -.popover-options { - background: var(--tab-panel-bg); - border-radius: 0 0 0.4rem 0.4rem; - border: 2px solid var(--tab-hover-color); - padding: 0.75rem 1rem 0.75rem 1rem; - display: grid; - grid-auto-rows: max-content; - grid-row-gap: 0.5rem; - justify-content: space-between; -} - -.popover-header { - background: var(--tab-hover-color); - border-radius: 0.4rem 0.4rem 0 0; - font-weight: bold; - border: none; - padding-left: 1rem !important; -} - -.upscale-popover { - width: 23rem !important; -} diff --git a/frontend/src/features/gallery/InvokePopover.tsx b/frontend/src/features/gallery/InvokePopover.tsx deleted file mode 100644 index 17fac157bc..0000000000 --- a/frontend/src/features/gallery/InvokePopover.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import { - Box, - Popover, - PopoverArrow, - PopoverContent, - PopoverHeader, - PopoverTrigger, -} from '@chakra-ui/react'; -import React, { ReactNode } from 'react'; - -type PopoverProps = { - title?: string; - delay?: number; - styleClass?: string; - popoverOptions?: ReactNode; - actionButton?: ReactNode; - children: ReactNode; -}; - -const InvokePopover = ({ - title = 'Popup', - styleClass, - delay = 50, - popoverOptions, - actionButton, - children, -}: PopoverProps) => { - return ( - - - {children} - - - - {title} -
- {popoverOptions ? popoverOptions : null} - {actionButton} -
-
-
- ); -}; - -export default InvokePopover; diff --git a/frontend/src/features/gallery/gallerySliceSelectors.ts b/frontend/src/features/gallery/gallerySliceSelectors.ts index 56d7c9e247..d0bbb5af40 100644 --- a/frontend/src/features/gallery/gallerySliceSelectors.ts +++ b/frontend/src/features/gallery/gallerySliceSelectors.ts @@ -4,6 +4,7 @@ import { activeTabNameSelector } from '../options/optionsSelectors'; import { OptionsState } from '../options/optionsSlice'; import { SystemState } from '../system/systemSlice'; import { GalleryState } from './gallerySlice'; +import _ from 'lodash'; export const imageGallerySelector = createSelector( [ @@ -43,6 +44,11 @@ export const imageGallerySelector = createSelector( currentCategory, galleryWidth, }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, } ); @@ -65,5 +71,10 @@ export const hoverableImageSelector = createSelector( galleryImageMinimumWidth: gallery.galleryImageMinimumWidth, activeTabName, }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, } ); diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.tsx deleted file mode 100644 index a76ddb988a..0000000000 --- a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.tsx +++ /dev/null @@ -1,205 +0,0 @@ -import { Flex } from '@chakra-ui/react'; -import { createSelector } from '@reduxjs/toolkit'; -import _ from 'lodash'; - -import { BiHide, BiReset, BiShow } from 'react-icons/bi'; - -import { - RootState, - useAppDispatch, - useAppSelector, -} from '../../../../app/store'; -import IAICheckbox from '../../../../common/components/IAICheckbox'; -import IAIIconButton from '../../../../common/components/IAIIconButton'; - -import IAINumberInput from '../../../../common/components/IAINumberInput'; -import IAISlider from '../../../../common/components/IAISlider'; -import { roundDownToMultiple } from '../../../../common/util/roundDownToMultiple'; -import { - InpaintingState, - setBoundingBoxDimensions, - setShouldLockBoundingBox, - setShouldShowBoundingBox, - setShouldShowBoundingBoxFill, -} from '../../../tabs/Inpainting/inpaintingSlice'; - -const boundingBoxDimensionsSelector = createSelector( - (state: RootState) => state.inpainting, - (inpainting: InpaintingState) => { - const { - canvasDimensions, - boundingBoxDimensions, - shouldShowBoundingBox, - shouldShowBoundingBoxFill, - pastLines, - futureLines, - shouldLockBoundingBox, - } = inpainting; - return { - canvasDimensions, - boundingBoxDimensions, - shouldShowBoundingBox, - shouldShowBoundingBoxFill, - pastLines, - futureLines, - shouldLockBoundingBox, - }; - }, - { - memoizeOptions: { - resultEqualityCheck: _.isEqual, - }, - } -); - -const BoundingBoxSettings = () => { - const dispatch = useAppDispatch(); - const { - canvasDimensions, - boundingBoxDimensions, - shouldShowBoundingBox, - shouldShowBoundingBoxFill, - shouldLockBoundingBox, - } = useAppSelector(boundingBoxDimensionsSelector); - - const handleChangeBoundingBoxWidth = (v: number) => { - dispatch( - setBoundingBoxDimensions({ - ...boundingBoxDimensions, - width: Math.floor(v), - }) - ); - }; - - const handleChangeBoundingBoxHeight = (v: number) => { - dispatch( - setBoundingBoxDimensions({ - ...boundingBoxDimensions, - height: Math.floor(v), - }) - ); - }; - - const handleChangeShouldShowBoundingBoxFill = () => { - dispatch(setShouldShowBoundingBoxFill(!shouldShowBoundingBoxFill)); - }; - - const handleChangeShouldLockBoundingBox = () => { - dispatch(setShouldLockBoundingBox(!shouldLockBoundingBox)); - }; - - const handleResetWidth = () => { - dispatch( - setBoundingBoxDimensions({ - ...boundingBoxDimensions, - width: Math.floor(canvasDimensions.width), - }) - ); - }; - - const handleResetHeight = () => { - dispatch( - setBoundingBoxDimensions({ - ...boundingBoxDimensions, - height: Math.floor(canvasDimensions.height), - }) - ); - }; - - const handleShowBoundingBox = () => - dispatch(setShouldShowBoundingBox(!shouldShowBoundingBox)); - - return ( -
-
-

Inpaint Box

- : - } - onClick={handleShowBoundingBox} - background={'none'} - padding={0} - /> -
-
-
- - - } - styleClass="inpainting-bounding-box-reset-icon-btn" - isDisabled={canvasDimensions.width === boundingBoxDimensions.width} - /> -
-
- - - } - styleClass="inpainting-bounding-box-reset-icon-btn" - isDisabled={ - canvasDimensions.height === boundingBoxDimensions.height - } - /> -
- - - - -
-
- ); -}; - -export default BoundingBoxSettings; diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDarkenOutside.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDarkenOutside.tsx new file mode 100644 index 0000000000..b91f5d5736 --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDarkenOutside.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAICheckbox from '../../../../../common/components/IAICheckbox'; +import { setShouldShowBoundingBoxFill } from '../../../../tabs/Inpainting/inpaintingSlice'; + +export default function BoundingBoxDarkenOutside() { + const dispatch = useAppDispatch(); + const shouldShowBoundingBoxFill = useAppSelector( + (state: RootState) => state.inpainting.shouldShowBoundingBoxFill + ); + + const handleChangeShouldShowBoundingBoxFill = () => { + dispatch(setShouldShowBoundingBoxFill(!shouldShowBoundingBoxFill)); + }; + + return ( + + ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDimensionSlider.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDimensionSlider.tsx new file mode 100644 index 0000000000..709a86a80b --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxDimensionSlider.tsx @@ -0,0 +1,128 @@ +import React from 'react'; +import IAISlider from '../../../../../common/components/IAISlider'; +import IAINumberInput from '../../../../../common/components/IAINumberInput'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import { BiReset } from 'react-icons/bi'; + +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import { createSelector } from '@reduxjs/toolkit'; +import { + InpaintingState, + setBoundingBoxDimensions, +} from '../../../../tabs/Inpainting/inpaintingSlice'; + +import { roundDownToMultiple } from '../../../../../common/util/roundDownToMultiple'; +import _ from 'lodash'; + +const boundingBoxDimensionsSelector = createSelector( + (state: RootState) => state.inpainting, + (inpainting: InpaintingState) => { + const { canvasDimensions, boundingBoxDimensions, shouldLockBoundingBox } = + inpainting; + return { + canvasDimensions, + boundingBoxDimensions, + shouldLockBoundingBox, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +type BoundingBoxDimensionSlidersType = { + dimension: 'width' | 'height'; +}; + +export default function BoundingBoxDimensionSlider( + props: BoundingBoxDimensionSlidersType +) { + const { dimension } = props; + const dispatch = useAppDispatch(); + const { shouldLockBoundingBox, canvasDimensions, boundingBoxDimensions } = + useAppSelector(boundingBoxDimensionsSelector); + + const canvasDimension = canvasDimensions[dimension]; + const boundingBoxDimension = boundingBoxDimensions[dimension]; + + const handleBoundingBoxDimension = (v: number) => { + if (dimension == 'width') { + dispatch( + setBoundingBoxDimensions({ + ...boundingBoxDimensions, + width: Math.floor(v), + }) + ); + } + + if (dimension == 'height') { + dispatch( + setBoundingBoxDimensions({ + ...boundingBoxDimensions, + height: Math.floor(v), + }) + ); + } + }; + + const handleResetDimension = () => { + if (dimension == 'width') { + dispatch( + setBoundingBoxDimensions({ + ...boundingBoxDimensions, + width: Math.floor(canvasDimension), + }) + ); + } + if (dimension == 'height') { + dispatch( + setBoundingBoxDimensions({ + ...boundingBoxDimensions, + height: Math.floor(canvasDimension), + }) + ); + } + }; + + return ( +
+ + + } + styleClass="inpainting-bounding-box-reset-icon-btn" + isDisabled={ + shouldLockBoundingBox || canvasDimension === boundingBoxDimension + } + /> +
+ ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxLock.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxLock.tsx new file mode 100644 index 0000000000..adea1f3f54 --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxLock.tsx @@ -0,0 +1,27 @@ +import React from 'react'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAICheckbox from '../../../../../common/components/IAICheckbox'; +import { setShouldLockBoundingBox } from '../../../../tabs/Inpainting/inpaintingSlice'; + +export default function BoundingBoxLock() { + const shouldLockBoundingBox = useAppSelector( + (state: RootState) => state.inpainting.shouldLockBoundingBox + ); + const dispatch = useAppDispatch(); + + const handleChangeShouldLockBoundingBox = () => { + dispatch(setShouldLockBoundingBox(!shouldLockBoundingBox)); + }; + return ( + + ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.scss b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.scss similarity index 100% rename from frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.scss rename to frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.scss diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.tsx new file mode 100644 index 0000000000..5038823d85 --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.tsx @@ -0,0 +1,26 @@ +import { Flex } from '@chakra-ui/react'; +import BoundingBoxDarkenOutside from './BoundingBoxDarkenOutside'; +import BoundingBoxDimensionSlider from './BoundingBoxDimensionSlider'; +import BoundingBoxLock from './BoundingBoxLock'; +import BoundingBoxVisibility from './BoundingBoxVisibility'; + +const BoundingBoxSettings = () => { + return ( +
+
+

Inpaint Box

+ +
+
+ + + + + + +
+
+ ); +}; + +export default BoundingBoxSettings; diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxVisibility.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxVisibility.tsx new file mode 100644 index 0000000000..ef0a76d166 --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxVisibility.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import { BiHide, BiShow } from 'react-icons/bi'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import { setShouldShowBoundingBox } from '../../../../tabs/Inpainting/inpaintingSlice'; + +export default function BoundingBoxVisibility() { + const shouldShowBoundingBox = useAppSelector( + (state: RootState) => state.inpainting.shouldShowBoundingBox + ); + const dispatch = useAppDispatch(); + + const handleShowBoundingBox = () => + dispatch(setShouldShowBoundingBox(!shouldShowBoundingBox)); + return ( + : } + onClick={handleShowBoundingBox} + background={'none'} + padding={0} + /> + ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/ClearBrushHistory.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/ClearBrushHistory.tsx new file mode 100644 index 0000000000..fd47f50196 --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/ClearBrushHistory.tsx @@ -0,0 +1,56 @@ +import { useToast } from '@chakra-ui/react'; +import { createSelector } from '@reduxjs/toolkit'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIButton from '../../../../common/components/IAIButton'; +import { + InpaintingState, + setClearBrushHistory, +} from '../../../tabs/Inpainting/inpaintingSlice'; +import _ from 'lodash'; + +const clearBrushHistorySelector = createSelector( + (state: RootState) => state.inpainting, + (inpainting: InpaintingState) => { + const { pastLines, futureLines } = inpainting; + return { + mayClearBrushHistory: + futureLines.length > 0 || pastLines.length > 0 ? false : true, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function ClearBrushHistory() { + const dispatch = useAppDispatch(); + const toast = useToast(); + + const { mayClearBrushHistory } = useAppSelector(clearBrushHistorySelector); + + const handleClearBrushHistory = () => { + dispatch(setClearBrushHistory()); + toast({ + title: 'Brush Stroke History Cleared', + status: 'success', + duration: 2500, + isClosable: true, + }); + }; + return ( + + Clear Brush History + + ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintReplace.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintReplace.tsx new file mode 100644 index 0000000000..5333f7b8ab --- /dev/null +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintReplace.tsx @@ -0,0 +1,70 @@ +import React, { ChangeEvent } from 'react'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAINumberInput from '../../../../common/components/IAINumberInput'; +import _ from 'lodash'; +import { createSelector } from '@reduxjs/toolkit'; +import { + InpaintingState, + setInpaintReplace, + setShouldUseInpaintReplace, +} from '../../../tabs/Inpainting/inpaintingSlice'; +import IAISwitch from '../../../../common/components/IAISwitch'; + +const inpaintReplaceSelector = createSelector( + (state: RootState) => state.inpainting, + (inpainting: InpaintingState) => { + const { inpaintReplace, shouldUseInpaintReplace } = inpainting; + return { + inpaintReplace, + shouldUseInpaintReplace, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintReplace() { + const { inpaintReplace, shouldUseInpaintReplace } = useAppSelector( + inpaintReplaceSelector + ); + + const dispatch = useAppDispatch(); + + return ( +
+ { + dispatch(setInpaintReplace(v)); + }} + /> + ) => + dispatch(setShouldUseInpaintReplace(e.target.checked)) + } + /> +
+ ); +} diff --git a/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintingSettings.tsx b/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintingSettings.tsx index 7624c655f8..2c9181dfa1 100644 --- a/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintingSettings.tsx +++ b/frontend/src/features/options/AdvancedOptions/Inpainting/InpaintingSettings.tsx @@ -1,96 +1,13 @@ -import { useToast } from '@chakra-ui/react'; -import { createSelector } from '@reduxjs/toolkit'; -import React, { ChangeEvent } from 'react'; -import { - RootState, - useAppDispatch, - useAppSelector, -} from '../../../../app/store'; -import IAIButton from '../../../../common/components/IAIButton'; -import { - InpaintingState, - setClearBrushHistory, - setInpaintReplace, - setShouldUseInpaintReplace, -} from '../../../tabs/Inpainting/inpaintingSlice'; -import BoundingBoxSettings from './BoundingBoxSettings'; -import _ from 'lodash'; -import IAINumberInput from '../../../../common/components/IAINumberInput'; -import IAISwitch from '../../../../common/components/IAISwitch'; - -const inpaintingSelector = createSelector( - (state: RootState) => state.inpainting, - (inpainting: InpaintingState) => { - const { pastLines, futureLines, inpaintReplace, shouldUseInpaintReplace } = - inpainting; - return { - pastLines, - futureLines, - inpaintReplace, - shouldUseInpaintReplace, - }; - }, - { - memoizeOptions: { - resultEqualityCheck: _.isEqual, - }, - } -); +import BoundingBoxSettings from './BoundingBoxSettings/BoundingBoxSettings'; +import InpaintReplace from './InpaintReplace'; +import ClearBrushHistory from './ClearBrushHistory'; export default function InpaintingSettings() { - const dispatch = useAppDispatch(); - const toast = useToast(); - - const { pastLines, futureLines, inpaintReplace, shouldUseInpaintReplace } = - useAppSelector(inpaintingSelector); - - const handleClearBrushHistory = () => { - dispatch(setClearBrushHistory()); - toast({ - title: 'Brush Stroke History Cleared', - status: 'success', - duration: 2500, - isClosable: true, - }); - }; return ( <> -
- { - dispatch(setInpaintReplace(v)); - }} - /> - ) => - dispatch(setShouldUseInpaintReplace(e.target.checked)) - } - /> -
+ - 0 || pastLines.length > 0 ? false : true} - styleClass="inpainting-options-btn" - /> + ); } diff --git a/frontend/src/features/options/MainOptions/MainHeight.tsx b/frontend/src/features/options/MainOptions/MainHeight.tsx index 6930f56bd8..78285f7944 100644 --- a/frontend/src/features/options/MainOptions/MainHeight.tsx +++ b/frontend/src/features/options/MainOptions/MainHeight.tsx @@ -7,7 +7,7 @@ import { setHeight } from '../optionsSlice'; import { fontSize } from './MainOptions'; export default function MainHeight() { - const { height } = useAppSelector((state: RootState) => state.options); + const height = useAppSelector((state: RootState) => state.options.height); const activeTabName = useAppSelector(activeTabNameSelector); const dispatch = useAppDispatch(); diff --git a/frontend/src/features/options/MainOptions/MainIterations.tsx b/frontend/src/features/options/MainOptions/MainIterations.tsx index 86889e4b5e..e244e02f05 100644 --- a/frontend/src/features/options/MainOptions/MainIterations.tsx +++ b/frontend/src/features/options/MainOptions/MainIterations.tsx @@ -1,13 +1,33 @@ +import { createSelector } from '@reduxjs/toolkit'; +import _ from 'lodash'; import React from 'react'; import { RootState, useAppDispatch, useAppSelector } from '../../../app/store'; import IAINumberInput from '../../../common/components/IAINumberInput'; -import { setIterations } from '../optionsSlice'; +import { mayGenerateMultipleImagesSelector } from '../optionsSelectors'; +import { OptionsState, setIterations } from '../optionsSlice'; import { fontSize, inputWidth } from './MainOptions'; +const mainIterationsSelector = createSelector( + [(state: RootState) => state.options, mayGenerateMultipleImagesSelector], + (options: OptionsState, mayGenerateMultipleImages) => { + const { iterations } = options; + + return { + iterations, + mayGenerateMultipleImages, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + export default function MainIterations() { const dispatch = useAppDispatch(); - const iterations = useAppSelector( - (state: RootState) => state.options.iterations + const { iterations, mayGenerateMultipleImages } = useAppSelector( + mainIterationsSelector ); const handleChangeIterations = (v: number) => dispatch(setIterations(v)); @@ -18,6 +38,7 @@ export default function MainIterations() { step={1} min={1} max={9999} + isDisabled={!mayGenerateMultipleImages} onChange={handleChangeIterations} value={iterations} width={inputWidth} diff --git a/frontend/src/features/options/MainOptions/MainOptions.scss b/frontend/src/features/options/MainOptions/MainOptions.scss index 92aeb8a053..b9854397a5 100644 --- a/frontend/src/features/options/MainOptions/MainOptions.scss +++ b/frontend/src/features/options/MainOptions/MainOptions.scss @@ -19,6 +19,7 @@ .main-option-block { border-radius: 0.5rem; + display: grid !important; grid-template-columns: auto !important; row-gap: 0.4rem; diff --git a/frontend/src/features/options/MainOptions/MainWidth.tsx b/frontend/src/features/options/MainOptions/MainWidth.tsx index e005e3559f..69841f3954 100644 --- a/frontend/src/features/options/MainOptions/MainWidth.tsx +++ b/frontend/src/features/options/MainOptions/MainWidth.tsx @@ -2,14 +2,14 @@ import React, { ChangeEvent } from 'react'; import { WIDTHS } from '../../../app/constants'; import { RootState, useAppDispatch, useAppSelector } from '../../../app/store'; import IAISelect from '../../../common/components/IAISelect'; -import { tabMap } from '../../tabs/InvokeTabs'; +import { activeTabNameSelector } from '../optionsSelectors'; import { setWidth } from '../optionsSlice'; import { fontSize } from './MainOptions'; export default function MainWidth() { - const { width, activeTab } = useAppSelector( - (state: RootState) => state.options - ); + const width = useAppSelector((state: RootState) => state.options.width); + const activeTabName = useAppSelector(activeTabNameSelector); + const dispatch = useAppDispatch(); const handleChangeWidth = (e: ChangeEvent) => @@ -17,7 +17,7 @@ export default function MainWidth() { return ( state.system, @@ -24,7 +25,9 @@ const cancelButtonSelector = createSelector( } ); -export default function CancelButton(props: Omit) { +export default function CancelButton( + props: Omit +) { const { ...rest } = props; const dispatch = useAppDispatch(); const { isProcessing, isConnected, isCancelable } = diff --git a/frontend/src/features/options/ProcessButtons/InvokeButton.tsx b/frontend/src/features/options/ProcessButtons/InvokeButton.tsx index 25c6f7a5e5..e9a61002b4 100644 --- a/frontend/src/features/options/ProcessButtons/InvokeButton.tsx +++ b/frontend/src/features/options/ProcessButtons/InvokeButton.tsx @@ -1,3 +1,4 @@ +import { ListItem, UnorderedList } from '@chakra-ui/react'; import { useHotkeys } from 'react-hotkeys-hook'; import { FaPlay } from 'react-icons/fa'; import { readinessSelector } from '../../../app/selectors/readinessSelector'; @@ -6,17 +7,21 @@ import { useAppDispatch, useAppSelector } from '../../../app/store'; import IAIButton, { IAIButtonProps, } from '../../../common/components/IAIButton'; -import IAIIconButton from '../../../common/components/IAIIconButton'; +import IAIIconButton, { + IAIIconButtonProps, +} from '../../../common/components/IAIIconButton'; +import IAIPopover from '../../../common/components/IAIPopover'; import { activeTabNameSelector } from '../optionsSelectors'; -interface InvokeButton extends Omit { +interface InvokeButton + extends Omit { iconButton?: boolean; } export default function InvokeButton(props: InvokeButton) { const { iconButton = false, ...rest } = props; const dispatch = useAppDispatch(); - const isReady = useAppSelector(readinessSelector); + const { isReady, reasonsWhyNotReady } = useAppSelector(readinessSelector); const activeTabName = useAppSelector(activeTabNameSelector); const handleClickGenerate = () => { @@ -33,27 +38,62 @@ export default function InvokeButton(props: InvokeButton) { [isReady, activeTabName] ); - return iconButton ? ( - } - isDisabled={!isReady} - onClick={handleClickGenerate} - className="invoke-btn invoke" - tooltip="Invoke" - tooltipPlacement="bottom" - {...rest} - /> - ) : ( - + const buttonComponent = ( +
+ {iconButton ? ( + } + isDisabled={!isReady} + onClick={handleClickGenerate} + className="invoke-btn invoke" + tooltip="Invoke" + tooltipProps={{ placement: 'bottom' }} + {...rest} + /> + ) : ( + + Invoke + + )} +
); + + return isReady ? ( + buttonComponent + ) : ( + + {reasonsWhyNotReady && ( + + {reasonsWhyNotReady.map((reason, i) => ( + {reason} + ))} + + )} + + ); + + // return isReady ? ( + // buttonComponent + // ) : ( + // + // {reasonsWhyNotReady ? ( + // + // {reasonsWhyNotReady.map((reason, i) => ( + // {reason} + // ))} + // + // ) : ( + // 'test' + // )} + // + // ); } diff --git a/frontend/src/features/options/ProcessButtons/Loopback.tsx b/frontend/src/features/options/ProcessButtons/Loopback.tsx index 7899c8695b..6d360f4f25 100644 --- a/frontend/src/features/options/ProcessButtons/Loopback.tsx +++ b/frontend/src/features/options/ProcessButtons/Loopback.tsx @@ -15,9 +15,11 @@ const LoopbackButton = () => { return ( } onClick={() => { dispatch(setShouldLoopback(!shouldLoopback)); diff --git a/frontend/src/features/options/ProcessButtons/ProcessButtons.scss b/frontend/src/features/options/ProcessButtons/ProcessButtons.scss index bd14331115..0c107e0865 100644 --- a/frontend/src/features/options/ProcessButtons/ProcessButtons.scss +++ b/frontend/src/features/options/ProcessButtons/ProcessButtons.scss @@ -7,6 +7,7 @@ .invoke-btn { flex-grow: 1; + width: 100%; svg { width: 18px !important; height: 18px !important; @@ -25,3 +26,34 @@ // $btn-width: 3rem ); } + +.loopback-btn { + &[data-as-checkbox='true'] { + background-color: var(--btn-grey); + border: 3px solid var(--btn-grey); + svg { + fill: var(--text-color); + } + &:hover { + background-color: var(--btn-grey); + border-color: var(--btn-checkbox-border-hover); + svg { + fill: var(--text-color); + } + } + &[data-selected='true'] { + border-color: var(--accent-color); + background-color: var(--btn-grey); + svg { + fill: var(--text-color); + } + &:hover { + border-color: var(--accent-color); + background-color: var(--btn-grey); + svg { + fill: var(--text-color); + } + } + } + } +} diff --git a/frontend/src/features/options/PromptInput/PromptInput.tsx b/frontend/src/features/options/PromptInput/PromptInput.tsx index 92b3e699e2..035d085013 100644 --- a/frontend/src/features/options/PromptInput/PromptInput.tsx +++ b/frontend/src/features/options/PromptInput/PromptInput.tsx @@ -31,7 +31,7 @@ const promptInputSelector = createSelector( const PromptInput = () => { const dispatch = useAppDispatch(); const { prompt, activeTabName } = useAppSelector(promptInputSelector); - const isReady = useAppSelector(readinessSelector); + const { isReady } = useAppSelector(readinessSelector); const promptRef = useRef(null); diff --git a/frontend/src/features/options/optionsSelectors.ts b/frontend/src/features/options/optionsSelectors.ts index 0ea38fb2af..6a1f31c850 100644 --- a/frontend/src/features/options/optionsSelectors.ts +++ b/frontend/src/features/options/optionsSelectors.ts @@ -13,3 +13,17 @@ export const activeTabNameSelector = createSelector( }, } ); + +export const mayGenerateMultipleImagesSelector = createSelector( + (state: RootState) => state.options, + (options: OptionsState) => { + const { shouldRandomizeSeed, shouldGenerateVariations } = options; + + return shouldRandomizeSeed || shouldGenerateVariations; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); diff --git a/frontend/src/features/system/Console.scss b/frontend/src/features/system/Console.scss index afe6d04019..0246e33ca3 100644 --- a/frontend/src/features/system/Console.scss +++ b/frontend/src/features/system/Console.scss @@ -1,10 +1,3 @@ -.console-resizable { - display: flex; - position: fixed; - left: 0; - bottom: 0; -} - .console { width: 100vw; display: flex; @@ -48,7 +41,7 @@ position: fixed !important; left: 0.5rem; bottom: 0.5rem; - z-index: 21; + z-index: 10000; &:hover { background: var(--console-icon-button-bg-color-hover) !important; @@ -67,7 +60,7 @@ position: fixed !important; left: 0.5rem; bottom: 3rem; - z-index: 21; + z-index: 10000; &:hover { background: var(--console-icon-button-bg-color-hover) !important; diff --git a/frontend/src/features/system/Console.tsx b/frontend/src/features/system/Console.tsx index 45d72d87d4..2916d740f4 100644 --- a/frontend/src/features/system/Console.tsx +++ b/frontend/src/features/system/Console.tsx @@ -75,6 +75,10 @@ const Console = () => { [shouldShowLogViewer] ); + useHotkeys('esc', () => { + dispatch(setShouldShowLogViewer(false)); + }); + const handleOnScroll = () => { if (!viewerRef.current) return; if ( @@ -99,7 +103,7 @@ const Console = () => { position: 'fixed', left: 0, bottom: 0, - zIndex: 20, + zIndex: 9999, }} maxHeight={'90vh'} > diff --git a/frontend/src/features/system/HotkeysModal/HotkeysModal.tsx b/frontend/src/features/system/HotkeysModal/HotkeysModal.tsx index d16899dbbd..0c36f5fda9 100644 --- a/frontend/src/features/system/HotkeysModal/HotkeysModal.tsx +++ b/frontend/src/features/system/HotkeysModal/HotkeysModal.tsx @@ -73,15 +73,20 @@ export default function HotkeysModal({ children }: HotkeysModalProps) { const generalHotkeys = [ { - title: 'Set Parameters', - desc: 'Use all parameters of the current image', - hotkey: 'A', + title: 'Set Prompt', + desc: 'Use the prompt of the current image', + hotkey: 'P', }, { title: 'Set Seed', desc: 'Use the seed of the current image', hotkey: 'S', }, + { + title: 'Set Parameters', + desc: 'Use all parameters of the current image', + hotkey: 'A', + }, { title: 'Restore Faces', desc: 'Restore the current image', hotkey: 'R' }, { title: 'Upscale', desc: 'Upscale the current image', hotkey: 'U' }, { @@ -95,6 +100,7 @@ export default function HotkeysModal({ children }: HotkeysModalProps) { hotkey: 'Shift+I', }, { title: 'Delete Image', desc: 'Delete the current image', hotkey: 'Del' }, + { title: 'Close Panels', desc: 'Closes open panels', hotkey: 'Esc' }, ]; const galleryHotkeys = [ @@ -194,12 +200,12 @@ export default function HotkeysModal({ children }: HotkeysModalProps) { { title: 'Lock Bounding Box', desc: 'Locks the bounding box', - hotkey: 'M', + hotkey: 'Shift+Q', }, { title: 'Quick Toggle Lock Bounding Box', desc: 'Hold to toggle locking the bounding box', - hotkey: 'Space', + hotkey: 'Q', }, { title: 'Expand Inpainting Area', diff --git a/frontend/src/features/system/SettingsModal/ModelList.scss b/frontend/src/features/system/SettingsModal/ModelList.scss index b826ff3f8c..f7951b0c7e 100644 --- a/frontend/src/features/system/SettingsModal/ModelList.scss +++ b/frontend/src/features/system/SettingsModal/ModelList.scss @@ -1,24 +1,37 @@ -.model-list { - .chakra-accordion { - display: grid; - row-gap: 0.5rem; - } +// .chakra-accordion { +// display: grid; +// row-gap: 0.5rem; +// } - .chakra-accordion__item { - border: none; - border-radius: 0.3rem; - background-color: var(--tab-hover-color); - } +// .chakra-accordion__item { +// border: none; +// } + +// button { +// border-radius: 0.3rem !important; + +// &[aria-expanded='true'] { +// // background-color: var(--tab-hover-color); +// border-radius: 0.3rem; +// } +// } + +.model-list-accordion { + outline: none; + padding: 0.25rem; button { - border-radius: 0.3rem !important; - - &[aria-expanded='true'] { - background-color: var(--tab-hover-color); - border-radius: 0.3rem; + padding: 0; + margin: 0; + &:hover { + background-color: unset; } } + div { + border: none !important; + } + .model-list-button { display: flex; flex-direction: row; @@ -64,6 +77,9 @@ } } .model-list-item-load-btn { + button { + padding: 0.5rem; + } } } } diff --git a/frontend/src/features/system/SettingsModal/ModelList.tsx b/frontend/src/features/system/SettingsModal/ModelList.tsx index e9883c8775..66fc5129de 100644 --- a/frontend/src/features/system/SettingsModal/ModelList.tsx +++ b/frontend/src/features/system/SettingsModal/ModelList.tsx @@ -73,31 +73,33 @@ const ModelList = () => { const { models } = useAppSelector(modelListSelector); return ( -
- - - -
-

Models

- -
-
+ + + +
+

Models

+ +
+
- -
- {models.map((model, i) => ( - - ))} -
-
-
-
-
+ +
+ {models.map((model, i) => ( + + ))} +
+
+ + ); }; diff --git a/frontend/src/features/system/SettingsModal/SettingsModal.tsx b/frontend/src/features/system/SettingsModal/SettingsModal.tsx index 80b4e7ba4f..835f3fe296 100644 --- a/frontend/src/features/system/SettingsModal/SettingsModal.tsx +++ b/frontend/src/features/system/SettingsModal/SettingsModal.tsx @@ -14,18 +14,22 @@ import { } from '@chakra-ui/react'; import { createSelector } from '@reduxjs/toolkit'; import _, { isEqual } from 'lodash'; -import { cloneElement, ReactElement } from 'react'; -import { RootState, useAppSelector } from '../../../app/store'; +import { ChangeEvent, cloneElement, ReactElement } from 'react'; +import { RootState, useAppDispatch, useAppSelector } from '../../../app/store'; import { persistor } from '../../../main'; import { + InProgressImageType, + setSaveIntermediatesInterval, setShouldConfirmOnDelete, setShouldDisplayGuides, setShouldDisplayInProgressType, SystemState, } from '../systemSlice'; import ModelList from './ModelList'; -import { SettingsModalItem, SettingsModalSelectItem } from './SettingsModalItem'; import { IN_PROGRESS_IMAGE_TYPES } from '../../../app/constants'; +import IAISwitch from '../../../common/components/IAISwitch'; +import IAISelect from '../../../common/components/IAISelect'; +import IAINumberInput from '../../../common/components/IAINumberInput'; const systemSelector = createSelector( (state: RootState) => state.system, @@ -60,6 +64,14 @@ type SettingsModalProps = { * Secondary post-reset modal is included here. */ const SettingsModal = ({ children }: SettingsModalProps) => { + const dispatch = useAppDispatch(); + + const saveIntermediatesInterval = useAppSelector( + (state: RootState) => state.system.saveIntermediatesInterval + ); + + const steps = useAppSelector((state: RootState) => state.options.steps); + const { isOpen: isSettingsModalOpen, onOpen: onSettingsModalOpen, @@ -89,6 +101,12 @@ const SettingsModal = ({ children }: SettingsModalProps) => { }); }; + const handleChangeIntermediateSteps = (value: number) => { + if (value > steps) value = steps; + if (value < 1) value = 1; + dispatch(setSaveIntermediatesInterval(value)); + }; + return ( <> {cloneElement(children, { @@ -101,31 +119,62 @@ const SettingsModal = ({ children }: SettingsModalProps) => { Settings -
- - - - + +
+
+ ) => + dispatch( + setShouldDisplayInProgressType( + e.target.value as InProgressImageType + ) + ) + } + /> + {shouldDisplayInProgressType === 'full-res' && ( + + )} +
+ ) => + dispatch(setShouldConfirmOnDelete(e.target.checked)) + } /> - - ) => + dispatch(setShouldDisplayGuides(e.target.checked)) + } />
Reset Web UI + Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any @@ -136,9 +185,6 @@ const SettingsModal = ({ children }: SettingsModalProps) => { isn't working, please try resetting before submitting an issue on GitHub. -
diff --git a/frontend/src/features/system/SettingsModal/SettingsModalItem.tsx b/frontend/src/features/system/SettingsModal/SettingsModalItem.tsx deleted file mode 100644 index 0f69c87395..0000000000 --- a/frontend/src/features/system/SettingsModal/SettingsModalItem.tsx +++ /dev/null @@ -1,50 +0,0 @@ -import { useAppDispatch } from '../../../app/store'; -import IAISelect from '../../../common/components/IAISelect'; -import IAISwitch from '../../../common/components/IAISwitch'; - -export function SettingsModalItem({ - settingTitle, - isChecked, - dispatcher, -}: { - settingTitle: string; - isChecked: boolean; - dispatcher: any; -}) { - const dispatch = useAppDispatch(); - return ( - dispatch(dispatcher(e.target.checked))} - /> - ); -} - - -export function SettingsModalSelectItem({ - settingTitle, - validValues, - defaultValue, - dispatcher, -}: { - settingTitle: string; - validValues: - Array - | Array<{ key: string; value: string | number }>; - defaultValue: string; - dispatcher: any; -}) { - const dispatch = useAppDispatch(); - return ( - dispatch(dispatcher(e.target.value))} - /> - ); -} - diff --git a/frontend/src/features/system/SiteHeader.tsx b/frontend/src/features/system/SiteHeader.tsx index 4079f6f414..86e916ed3f 100644 --- a/frontend/src/features/system/SiteHeader.tsx +++ b/frontend/src/features/system/SiteHeader.tsx @@ -1,11 +1,19 @@ -import { IconButton, Link, Tooltip, useColorMode } from '@chakra-ui/react'; +import { Link, useColorMode } from '@chakra-ui/react'; import { useHotkeys } from 'react-hotkeys-hook'; -import { FaSun, FaMoon, FaGithub, FaDiscord } from 'react-icons/fa'; -import { MdHelp, MdKeyboard, MdSettings } from 'react-icons/md'; +import { + FaSun, + FaMoon, + FaGithub, + FaDiscord, + FaBug, + FaKeyboard, + FaWrench, +} from 'react-icons/fa'; import InvokeAILogo from '../../assets/images/logo.png'; +import IAIIconButton from '../../common/components/IAIIconButton'; import HotkeysModal from './HotkeysModal/HotkeysModal'; @@ -26,11 +34,6 @@ const SiteHeader = () => { [colorMode, toggleColorMode] ); - const colorModeIcon = colorMode == 'light' ? : ; - - // Make FaMoon and FaSun icon apparent size consistent - const colorModeIconFontSize = colorMode == 'light' ? 18 : 20; - return (
@@ -44,78 +47,79 @@ const SiteHeader = () => { - } + variant="link" + data-variant="link" + fontSize={20} + icon={} /> - - - + : } + /> - - - - - } - /> - + + + + } + /> - - - - - } - /> - + + + + } + /> - - - - - } - /> - + + + + } + /> - } + icon={} />
diff --git a/frontend/src/features/system/systemSlice.ts b/frontend/src/features/system/systemSlice.ts index 2a4e34169a..76ecf82e48 100644 --- a/frontend/src/features/system/systemSlice.ts +++ b/frontend/src/features/system/systemSlice.ts @@ -15,10 +15,17 @@ export interface Log { [index: number]: LogEntry; } +export type ReadinessPayload = { + isReady: boolean; + reasonsWhyNotReady: string[]; +}; + +export type InProgressImageType = 'none' | 'full-res' | 'latents'; + export interface SystemState extends InvokeAI.SystemStatus, InvokeAI.SystemConfig { - shouldDisplayInProgressType: string; + shouldDisplayInProgressType: InProgressImageType; log: Array; shouldShowLogViewer: boolean; isGFPGANAvailable: boolean; @@ -36,14 +43,15 @@ export interface SystemState shouldDisplayGuides: boolean; wasErrorSeen: boolean; isCancelable: boolean; + saveIntermediatesInterval: number; } -const initialSystemState = { +const initialSystemState: SystemState = { isConnected: false, isProcessing: false, log: [], shouldShowLogViewer: false, - shouldDisplayInProgressType: "none", + shouldDisplayInProgressType: 'latents', shouldDisplayGuides: true, isGFPGANAvailable: true, isESRGANAvailable: true, @@ -65,15 +73,17 @@ const initialSystemState = { hasError: false, wasErrorSeen: true, isCancelable: true, + saveIntermediatesInterval: 5, }; -const initialState: SystemState = initialSystemState; - export const systemSlice = createSlice({ name: 'system', - initialState, + initialState: initialSystemState, reducers: { - setShouldDisplayInProgressType: (state, action: PayloadAction) => { + setShouldDisplayInProgressType: ( + state, + action: PayloadAction + ) => { state.shouldDisplayInProgressType = action.payload; }, setIsProcessing: (state, action: PayloadAction) => { @@ -178,6 +188,9 @@ export const systemSlice = createSlice({ state.isProcessing = true; state.currentStatusHasSteps = false; }, + setSaveIntermediatesInterval: (state, action: PayloadAction) => { + state.saveIntermediatesInterval = action.payload; + }, }, }); @@ -200,6 +213,7 @@ export const { setModelList, setIsCancelable, modelChangeRequested, + setSaveIntermediatesInterval, } = systemSlice.actions; export default systemSlice.reducer; diff --git a/frontend/src/features/tabs/FloatingGalleryButton.tsx b/frontend/src/features/tabs/FloatingGalleryButton.tsx index 1ff0eec901..0f17e2271a 100644 --- a/frontend/src/features/tabs/FloatingGalleryButton.tsx +++ b/frontend/src/features/tabs/FloatingGalleryButton.tsx @@ -13,7 +13,7 @@ const FloatingGalleryButton = () => { return ( {
diff --git a/frontend/src/features/tabs/ImageToImage/InitImagePreview.tsx b/frontend/src/features/tabs/ImageToImage/InitImagePreview.tsx index d80e7a1e74..5b2b8b4eb1 100644 --- a/frontend/src/features/tabs/ImageToImage/InitImagePreview.tsx +++ b/frontend/src/features/tabs/ImageToImage/InitImagePreview.tsx @@ -1,20 +1,22 @@ -import { IconButton, Image, useToast } from '@chakra-ui/react'; -import React, { SyntheticEvent } from 'react'; -import { MdClear } from 'react-icons/md'; +import { Image, useToast } from '@chakra-ui/react'; +import { SyntheticEvent } from 'react'; import { RootState, useAppDispatch, useAppSelector } from '../../../app/store'; +import ImageUploaderIconButton from '../../../common/components/ImageUploaderIconButton'; import { clearInitialImage } from '../../options/optionsSlice'; export default function InitImagePreview() { - const { initialImage } = useAppSelector((state: RootState) => state.options); + const initialImage = useAppSelector( + (state: RootState) => state.options.initialImage + ); const dispatch = useAppDispatch(); const toast = useToast(); - const handleClickResetInitialImage = (e: SyntheticEvent) => { - e.stopPropagation(); - dispatch(clearInitialImage()); - }; + // const handleClickResetInitialImage = (e: SyntheticEvent) => { + // e.stopPropagation(); + // dispatch(clearInitialImage()); + // }; const alertMissingInitImage = () => { toast({ @@ -29,13 +31,15 @@ export default function InitImagePreview() { return ( <>
+ {/*
*/}

Initial Image

- } - /> + /> */} +
{initialImage && (
diff --git a/frontend/src/features/tabs/Inpainting/Inpainting.scss b/frontend/src/features/tabs/Inpainting/Inpainting.scss index cbee2d1b37..de5871a080 100644 --- a/frontend/src/features/tabs/Inpainting/Inpainting.scss +++ b/frontend/src/features/tabs/Inpainting/Inpainting.scss @@ -11,7 +11,11 @@ .inpainting-settings { display: flex; align-items: center; - column-gap: 1rem; + column-gap: 0.5rem; + + svg { + transform: scale(0.9); + } .inpainting-buttons-group { display: flex; @@ -29,10 +33,10 @@ margin-left: 1rem !important; } - .inpainting-slider-numberinput { + .inpainting-brush-options { display: flex; - column-gap: 1rem; align-items: center; + column-gap: 1rem; } } @@ -45,33 +49,23 @@ height: 100%; } - .inpainting-canvas-wrapper { + .inpainting-canvas-spiner { + display: flex; + align-items: center; + width: 100%; + height: 100%; + } + + .inpainting-canvas-container { display: flex; align-items: center; justify-content: center; - position: relative; height: 100%; width: 100%; border-radius: 0.5rem; - .inpainting-alerts { - position: absolute; - top: 0; - left: 0; - display: flex; - column-gap: 0.5rem; - z-index: 2; - padding: 0.5rem; - pointer-events: none; - font-size: 0.9rem; - font-weight: bold; - - div { - background-color: var(--accent-color); - color: var(--text-color); - padding: 0.2rem 0.6rem; - border-radius: 0.25rem; - } + .inpainting-canvas-wrapper { + position: relative; } .inpainting-canvas-stage { diff --git a/frontend/src/features/tabs/Inpainting/InpaintingCanvas.tsx b/frontend/src/features/tabs/Inpainting/InpaintingCanvas.tsx index 9e69eec57d..ee3c4c7d26 100644 --- a/frontend/src/features/tabs/Inpainting/InpaintingCanvas.tsx +++ b/frontend/src/features/tabs/Inpainting/InpaintingCanvas.tsx @@ -33,7 +33,7 @@ import InpaintingBoundingBoxPreview, { InpaintingBoundingBoxPreviewOverlay, } from './components/InpaintingBoundingBoxPreview'; import { KonvaEventObject } from 'konva/lib/Node'; -import KeyboardEventManager from './components/KeyboardEventManager'; +import KeyboardEventManager from './KeyboardEventManager'; import { useToast } from '@chakra-ui/react'; // Use a closure allow other components to use these things... not ideal... @@ -56,8 +56,8 @@ const InpaintingCanvas = () => { shouldShowBoundingBox, shouldShowBoundingBoxFill, isDrawing, - shouldLockBoundingBox, - boundingBoxDimensions, + isModifyingBoundingBox, + stageCursor, } = useAppSelector(inpaintingCanvasSelector); const toast = useToast(); @@ -113,7 +113,7 @@ const InpaintingCanvas = () => { if ( !scaledCursorPosition || !maskLayerRef.current || - !shouldLockBoundingBox + isModifyingBoundingBox ) return; @@ -127,7 +127,7 @@ const InpaintingCanvas = () => { points: [scaledCursorPosition.x, scaledCursorPosition.y], }) ); - }, [dispatch, brushSize, tool, shouldLockBoundingBox]); + }, [dispatch, brushSize, tool, isModifyingBoundingBox]); /** * @@ -143,20 +143,20 @@ const InpaintingCanvas = () => { dispatch(setCursorPosition(scaledCursorPosition)); - if (!maskLayerRef.current || !shouldLockBoundingBox) { + if (!maskLayerRef.current) { return; } lastCursorPosition.current = scaledCursorPosition; - if (!isDrawing) return; + if (!isDrawing || isModifyingBoundingBox) return; didMouseMoveRef.current = true; // Extend the current line dispatch( addPointToCurrentLine([scaledCursorPosition.x, scaledCursorPosition.y]) ); - }, [dispatch, isDrawing, shouldLockBoundingBox]); + }, [dispatch, isDrawing, isModifyingBoundingBox]); /** * @@ -170,7 +170,7 @@ const InpaintingCanvas = () => { if ( !scaledCursorPosition || !maskLayerRef.current || - !shouldLockBoundingBox + isModifyingBoundingBox ) return; @@ -187,7 +187,7 @@ const InpaintingCanvas = () => { didMouseMoveRef.current = false; } dispatch(setIsDrawing(false)); - }, [dispatch, isDrawing, shouldLockBoundingBox]); + }, [dispatch, isDrawing, isModifyingBoundingBox]); /** * @@ -214,7 +214,7 @@ const InpaintingCanvas = () => { if ( !scaledCursorPosition || !maskLayerRef.current || - !shouldLockBoundingBox + isModifyingBoundingBox ) return; @@ -230,93 +230,78 @@ const InpaintingCanvas = () => { ); } }, - [dispatch, brushSize, tool, shouldLockBoundingBox] + [dispatch, brushSize, tool, isModifyingBoundingBox] ); return ( -
-
- {!shouldShowMask && ( -
Mask Hidden (H)
- )} - {shouldInvertMask && ( -
Mask Inverted (Shift+M)
- )} - {!shouldLockBoundingBox && ( -
- {`Transforming Bounding Box ${boundingBoxDimensions.width}x${boundingBoxDimensions.height} (M)`} -
- )} -
- - {canvasBgImage && ( - - {!shouldInvertMask && !shouldShowCheckboardTransparency && ( - - - - )} - {shouldShowMask && ( - <> - - - - {shouldLockBoundingBox && } - - {shouldInvertMask && ( - - )} - {!shouldInvertMask && shouldShowCheckboardTransparency && ( - - )} +
+
+ {canvasBgImage && ( + + {!shouldInvertMask && !shouldShowCheckboardTransparency && ( + + - {shouldShowMask && ( + )} + {shouldShowMask && ( + <> + + + + + + {shouldInvertMask && ( + + )} + {!shouldInvertMask && shouldShowCheckboardTransparency && ( + + )} + {shouldShowBoundingBoxFill && shouldShowBoundingBox && ( )} {shouldShowBoundingBox && } - {shouldLockBoundingBox && ( - - )} + + - )} - - )} - - )} - - + + )} + + )} + + +
); }; diff --git a/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.scss b/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.scss new file mode 100644 index 0000000000..dc57eea117 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.scss @@ -0,0 +1,29 @@ +.inpainting-alerts { + position: absolute; + top: 0; + left: 0; + z-index: 2; + margin: 0.5rem; + + button { + background-color: var(--inpainting-alerts-bg); + + svg { + fill: var(--inpainting-alerts-icon-color); + } + + &[data-selected='true'] { + background-color: var(--inpainting-alerts-bg-active); + svg { + fill: var(--inpainting-alerts-icon-active); + } + } + + &[data-alert='true'] { + background-color: var(--inpainting-alerts-bg-alert); + svg { + fill: var(--inpainting-alerts-icon-alert); + } + } + } +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.tsx b/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.tsx new file mode 100644 index 0000000000..68b5360252 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingCanvasStatusIcons.tsx @@ -0,0 +1,126 @@ +import _ from 'lodash'; + +const inpaintingCanvasStatusIconsSelector = createSelector( + (state: RootState) => state.inpainting, + (inpainting: InpaintingState) => { + const { + shouldShowMask, + shouldInvertMask, + shouldLockBoundingBox, + shouldShowBoundingBox, + boundingBoxDimensions, + } = inpainting; + + return { + shouldShowMask, + shouldInvertMask, + shouldLockBoundingBox, + shouldShowBoundingBox, + isBoundingBoxTooSmall: + boundingBoxDimensions.width < 512 || boundingBoxDimensions.height < 512, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +import { ButtonGroup, IconButton, Tooltip } from '@chakra-ui/react'; +import { createSelector } from '@reduxjs/toolkit'; +import { BiHide, BiShow } from 'react-icons/bi'; +import { GiResize } from 'react-icons/gi'; +import { BsBoundingBox } from 'react-icons/bs'; +import { FaLock, FaUnlock } from 'react-icons/fa'; +import { MdInvertColors, MdInvertColorsOff } from 'react-icons/md'; +import { RootState, useAppSelector } from '../../../app/store'; +import { InpaintingState } from './inpaintingSlice'; +import { MouseEvent, useRef, useState } from 'react'; + +const InpaintingCanvasStatusIcons = () => { + const { + shouldShowMask, + shouldInvertMask, + shouldLockBoundingBox, + shouldShowBoundingBox, + isBoundingBoxTooSmall, + } = useAppSelector(inpaintingCanvasStatusIconsSelector); + + const [shouldAcceptPointerEvents, setShouldAcceptPointerEvents] = + useState(false); + const timeoutRef = useRef(0); + + const handleMouseOver = () => { + if (!shouldAcceptPointerEvents) { + timeoutRef.current = window.setTimeout( + () => setShouldAcceptPointerEvents(true), + 1000 + ); + } + }; + + const handleMouseOut = () => { + if (!shouldAcceptPointerEvents) { + setShouldAcceptPointerEvents(false); + window.clearTimeout(timeoutRef.current); + } + }; + + return ( +
+ + + : } + /> + + : } + /> + : } + /> + } + /> + } + /> + +
+ ); +}; + +export default InpaintingCanvasStatusIcons; diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls.tsx index 42d98dd2e2..67e09e445c 100644 --- a/frontend/src/features/tabs/Inpainting/InpaintingControls.tsx +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls.tsx @@ -1,442 +1,38 @@ -import { useToast } from '@chakra-ui/react'; -import { useHotkeys } from 'react-hotkeys-hook'; -import { - FaEraser, - FaMask, - FaPaintBrush, - FaPalette, - FaPlus, - FaRedo, - FaTrash, - FaUndo, -} from 'react-icons/fa'; -import { BiHide, BiShow } from 'react-icons/bi'; -import { VscSplitHorizontal } from 'react-icons/vsc'; -import { useAppDispatch, useAppSelector } from '../../../app/store'; -import IAIIconButton from '../../../common/components/IAIIconButton'; -import { - clearMask, - redo, - setMaskColor, - setBrushSize, - setShouldShowBrushPreview, - setTool, - undo, - setShouldShowMask, - setShouldInvertMask, - setNeedsCache, - toggleShouldLockBoundingBox, - clearImageToInpaint, -} from './inpaintingSlice'; - -import { MdInvertColors, MdInvertColorsOff } from 'react-icons/md'; -import IAISlider from '../../../common/components/IAISlider'; -import IAINumberInput from '../../../common/components/IAINumberInput'; -import { inpaintingControlsSelector } from './inpaintingSliceSelectors'; -import IAIPopover from '../../../common/components/IAIPopover'; -import IAIColorPicker from '../../../common/components/IAIColorPicker'; -import { RgbaColor } from 'react-colorful'; -import { setShowDualDisplay } from '../../options/optionsSlice'; -import { useState } from 'react'; +import InpaintingBrushControl from './InpaintingControls/InpaintingBrushControl'; +import InpaintingEraserControl from './InpaintingControls/InpaintingEraserControl'; +import InpaintingUndoControl from './InpaintingControls/InpaintingUndoControl'; +import InpaintingRedoControl from './InpaintingControls/InpaintingRedoControl'; +import { ButtonGroup } from '@chakra-ui/react'; +import InpaintingMaskClear from './InpaintingControls/InpaintingMaskControls/InpaintingMaskClear'; +import InpaintingMaskVisibilityControl from './InpaintingControls/InpaintingMaskControls/InpaintingMaskVisibilityControl'; +import InpaintingMaskInvertControl from './InpaintingControls/InpaintingMaskControls/InpaintingMaskInvertControl'; +import InpaintingLockBoundingBoxControl from './InpaintingControls/InpaintingLockBoundingBoxControl'; +import InpaintingShowHideBoundingBoxControl from './InpaintingControls/InpaintingShowHideBoundingBoxControl'; +import ImageUploaderIconButton from '../../../common/components/ImageUploaderIconButton'; const InpaintingControls = () => { - const { - tool, - brushSize, - maskColor, - shouldInvertMask, - shouldShowMask, - canUndo, - canRedo, - isMaskEmpty, - activeTabName, - showDualDisplay, - } = useAppSelector(inpaintingControlsSelector); - - const dispatch = useAppDispatch(); - const toast = useToast(); - - // Button State Controllers - const [maskOptionsOpen, setMaskOptionsOpen] = useState(false); - - /** - * Hotkeys - */ - - // Decrease brush size - useHotkeys( - '[', - (e: KeyboardEvent) => { - e.preventDefault(); - if (brushSize - 5 > 0) { - handleChangeBrushSize(brushSize - 5); - } else { - handleChangeBrushSize(1); - } - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask, brushSize] - ); - - // Increase brush size - useHotkeys( - ']', - (e: KeyboardEvent) => { - e.preventDefault(); - handleChangeBrushSize(brushSize + 5); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask, brushSize] - ); - - // Decrease mask opacity - useHotkeys( - 'shift+[', - (e: KeyboardEvent) => { - e.preventDefault(); - handleChangeMaskColor({ - ...maskColor, - a: Math.max(maskColor.a - 0.05, 0), - }); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask, maskColor.a] - ); - - // Increase mask opacity - useHotkeys( - 'shift+]', - (e: KeyboardEvent) => { - e.preventDefault(); - handleChangeMaskColor({ - ...maskColor, - a: Math.min(maskColor.a + 0.05, 100), - }); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask, maskColor.a] - ); - - // Set tool to eraser - useHotkeys( - 'e', - (e: KeyboardEvent) => { - e.preventDefault(); - if (activeTabName !== 'inpainting' || !shouldShowMask) return; - handleSelectEraserTool(); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask] - ); - - // Set tool to brush - useHotkeys( - 'b', - (e: KeyboardEvent) => { - e.preventDefault(); - handleSelectBrushTool(); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask] - ); - - // Toggle lock bounding box - useHotkeys( - 'm', - (e: KeyboardEvent) => { - e.preventDefault(); - dispatch(toggleShouldLockBoundingBox()); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldShowMask] - ); - - // Undo - useHotkeys( - 'cmd+z, control+z', - (e: KeyboardEvent) => { - e.preventDefault(); - handleUndo(); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask && canUndo, - }, - [activeTabName, shouldShowMask, canUndo] - ); - - // Redo - useHotkeys( - 'cmd+shift+z, control+shift+z, control+y, cmd+y', - (e: KeyboardEvent) => { - e.preventDefault(); - handleRedo(); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask && canRedo, - }, - [activeTabName, shouldShowMask, canRedo] - ); - - // Show/hide mask - useHotkeys( - 'h', - (e: KeyboardEvent) => { - e.preventDefault(); - handleToggleShouldShowMask(); - }, - { - enabled: activeTabName === 'inpainting', - }, - [activeTabName, shouldShowMask] - ); - - // Invert mask - useHotkeys( - 'shift+m', - (e: KeyboardEvent) => { - e.preventDefault(); - handleToggleShouldInvertMask(); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask, - }, - [activeTabName, shouldInvertMask, shouldShowMask] - ); - - // Clear mask - useHotkeys( - 'shift+c', - (e: KeyboardEvent) => { - e.preventDefault(); - handleClearMask(); - toast({ - title: 'Mask Cleared', - status: 'success', - duration: 2500, - isClosable: true, - }); - }, - { - enabled: activeTabName === 'inpainting' && shouldShowMask && !isMaskEmpty, - }, - [activeTabName, isMaskEmpty, shouldShowMask] - ); - - // Toggle split view - useHotkeys( - 'shift+j', - () => { - handleDualDisplay(); - }, - [showDualDisplay] - ); - - const handleClearMask = () => { - dispatch(clearMask()); - }; - - const handleSelectEraserTool = () => dispatch(setTool('eraser')); - - const handleSelectBrushTool = () => dispatch(setTool('brush')); - - const handleChangeBrushSize = (v: number) => { - dispatch(setShouldShowBrushPreview(true)); - dispatch(setBrushSize(v)); - }; - - const handleToggleShouldShowMask = () => - dispatch(setShouldShowMask(!shouldShowMask)); - - const handleToggleShouldInvertMask = () => - dispatch(setShouldInvertMask(!shouldInvertMask)); - - const handleShowBrushPreview = () => { - dispatch(setShouldShowBrushPreview(true)); - }; - - const handleHideBrushPreview = () => { - dispatch(setShouldShowBrushPreview(false)); - }; - - const handleChangeMaskColor = (newColor: RgbaColor) => { - dispatch(setMaskColor(newColor)); - }; - - const handleUndo = () => dispatch(undo()); - - const handleRedo = () => dispatch(redo()); - - const handleDualDisplay = () => { - dispatch(setShowDualDisplay(!showDualDisplay)); - dispatch(setNeedsCache(true)); - }; - - const handleClearImage = () => { - dispatch(clearImageToInpaint()); - }; - return (
-
- } - onClick={handleSelectBrushTool} - data-selected={tool === 'brush'} - isDisabled={!shouldShowMask} - /> - } - > -
- - -
-
- } - onClick={handleSelectEraserTool} - data-selected={tool === 'eraser'} - isDisabled={!shouldShowMask} - /> -
-
- setMaskOptionsOpen(true)} - onClose={() => setMaskOptionsOpen(false)} - triggerComponent={ - } - cursor={'pointer'} - data-selected={maskOptionsOpen} - /> - } - > -
- : - } - onClick={handleToggleShouldShowMask} - /> - - ) : ( - - ) - } - onClick={handleToggleShouldInvertMask} - isDisabled={!shouldShowMask} - /> - } - isDisabled={!shouldShowMask} - cursor={'pointer'} - /> - } - > - - -
-
- } - onClick={handleClearMask} - isDisabled={isMaskEmpty || !shouldShowMask} - /> -
-
- } - onClick={handleUndo} - isDisabled={!canUndo || !shouldShowMask} - /> - } - onClick={handleRedo} - isDisabled={!canRedo || !shouldShowMask} - /> -
+ + + + -
- } - onClick={handleClearImage} - /> -
- } - data-selected={showDualDisplay} - onClick={handleDualDisplay} - /> + + + + + + + + + + + + + + +
); }; diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingBrushControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingBrushControl.tsx new file mode 100644 index 0000000000..995c6a3b1f --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingBrushControl.tsx @@ -0,0 +1,150 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { FaPaintBrush } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import IAINumberInput from '../../../../common/components/IAINumberInput'; +import IAIPopover from '../../../../common/components/IAIPopover'; +import IAISlider from '../../../../common/components/IAISlider'; +import { activeTabNameSelector } from '../../../options/optionsSelectors'; + +import { + InpaintingState, + setBrushSize, + setShouldShowBrushPreview, + setTool, +} from '../inpaintingSlice'; + +import _ from 'lodash'; +import InpaintingMaskColorPicker from './InpaintingMaskControls/InpaintingMaskColorPicker'; + +const inpaintingBrushSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { tool, brushSize, shouldShowMask } = inpainting; + + return { + tool, + brushSize, + shouldShowMask, + activeTabName, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingBrushControl() { + const dispatch = useAppDispatch(); + const { tool, brushSize, shouldShowMask, activeTabName } = useAppSelector( + inpaintingBrushSelector + ); + + const handleSelectBrushTool = () => dispatch(setTool('brush')); + + const handleShowBrushPreview = () => { + dispatch(setShouldShowBrushPreview(true)); + }; + + const handleHideBrushPreview = () => { + dispatch(setShouldShowBrushPreview(false)); + }; + + const handleChangeBrushSize = (v: number) => { + dispatch(setShouldShowBrushPreview(true)); + dispatch(setBrushSize(v)); + }; + + // Hotkeys + + // Decrease brush size + useHotkeys( + '[', + (e: KeyboardEvent) => { + e.preventDefault(); + if (brushSize - 5 > 0) { + handleChangeBrushSize(brushSize - 5); + } else { + handleChangeBrushSize(1); + } + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask, brushSize] + ); + + // Increase brush size + useHotkeys( + ']', + (e: KeyboardEvent) => { + e.preventDefault(); + handleChangeBrushSize(brushSize + 5); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask, brushSize] + ); + + // Set tool to brush + useHotkeys( + 'b', + (e: KeyboardEvent) => { + e.preventDefault(); + handleSelectBrushTool(); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask] + ); + + return ( + } + onClick={handleSelectBrushTool} + data-selected={tool === 'brush'} + isDisabled={!shouldShowMask} + /> + } + > +
+ + + +
+
+ ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingClearImageControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingClearImageControl.tsx new file mode 100644 index 0000000000..224a87a6dc --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingClearImageControl.tsx @@ -0,0 +1,22 @@ +import React from 'react'; +import { FaTrash } from 'react-icons/fa'; +import { useAppDispatch } from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { clearImageToInpaint } from '../inpaintingSlice'; + +export default function InpaintingClearImageControl() { + const dispatch = useAppDispatch(); + + const handleClearImage = () => { + dispatch(clearImageToInpaint()); + }; + + return ( + } + onClick={handleClearImage} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingEraserControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingEraserControl.tsx new file mode 100644 index 0000000000..ce98017fe3 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingEraserControl.tsx @@ -0,0 +1,67 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { FaEraser } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { InpaintingState, setTool } from '../inpaintingSlice'; + +import _ from 'lodash'; +import { activeTabNameSelector } from '../../../options/optionsSelectors'; + +const inpaintingEraserSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { tool, shouldShowMask } = inpainting; + + return { + tool, + shouldShowMask, + activeTabName, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingEraserControl() { + const { tool, shouldShowMask, activeTabName } = useAppSelector( + inpaintingEraserSelector + ); + const dispatch = useAppDispatch(); + + const handleSelectEraserTool = () => dispatch(setTool('eraser')); + + // Hotkeys + // Set tool to eraser + useHotkeys( + 'e', + (e: KeyboardEvent) => { + e.preventDefault(); + if (activeTabName !== 'inpainting' || !shouldShowMask) return; + handleSelectEraserTool(); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask] + ); + + return ( + } + onClick={handleSelectEraserTool} + data-selected={tool === 'eraser'} + isDisabled={!shouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingLockBoundingBoxControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingLockBoundingBoxControl.tsx new file mode 100644 index 0000000000..15710be39a --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingLockBoundingBoxControl.tsx @@ -0,0 +1,29 @@ +import { FaLock, FaUnlock } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { setShouldLockBoundingBox } from '../inpaintingSlice'; + +const InpaintingLockBoundingBoxControl = () => { + const dispatch = useAppDispatch(); + const shouldLockBoundingBox = useAppSelector( + (state: RootState) => state.inpainting.shouldLockBoundingBox + ); + + return ( + : } + data-selected={shouldLockBoundingBox} + onClick={() => { + dispatch(setShouldLockBoundingBox(!shouldLockBoundingBox)); + }} + /> + ); +}; + +export default InpaintingLockBoundingBoxControl; diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControl.tsx new file mode 100644 index 0000000000..1bd750dcaf --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControl.tsx @@ -0,0 +1,38 @@ +import React, { useState } from 'react'; +import { FaMask } from 'react-icons/fa'; + +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import IAIPopover from '../../../../common/components/IAIPopover'; + +import InpaintingMaskVisibilityControl from './InpaintingMaskControls/InpaintingMaskVisibilityControl'; +import InpaintingMaskInvertControl from './InpaintingMaskControls/InpaintingMaskInvertControl'; +import InpaintingMaskColorPicker from './InpaintingMaskControls/InpaintingMaskColorPicker'; + +export default function InpaintingMaskControl() { + const [maskOptionsOpen, setMaskOptionsOpen] = useState(false); + + return ( + <> + setMaskOptionsOpen(true)} + onClose={() => setMaskOptionsOpen(false)} + triggerComponent={ + } + cursor={'pointer'} + data-selected={maskOptionsOpen} + /> + } + > +
+ + + +
+
+ + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskClear.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskClear.tsx new file mode 100644 index 0000000000..ea03f3cb6a --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskClear.tsx @@ -0,0 +1,70 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { FaPlus } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import { activeTabNameSelector } from '../../../../options/optionsSelectors'; +import { clearMask, InpaintingState } from '../../inpaintingSlice'; + +import _ from 'lodash'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { useToast } from '@chakra-ui/react'; + +const inpaintingMaskClearSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { shouldShowMask, lines } = inpainting; + + return { shouldShowMask, activeTabName, isMaskEmpty: lines.length === 0 }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingMaskClear() { + const { shouldShowMask, activeTabName, isMaskEmpty } = useAppSelector( + inpaintingMaskClearSelector + ); + + const dispatch = useAppDispatch(); + const toast = useToast(); + + const handleClearMask = () => { + dispatch(clearMask()); + }; + + // Clear mask + useHotkeys( + 'shift+c', + (e: KeyboardEvent) => { + e.preventDefault(); + handleClearMask(); + toast({ + title: 'Mask Cleared', + status: 'success', + duration: 2500, + isClosable: true, + }); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask && !isMaskEmpty, + }, + [activeTabName, isMaskEmpty, shouldShowMask] + ); + return ( + } + onClick={handleClearMask} + isDisabled={isMaskEmpty || !shouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskColorPicker.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskColorPicker.tsx new file mode 100644 index 0000000000..e3f58b810d --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskColorPicker.tsx @@ -0,0 +1,91 @@ +import React from 'react'; +import { RgbaColor } from 'react-colorful'; +import { FaPalette } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAIColorPicker from '../../../../../common/components/IAIColorPicker'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import IAIPopover from '../../../../../common/components/IAIPopover'; +import { InpaintingState, setMaskColor } from '../../inpaintingSlice'; + +import _ from 'lodash'; +import { createSelector } from '@reduxjs/toolkit'; +import { activeTabNameSelector } from '../../../../options/optionsSelectors'; +import { useHotkeys } from 'react-hotkeys-hook'; + +const inpaintingMaskColorPickerSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { shouldShowMask, maskColor } = inpainting; + + return { shouldShowMask, maskColor, activeTabName }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingMaskColorPicker() { + const { shouldShowMask, maskColor, activeTabName } = useAppSelector( + inpaintingMaskColorPickerSelector + ); + const dispatch = useAppDispatch(); + const handleChangeMaskColor = (newColor: RgbaColor) => { + dispatch(setMaskColor(newColor)); + }; + + // Hotkeys + // Decrease mask opacity + useHotkeys( + 'shift+[', + (e: KeyboardEvent) => { + e.preventDefault(); + handleChangeMaskColor({ + ...maskColor, + a: Math.max(maskColor.a - 0.05, 0), + }); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask, maskColor.a] + ); + + // Increase mask opacity + useHotkeys( + 'shift+]', + (e: KeyboardEvent) => { + e.preventDefault(); + handleChangeMaskColor({ + ...maskColor, + a: Math.min(maskColor.a + 0.05, 100), + }); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask, maskColor.a] + ); + + return ( + } + isDisabled={!shouldShowMask} + cursor={'pointer'} + /> + } + > + + + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskInvertControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskInvertControl.tsx new file mode 100644 index 0000000000..3842079c33 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskInvertControl.tsx @@ -0,0 +1,68 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { MdInvertColors, MdInvertColorsOff } from 'react-icons/md'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import { InpaintingState, setShouldInvertMask } from '../../inpaintingSlice'; + +import _ from 'lodash'; +import { activeTabNameSelector } from '../../../../options/optionsSelectors'; +import { useHotkeys } from 'react-hotkeys-hook'; + +const inpaintingMaskInvertSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { shouldShowMask, shouldInvertMask } = inpainting; + + return { shouldInvertMask, shouldShowMask, activeTabName }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingMaskInvertControl() { + const { shouldInvertMask, shouldShowMask, activeTabName } = useAppSelector( + inpaintingMaskInvertSelector + ); + const dispatch = useAppDispatch(); + + const handleToggleShouldInvertMask = () => + dispatch(setShouldInvertMask(!shouldInvertMask)); + + // Invert mask + useHotkeys( + 'shift+m', + (e: KeyboardEvent) => { + e.preventDefault(); + handleToggleShouldInvertMask(); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldInvertMask, shouldShowMask] + ); + + return ( + + ) : ( + + ) + } + onClick={handleToggleShouldInvertMask} + isDisabled={!shouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskVisibilityControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskVisibilityControl.tsx new file mode 100644 index 0000000000..82e66ea629 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingMaskControls/InpaintingMaskVisibilityControl.tsx @@ -0,0 +1,61 @@ +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { BiHide, BiShow } from 'react-icons/bi'; +import { createSelector } from 'reselect'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../../app/store'; +import IAIIconButton from '../../../../../common/components/IAIIconButton'; +import { activeTabNameSelector } from '../../../../options/optionsSelectors'; +import { InpaintingState, setShouldShowMask } from '../../inpaintingSlice'; + +import _ from 'lodash'; + +const inpaintingMaskVisibilitySelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { shouldShowMask } = inpainting; + + return { shouldShowMask, activeTabName }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingMaskVisibilityControl() { + const dispatch = useAppDispatch(); + + const { shouldShowMask, activeTabName } = useAppSelector( + inpaintingMaskVisibilitySelector + ); + + const handleToggleShouldShowMask = () => + dispatch(setShouldShowMask(!shouldShowMask)); + // Hotkeys + // Show/hide mask + useHotkeys( + 'h', + (e: KeyboardEvent) => { + e.preventDefault(); + handleToggleShouldShowMask(); + }, + { + enabled: activeTabName === 'inpainting', + }, + [activeTabName, shouldShowMask] + ); + return ( + : } + onClick={handleToggleShouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingRedoControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingRedoControl.tsx new file mode 100644 index 0000000000..c97ceb89bf --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingRedoControl.tsx @@ -0,0 +1,66 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { FaRedo } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { activeTabNameSelector } from '../../../options/optionsSelectors'; +import { InpaintingState, redo } from '../inpaintingSlice'; + +import _ from 'lodash'; + +const inpaintingRedoSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { futureLines, shouldShowMask } = inpainting; + + return { + canRedo: futureLines.length > 0, + shouldShowMask, + activeTabName, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingRedoControl() { + const dispatch = useAppDispatch(); + const { canRedo, shouldShowMask, activeTabName } = useAppSelector( + inpaintingRedoSelector + ); + + const handleRedo = () => dispatch(redo()); + + // Hotkeys + + // Redo + useHotkeys( + 'cmd+shift+z, control+shift+z, control+y, cmd+y', + (e: KeyboardEvent) => { + e.preventDefault(); + handleRedo(); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask && canRedo, + }, + [activeTabName, shouldShowMask, canRedo] + ); + + return ( + } + onClick={handleRedo} + isDisabled={!canRedo || !shouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingShowHideBoundingBoxControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingShowHideBoundingBoxControl.tsx new file mode 100644 index 0000000000..a91d83d864 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingShowHideBoundingBoxControl.tsx @@ -0,0 +1,29 @@ +import { FaVectorSquare } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { setShouldShowBoundingBox } from '../inpaintingSlice'; + +const InpaintingShowHideBoundingBoxControl = () => { + const dispatch = useAppDispatch(); + const shouldShowBoundingBox = useAppSelector( + (state: RootState) => state.inpainting.shouldShowBoundingBox + ); + + return ( + } + data-alert={!shouldShowBoundingBox} + onClick={() => { + dispatch(setShouldShowBoundingBox(!shouldShowBoundingBox)); + }} + /> + ); +}; + +export default InpaintingShowHideBoundingBoxControl; diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingSplitLayoutControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingSplitLayoutControl.tsx new file mode 100644 index 0000000000..3f2bcceed4 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingSplitLayoutControl.tsx @@ -0,0 +1,43 @@ +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { VscSplitHorizontal } from 'react-icons/vsc'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { setShowDualDisplay } from '../../../options/optionsSlice'; +import { setNeedsCache } from '../inpaintingSlice'; + +export default function InpaintingSplitLayoutControl() { + const dispatch = useAppDispatch(); + const showDualDisplay = useAppSelector( + (state: RootState) => state.options.showDualDisplay + ); + + const handleDualDisplay = () => { + dispatch(setShowDualDisplay(!showDualDisplay)); + dispatch(setNeedsCache(true)); + }; + + // Hotkeys + // Toggle split view + useHotkeys( + 'shift+j', + () => { + handleDualDisplay(); + }, + [showDualDisplay] + ); + + return ( + } + data-selected={showDualDisplay} + onClick={handleDualDisplay} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingUndoControl.tsx b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingUndoControl.tsx new file mode 100644 index 0000000000..4721487da6 --- /dev/null +++ b/frontend/src/features/tabs/Inpainting/InpaintingControls/InpaintingUndoControl.tsx @@ -0,0 +1,66 @@ +import { createSelector } from '@reduxjs/toolkit'; +import React from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { FaUndo } from 'react-icons/fa'; +import { + RootState, + useAppDispatch, + useAppSelector, +} from '../../../../app/store'; +import IAIIconButton from '../../../../common/components/IAIIconButton'; +import { InpaintingState, undo } from '../inpaintingSlice'; + +import _ from 'lodash'; +import { activeTabNameSelector } from '../../../options/optionsSelectors'; + +const inpaintingUndoSelector = createSelector( + [(state: RootState) => state.inpainting, activeTabNameSelector], + (inpainting: InpaintingState, activeTabName) => { + const { pastLines, shouldShowMask } = inpainting; + + return { + canUndo: pastLines.length > 0, + shouldShowMask, + activeTabName, + }; + }, + { + memoizeOptions: { + resultEqualityCheck: _.isEqual, + }, + } +); + +export default function InpaintingUndoControl() { + const dispatch = useAppDispatch(); + + const { canUndo, shouldShowMask, activeTabName } = useAppSelector( + inpaintingUndoSelector + ); + + const handleUndo = () => dispatch(undo()); + + // Hotkeys + // Undo + useHotkeys( + 'cmd+z, control+z', + (e: KeyboardEvent) => { + e.preventDefault(); + handleUndo(); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask && canUndo, + }, + [activeTabName, shouldShowMask, canUndo] + ); + + return ( + } + onClick={handleUndo} + isDisabled={!canUndo || !shouldShowMask} + /> + ); +} diff --git a/frontend/src/features/tabs/Inpainting/components/KeyboardEventManager.tsx b/frontend/src/features/tabs/Inpainting/KeyboardEventManager.tsx similarity index 68% rename from frontend/src/features/tabs/Inpainting/components/KeyboardEventManager.tsx rename to frontend/src/features/tabs/Inpainting/KeyboardEventManager.tsx index a4c65f28e8..a00b996847 100644 --- a/frontend/src/features/tabs/Inpainting/components/KeyboardEventManager.tsx +++ b/frontend/src/features/tabs/Inpainting/KeyboardEventManager.tsx @@ -1,19 +1,17 @@ import { createSelector } from '@reduxjs/toolkit'; import _ from 'lodash'; import { useEffect, useRef } from 'react'; -import { - RootState, - useAppDispatch, - useAppSelector, -} from '../../../../app/store'; -import { activeTabNameSelector } from '../../../options/optionsSelectors'; -import { OptionsState } from '../../../options/optionsSlice'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { RootState, useAppDispatch, useAppSelector } from '../../../app/store'; +import { activeTabNameSelector } from '../../options/optionsSelectors'; +import { OptionsState } from '../../options/optionsSlice'; import { InpaintingState, - setIsDrawing, + setIsSpacebarHeld, setShouldLockBoundingBox, + toggleShouldLockBoundingBox, toggleTool, -} from '../inpaintingSlice'; +} from './inpaintingSlice'; const keyboardEventManagerSelector = createSelector( [ @@ -22,13 +20,18 @@ const keyboardEventManagerSelector = createSelector( activeTabNameSelector, ], (options: OptionsState, inpainting: InpaintingState, activeTabName) => { - const { shouldShowMask, cursorPosition, shouldLockBoundingBox } = - inpainting; + const { + shouldShowMask, + cursorPosition, + shouldLockBoundingBox, + shouldShowBoundingBox, + } = inpainting; return { activeTabName, shouldShowMask, isCursorOnCanvas: Boolean(cursorPosition), shouldLockBoundingBox, + shouldShowBoundingBox, }; }, { @@ -45,15 +48,30 @@ const KeyboardEventManager = () => { activeTabName, isCursorOnCanvas, shouldLockBoundingBox, + shouldShowBoundingBox, } = useAppSelector(keyboardEventManagerSelector); const wasLastEventOverCanvas = useRef(false); const lastEvent = useRef(null); + // Toggle lock bounding box + useHotkeys( + 'shift+q', + (e: KeyboardEvent) => { + e.preventDefault(); + dispatch(toggleShouldLockBoundingBox()); + }, + { + enabled: activeTabName === 'inpainting' && shouldShowMask, + }, + [activeTabName, shouldShowMask] + ); + + // Manages hold-style keyboard shortcuts useEffect(() => { const listener = (e: KeyboardEvent) => { if ( - !['x', ' '].includes(e.key) || + !['x', 'q'].includes(e.key) || activeTabName !== 'inpainting' || !shouldShowMask ) { @@ -91,13 +109,10 @@ const KeyboardEventManager = () => { dispatch(toggleTool()); break; } - case ' ': { - if (!shouldShowMask) break; - - if (e.type === 'keydown') { - dispatch(setIsDrawing(false)); - } - dispatch(setShouldLockBoundingBox(!shouldLockBoundingBox)); + case 'q': { + if (!shouldShowMask || !shouldShowBoundingBox) break; + dispatch(setIsSpacebarHeld(e.type === 'keydown')); + dispatch(setShouldLockBoundingBox(e.type !== 'keydown')); break; } } @@ -119,6 +134,7 @@ const KeyboardEventManager = () => { shouldShowMask, isCursorOnCanvas, shouldLockBoundingBox, + shouldShowBoundingBox, ]); return null; diff --git a/frontend/src/features/tabs/Inpainting/components/Cacher.tsx b/frontend/src/features/tabs/Inpainting/components/Cacher.tsx index 3d168c6653..7a6d96c3c9 100644 --- a/frontend/src/features/tabs/Inpainting/components/Cacher.tsx +++ b/frontend/src/features/tabs/Inpainting/components/Cacher.tsx @@ -33,6 +33,9 @@ const Cacher = () => { futureLines, needsCache, isDrawing, + isTransformingBoundingBox, + isMovingBoundingBox, + shouldShowBoundingBox, } = useAppSelector((state: RootState) => state.inpainting); useLayoutEffect(() => { @@ -58,12 +61,15 @@ const Cacher = () => { imageToInpaint, shouldShowBrush, shouldShowBoundingBoxFill, + shouldShowBoundingBox, shouldLockBoundingBox, stageScale, pastLines, futureLines, needsCache, isDrawing, + isTransformingBoundingBox, + isMovingBoundingBox, ]); /** diff --git a/frontend/src/features/tabs/Inpainting/components/InpaintingBoundingBoxPreview.tsx b/frontend/src/features/tabs/Inpainting/components/InpaintingBoundingBoxPreview.tsx index f30d4f8366..df0d09ed65 100644 --- a/frontend/src/features/tabs/Inpainting/components/InpaintingBoundingBoxPreview.tsx +++ b/frontend/src/features/tabs/Inpainting/components/InpaintingBoundingBoxPreview.tsx @@ -1,5 +1,6 @@ import { createSelector } from '@reduxjs/toolkit'; import Konva from 'konva'; +import { Context } from 'konva/lib/Context'; import { KonvaEventObject } from 'konva/lib/Node'; import { Box } from 'konva/lib/shapes/Transformer'; import { Vector2d } from 'konva/lib/types'; @@ -12,11 +13,13 @@ import { useAppSelector, } from '../../../../app/store'; import { roundToMultiple } from '../../../../common/util/roundDownToMultiple'; -import { stageRef } from '../InpaintingCanvas'; import { InpaintingState, setBoundingBoxCoordinate, setBoundingBoxDimensions, + setIsMouseOverBoundingBox, + setIsMovingBoundingBox, + setIsTransformingBoundingBox, } from '../inpaintingSlice'; import { rgbaColorToString } from '../util/colorToString'; import { @@ -35,6 +38,11 @@ const boundingBoxPreviewSelector = createSelector( stageScale, imageToInpaint, shouldLockBoundingBox, + isDrawing, + isTransformingBoundingBox, + isMovingBoundingBox, + isMouseOverBoundingBox, + isSpacebarHeld, } = inpainting; return { boundingBoxCoordinate, @@ -46,6 +54,11 @@ const boundingBoxPreviewSelector = createSelector( dash: DASH_WIDTH / stageScale, // scale dash lengths strokeWidth: 1 / stageScale, // scale stroke thickness shouldLockBoundingBox, + isDrawing, + isTransformingBoundingBox, + isMouseOverBoundingBox, + isMovingBoundingBox, + isSpacebarHeld, }; }, { @@ -93,10 +106,14 @@ const InpaintingBoundingBoxPreview = () => { const { boundingBoxCoordinate, boundingBoxDimensions, - strokeWidth, stageScale, imageToInpaint, shouldLockBoundingBox, + isDrawing, + isTransformingBoundingBox, + isMovingBoundingBox, + isMouseOverBoundingBox, + isSpacebarHeld, } = useAppSelector(boundingBoxPreviewSelector); const transformerRef = useRef(null); @@ -108,15 +125,6 @@ const InpaintingBoundingBoxPreview = () => { transformerRef.current.getLayer()?.batchDraw(); }, [shouldLockBoundingBox]); - useEffect( - () => () => { - const container = stageRef.current?.container(); - if (!container) return; - container.style.cursor = 'unset'; - }, - [shouldLockBoundingBox] - ); - const scaledStep = 64 * stageScale; const handleOnDragMove = useCallback( @@ -269,6 +277,35 @@ const InpaintingBoundingBoxPreview = () => { [imageToInpaint, stageScale] ); + const handleStartedTransforming = (e: KonvaEventObject) => { + e.cancelBubble = true; + e.evt.stopImmediatePropagation(); + console.log("Started transform") + dispatch(setIsTransformingBoundingBox(true)); + }; + + const handleEndedTransforming = (e: KonvaEventObject) => { + dispatch(setIsTransformingBoundingBox(false)); + dispatch(setIsMouseOverBoundingBox(false)); + }; + + const handleStartedMoving = (e: KonvaEventObject) => { + e.cancelBubble = true; + e.evt.stopImmediatePropagation(); + dispatch(setIsMovingBoundingBox(true)); + }; + + const handleEndedModifying = (e: KonvaEventObject) => { + dispatch(setIsTransformingBoundingBox(false)); + dispatch(setIsMovingBoundingBox(false)); + dispatch(setIsMouseOverBoundingBox(false)); + }; + + const spacebarHeldHitFunc = (context: Context, shape: Konva.Shape) => { + context.rect(0, 0, imageToInpaint?.width, imageToInpaint?.height); + context.fillShape(shape); + }; + return ( <> { width={boundingBoxDimensions.width} height={boundingBoxDimensions.height} ref={shapeRef} - stroke={'white'} - strokeWidth={strokeWidth} - listening={!shouldLockBoundingBox} - onMouseEnter={(e) => { - const container = e?.target?.getStage()?.container(); - if (!container) return; - container.style.cursor = shouldLockBoundingBox ? 'none' : 'move'; + stroke={isMouseOverBoundingBox ? 'rgba(255,255,255,0.3)' : 'white'} + strokeWidth={Math.floor((isMouseOverBoundingBox ? 8 : 1) / stageScale)} + fillEnabled={isSpacebarHeld} + hitFunc={isSpacebarHeld ? spacebarHeldHitFunc : undefined} + hitStrokeWidth={Math.floor(13 / stageScale)} + listening={!isDrawing && !shouldLockBoundingBox} + onMouseOver={() => { + dispatch(setIsMouseOverBoundingBox(true)); }} - onMouseLeave={(e) => { - const container = e?.target?.getStage()?.container(); - if (!container) return; - container.style.cursor = shouldLockBoundingBox ? 'none' : 'default'; + onMouseOut={() => { + !isTransformingBoundingBox && + !isMovingBoundingBox && + dispatch(setIsMouseOverBoundingBox(false)); }} - draggable={!shouldLockBoundingBox} + onMouseDown={handleStartedMoving} + onMouseUp={handleEndedModifying} + draggable={true} onDragMove={handleOnDragMove} dragBoundFunc={dragBoundFunc} onTransform={handleOnTransform} + onDragEnd={handleEndedModifying} + onTransformEnd={handleEndedTransforming} /> { flipEnabled={false} ignoreStroke={true} keepRatio={false} - listening={!shouldLockBoundingBox} + listening={!isDrawing && !shouldLockBoundingBox} + onMouseDown={handleStartedTransforming} + onMouseUp={handleEndedTransforming} enabledAnchors={shouldLockBoundingBox ? [] : undefined} boundBoxFunc={boundBoxFunc} anchorDragBoundFunc={anchorDragBoundFunc} + onDragEnd={handleEndedModifying} + onTransformEnd={handleEndedTransforming} + onMouseOver={() => { + dispatch(setIsMouseOverBoundingBox(true)); + }} + onMouseOut={() => { + !isTransformingBoundingBox && + !isMovingBoundingBox && + dispatch(setIsMouseOverBoundingBox(false)); + }} /> ); diff --git a/frontend/src/features/tabs/Inpainting/components/InpaintingCanvasBrushPreview.tsx b/frontend/src/features/tabs/Inpainting/components/InpaintingCanvasBrushPreview.tsx index f88150d794..42beadd2b7 100644 --- a/frontend/src/features/tabs/Inpainting/components/InpaintingCanvasBrushPreview.tsx +++ b/frontend/src/features/tabs/Inpainting/components/InpaintingCanvasBrushPreview.tsx @@ -11,22 +11,28 @@ const inpaintingCanvasBrushPreviewSelector = createSelector( const { cursorPosition, canvasDimensions: { width, height }, - shouldShowBrushPreview, brushSize, maskColor, tool, shouldShowBrush, + isMovingBoundingBox, + isTransformingBoundingBox, } = inpainting; return { cursorPosition, width, height, - shouldShowBrushPreview, brushSize, maskColorString: rgbaColorToRgbString(maskColor), tool, shouldShowBrush, + shouldDrawBrushPreview: + !( + isMovingBoundingBox || + isTransformingBoundingBox || + !cursorPosition + ) && shouldShowBrush, }; }, { @@ -44,16 +50,13 @@ const InpaintingCanvasBrushPreview = () => { cursorPosition, width, height, - shouldShowBrushPreview, brushSize, maskColorString, tool, - shouldShowBrush, + shouldDrawBrushPreview, } = useAppSelector(inpaintingCanvasBrushPreviewSelector); - if (!shouldShowBrush || !(cursorPosition || shouldShowBrushPreview)) { - return null; - } + if (!shouldDrawBrushPreview) return null; return ( state.inpainting, (inpainting: InpaintingState) => { const { cursorPosition, canvasDimensions: { width, height }, - shouldShowBrushPreview, brushSize, - stageScale, + tool, shouldShowBrush, + isMovingBoundingBox, + isTransformingBoundingBox, + stageScale, } = inpainting; return { cursorPosition, width, height, - shouldShowBrushPreview, brushSize, + tool, strokeWidth: 1 / stageScale, // scale stroke thickness - shouldShowBrush, + radius: 1 / stageScale, // scale stroke thickness + shouldDrawBrushPreview: + !( + isMovingBoundingBox || + isTransformingBoundingBox || + !cursorPosition + ) && shouldShowBrush, }; }, { @@ -41,15 +49,13 @@ const InpaintingCanvasBrushPreviewOutline = () => { cursorPosition, width, height, - shouldShowBrushPreview, brushSize, + shouldDrawBrushPreview, strokeWidth, - shouldShowBrush, - } = useAppSelector(inpaintingCanvasBrushPreviewSelector); - - if (!shouldShowBrush || !(cursorPosition || shouldShowBrushPreview)) - return null; + radius, + } = useAppSelector(inpaintingCanvasBrushPrevieOutlineSelector); + if (!shouldDrawBrushPreview) return null; return ( <> { diff --git a/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts b/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts index 6703709899..dee72de7d9 100644 --- a/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts +++ b/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts @@ -51,9 +51,13 @@ export interface InpaintingState { needsCache: boolean; stageScale: number; isDrawing: boolean; + isTransformingBoundingBox: boolean; + isMouseOverBoundingBox: boolean; + isMovingBoundingBox: boolean; shouldUseInpaintReplace: boolean; inpaintReplace: number; shouldLockBoundingBox: boolean; + isSpacebarHeld: boolean; } const initialInpaintingState: InpaintingState = { @@ -63,7 +67,7 @@ const initialInpaintingState: InpaintingState = { canvasDimensions: { width: 0, height: 0 }, boundingBoxDimensions: { width: 512, height: 512 }, boundingBoxCoordinate: { x: 0, y: 0 }, - boundingBoxPreviewFill: { r: 0, g: 0, b: 0, a: 0.7 }, + boundingBoxPreviewFill: { r: 0, g: 0, b: 0, a: 0.5 }, shouldShowBoundingBox: true, shouldShowBoundingBoxFill: true, cursorPosition: null, @@ -77,10 +81,14 @@ const initialInpaintingState: InpaintingState = { shouldShowBrushPreview: false, needsCache: false, isDrawing: false, + isTransformingBoundingBox: false, + isMouseOverBoundingBox: false, + isMovingBoundingBox: false, stageScale: 1, shouldUseInpaintReplace: false, - inpaintReplace: 1, + inpaintReplace: 0.1, shouldLockBoundingBox: true, + isSpacebarHeld: false, }; const initialState: InpaintingState = initialInpaintingState; @@ -319,6 +327,18 @@ export const inpaintingSlice = createSlice({ setShouldShowBoundingBox: (state, action: PayloadAction) => { state.shouldShowBoundingBox = action.payload; }, + setIsTransformingBoundingBox: (state, action: PayloadAction) => { + state.isTransformingBoundingBox = action.payload; + }, + setIsMovingBoundingBox: (state, action: PayloadAction) => { + state.isMovingBoundingBox = action.payload; + }, + setIsMouseOverBoundingBox: (state, action: PayloadAction) => { + state.isMouseOverBoundingBox = action.payload; + }, + setIsSpacebarHeld: (state, action: PayloadAction) => { + state.isSpacebarHeld = action.payload; + }, }, }); @@ -354,6 +374,10 @@ export const { setInpaintReplace, setShouldLockBoundingBox, toggleShouldLockBoundingBox, + setIsMovingBoundingBox, + setIsTransformingBoundingBox, + setIsMouseOverBoundingBox, + setIsSpacebarHeld, } = inpaintingSlice.actions; export default inpaintingSlice.reducer; diff --git a/frontend/src/features/tabs/Inpainting/inpaintingSliceSelectors.ts b/frontend/src/features/tabs/Inpainting/inpaintingSliceSelectors.ts index 610812d1f9..3d7022d018 100644 --- a/frontend/src/features/tabs/Inpainting/inpaintingSliceSelectors.ts +++ b/frontend/src/features/tabs/Inpainting/inpaintingSliceSelectors.ts @@ -78,7 +78,23 @@ export const inpaintingCanvasSelector = createSelector( isDrawing, shouldLockBoundingBox, boundingBoxDimensions, + isTransformingBoundingBox, + isMouseOverBoundingBox, + isMovingBoundingBox, } = inpainting; + + let stageCursor: string | undefined = ''; + + if (isTransformingBoundingBox) { + stageCursor = undefined; + } else if (isMovingBoundingBox || isMouseOverBoundingBox) { + stageCursor = 'move'; + } else if (shouldShowMask) { + stageCursor = 'none'; + } else { + stageCursor = 'default'; + } + return { tool, brushSize, @@ -93,6 +109,10 @@ export const inpaintingCanvasSelector = createSelector( isDrawing, shouldLockBoundingBox, boundingBoxDimensions, + isTransformingBoundingBox, + isModifyingBoundingBox: isTransformingBoundingBox || isMovingBoundingBox, + stageCursor, + isMouseOverBoundingBox, }; }, { diff --git a/frontend/src/features/tabs/Inpainting/util/generateMask.ts b/frontend/src/features/tabs/Inpainting/util/generateMask.ts index 37b3902d94..11e4cc2f00 100644 --- a/frontend/src/features/tabs/Inpainting/util/generateMask.ts +++ b/frontend/src/features/tabs/Inpainting/util/generateMask.ts @@ -101,7 +101,7 @@ const generateMask = ( new Konva.Image({ image: image, globalCompositeOperation: 'source-out' }) ); - const maskDataURL = stage.toDataURL(); + const maskDataURL = stage.toDataURL({ ...boundingBox }); return { maskDataURL, isMaskEmpty }; }; diff --git a/frontend/src/features/tabs/InvokeOptionsPanel.tsx b/frontend/src/features/tabs/InvokeOptionsPanel.tsx index dd3f4ea456..5a60a93e18 100644 --- a/frontend/src/features/tabs/InvokeOptionsPanel.tsx +++ b/frontend/src/features/tabs/InvokeOptionsPanel.tsx @@ -67,6 +67,15 @@ const InvokeOptionsPanel = (props: Props) => { [shouldShowOptionsPanel] ); + useHotkeys( + 'esc', + () => { + if (shouldPinOptionsPanel) return; + dispatch(setShouldShowOptionsPanel(false)); + }, + [shouldPinOptionsPanel] + ); + useHotkeys( 'shift+o', () => { @@ -74,7 +83,6 @@ const InvokeOptionsPanel = (props: Props) => { }, [shouldPinOptionsPanel] ); - // const handleCloseOptionsPanel = useCallback(() => { if (shouldPinOptionsPanel) return; @@ -112,12 +120,6 @@ const InvokeOptionsPanel = (props: Props) => { dispatch(setNeedsCache(true)); }; - // // set gallery scroll position - // useEffect(() => { - // if (!optionsPanelContainerRef.current) return; - // optionsPanelContainerRef.current.scrollTop = optionsPanelScrollPosition; - // }, [optionsPanelScrollPosition, shouldShowOptionsPanel]); - return ( {
)} - {children}
diff --git a/frontend/src/features/tabs/InvokeTabs.tsx b/frontend/src/features/tabs/InvokeTabs.tsx index e422184a29..8cbd0df124 100644 --- a/frontend/src/features/tabs/InvokeTabs.tsx +++ b/frontend/src/features/tabs/InvokeTabs.tsx @@ -15,9 +15,10 @@ import TextToImageIcon from '../../common/icons/TextToImageIcon'; import { setActiveTab } from '../options/optionsSlice'; import ImageToImageWorkarea from './ImageToImage'; import InpaintingWorkarea from './Inpainting'; +import { setNeedsCache } from './Inpainting/inpaintingSlice'; import TextToImageWorkarea from './TextToImage'; -export const tab_dict = { +export const tabDict = { txt2img: { title: , workarea: , @@ -50,8 +51,8 @@ export const tab_dict = { }, }; -// Array where index maps to the key of tab_dict -export const tabMap = _.map(tab_dict, (tab, key) => key); +// Array where index maps to the key of tabDict +export const tabMap = _.map(tabDict, (tab, key) => key); // Use tabMap to generate a union type of tab names const tabMapTypes = [...tabMap] as const; @@ -73,6 +74,7 @@ export default function InvokeTabs() { useHotkeys('3', () => { dispatch(setActiveTab(2)); + dispatch(setNeedsCache(true)); }); useHotkeys('4', () => { @@ -89,15 +91,15 @@ export default function InvokeTabs() { const renderTabs = () => { const tabsToRender: ReactElement[] = []; - Object.keys(tab_dict).forEach((key) => { + Object.keys(tabDict).forEach((key) => { tabsToRender.push( - {tab_dict[key as keyof typeof tab_dict].title} + {tabDict[key as keyof typeof tabDict].title} ); }); @@ -106,10 +108,10 @@ export default function InvokeTabs() { const renderTabPanels = () => { const tabPanelsToRender: ReactElement[] = []; - Object.keys(tab_dict).forEach((key) => { + Object.keys(tabDict).forEach((key) => { tabPanelsToRender.push( - {tab_dict[key as keyof typeof tab_dict].workarea} + {tabDict[key as keyof typeof tabDict].workarea} ); }); @@ -125,6 +127,7 @@ export default function InvokeTabs() { index={activeTab} onChange={(index: number) => { dispatch(setActiveTab(index)); + dispatch(setNeedsCache(true)); }} >
{renderTabs()}
diff --git a/frontend/src/features/tabs/InvokeWorkarea.scss b/frontend/src/features/tabs/InvokeWorkarea.scss index b9c13df295..38ccdc34f8 100644 --- a/frontend/src/features/tabs/InvokeWorkarea.scss +++ b/frontend/src/features/tabs/InvokeWorkarea.scss @@ -7,21 +7,26 @@ .workarea-main { display: flex; - column-gap: 0.5rem; + column-gap: 1rem; height: 100%; + .workarea-children-wrapper { + position: relative; + width: 100%; + height: 100%; + } .workarea-split-view { width: 100%; + height: 100%; display: grid; grid-template-columns: 1fr 1fr; - // height: $app-content-height; background-color: var(--background-color-secondary); border-radius: 0.5rem; } .workarea-single-view { width: 100%; - // height: $app-content-height; + height: 100%; background-color: var(--background-color-secondary); border-radius: 0.5rem; } @@ -45,3 +50,22 @@ } } } +.workarea-split-button { + position: absolute; + cursor: pointer; + padding: 0.5rem; + top: 0; + right: 0; + z-index: 20; + + &[data-selected='true'] { + top: 0; + right: 0; + svg { + opacity: 1; + } + } + svg { + opacity: 0.5; + } +} diff --git a/frontend/src/features/tabs/InvokeWorkarea.tsx b/frontend/src/features/tabs/InvokeWorkarea.tsx index d82f7d36c9..d79f413720 100644 --- a/frontend/src/features/tabs/InvokeWorkarea.tsx +++ b/frontend/src/features/tabs/InvokeWorkarea.tsx @@ -1,5 +1,20 @@ +import { Tooltip } from '@chakra-ui/react'; +import { createSelector } from '@reduxjs/toolkit'; import { ReactNode } from 'react'; +import { useHotkeys } from 'react-hotkeys-hook'; +import { VscSplitHorizontal } from 'react-icons/vsc'; +import { RootState, useAppDispatch, useAppSelector } from '../../app/store'; import ImageGallery from '../gallery/ImageGallery'; +import { activeTabNameSelector } from '../options/optionsSelectors'; +import { OptionsState, setShowDualDisplay } from '../options/optionsSlice'; + +const workareaSelector = createSelector( + [(state: RootState) => state.options, activeTabNameSelector], + (options: OptionsState, activeTabName) => { + const { showDualDisplay, shouldPinOptionsPanel } = options; + return { showDualDisplay, shouldPinOptionsPanel, activeTabName }; + } +); type InvokeWorkareaProps = { optionsPanel: ReactNode; @@ -8,7 +23,26 @@ type InvokeWorkareaProps = { }; const InvokeWorkarea = (props: InvokeWorkareaProps) => { + const dispatch = useAppDispatch(); const { optionsPanel, children, styleClass } = props; + const { showDualDisplay, activeTabName } = useAppSelector(workareaSelector); + + const handleDualDisplay = () => { + dispatch(setShowDualDisplay(!showDualDisplay)); + }; + + // Hotkeys + // Toggle split view + useHotkeys( + 'shift+j', + () => { + handleDualDisplay(); + }, + { + enabled: activeTabName === 'inpainting', + }, + [showDualDisplay] + ); return (
{ >
{optionsPanel} - {children} +
+ {children} + {activeTabName === 'inpainting' && ( + +
+ +
+
+ )} +
diff --git a/frontend/src/styles/_Colors_Dark.scss b/frontend/src/styles/_Colors_Dark.scss index 2a85571933..fdecb027bb 100644 --- a/frontend/src/styles/_Colors_Dark.scss +++ b/frontend/src/styles/_Colors_Dark.scss @@ -19,12 +19,16 @@ --invalid: rgb(255, 75, 75); --invalid-secondary: rgb(120, 5, 5); + --accent-color-dim: rgb(57, 25, 153); --accent-color: rgb(80, 40, 200); --accent-color-hover: rgb(104, 60, 230); --destructive-color: rgb(185, 55, 55); --destructive-color-hover: rgb(255, 75, 75); + --warning-color: rgb(200, 88, 40); + --warning-color-hover: rgb(230, 117, 60); + // Error status colors --border-color-invalid: rgb(255, 80, 50); --box-shadow-color-invalid: rgb(210, 30, 10); @@ -46,6 +50,11 @@ --btn-load-more: rgb(30, 32, 42); --btn-load-more-hover: rgb(54, 56, 66); + --btn-delete-image: rgb(238, 107, 107); + + // IAI Button Colors + --btn-checkbox-border-hover: rgb(46, 48, 68); + // Switch --switch-bg-color: rgb(100, 102, 110); --switch-bg-active-color: rgb(80, 40, 200); @@ -57,7 +66,7 @@ --tab-color: rgb(30, 32, 42); --tab-hover-color: rgb(36, 38, 48); --tab-list-bg: var(--accent-color); - --tab-list-text: rgb(202,204,216); + --tab-list-text: rgb(202, 204, 216); --tab-list-text-inactive: rgb(92, 94, 114); --tab-panel-bg: rgb(20, 22, 28); @@ -103,4 +112,12 @@ // Shadows --floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(140, 101, 255, 0.5)); + + // Canvas + --inpainting-alerts-bg: rgba(20, 20, 26, 0.75); + --inpainting-alerts-icon-color: rgb(255, 255, 255); + --inpainting-alerts-bg-active: rgb(80, 40, 200); + --inpainting-alerts-icon-active: rgb(255, 255, 255); + --inpainting-alerts-bg-alert: var(--invalid); + --inpainting-alerts-icon-alert: rgb(255, 255, 255); } diff --git a/frontend/src/styles/_Colors_Light.scss b/frontend/src/styles/_Colors_Light.scss index 325c0f57f5..f46513a297 100644 --- a/frontend/src/styles/_Colors_Light.scss +++ b/frontend/src/styles/_Colors_Light.scss @@ -19,12 +19,16 @@ --invalid: rgb(255, 75, 75); --invalid-secondary: rgb(120, 5, 5); + --accent-color-dim: rgb(186, 146, 0); --accent-color: rgb(235, 185, 5); --accent-color-hover: rgb(255, 200, 0); --destructive-color: rgb(237, 51, 51); --destructive-color-hover: rgb(255, 55, 55); + --warning-color: rgb(224, 142, 42); + --warning-color-hover: rgb(255, 167, 60); + // Error status colors --border-color-invalid: rgb(255, 80, 50); --box-shadow-color-invalid: none; @@ -46,6 +50,11 @@ --btn-load-more: rgb(202, 204, 206); --btn-load-more-hover: rgb(178, 180, 182); + --btn-delete-image: rgb(213, 49, 49); + + // IAI Button Colors + --btn-checkbox-border-hover: rgb(176, 178, 182); + // Switch --switch-bg-color: rgb(178, 180, 182); --switch-bg-active-color: rgb(235, 185, 5); @@ -104,4 +113,12 @@ // Shadows --floating-button-drop-shadow: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.3)); + + // Canvas + --inpainting-alerts-bg: rgba(220, 222, 224, 0.75); + --inpainting-alerts-icon-color: rgb(0, 0, 0); + --inpainting-alerts-bg-active: rgb(255, 200, 0); + --inpainting-alerts-icon-active: rgb(0, 0, 0); + --inpainting-alerts-bg-alert: var(--invalid); + --inpainting-alerts-icon-alert: rgb(0, 0, 0); } diff --git a/frontend/src/styles/index.scss b/frontend/src/styles/index.scss index fd5a9e7dc1..de0f57020d 100644 --- a/frontend/src/styles/index.scss +++ b/frontend/src/styles/index.scss @@ -23,14 +23,14 @@ @use '../features/options/MainOptions/MainOptions.scss'; @use '../features/options/AccordionItems/AdvancedSettings.scss'; @use '../features/options/AdvancedOptions/Upscale/UpscaleOptions.scss'; -@use '../features/options/AdvancedOptions/Inpainting/BoundingBoxSettings.scss'; +@use '../features/options/AdvancedOptions/Inpainting/BoundingBoxSettings/BoundingBoxSettings.scss'; @use '../features/system/ProgressBar.scss'; // gallery @use '../features/gallery/CurrentImageDisplay.scss'; +@use '../features/gallery/CurrentImageButtons.scss'; @use '../features/gallery/ImageGallery.scss'; @use '../features/gallery/HoverableImage.scss'; -@use '../features/gallery/InvokePopover.scss'; @use '../features/gallery/ImageMetaDataViewer/ImageMetadataViewer.scss'; // Tabs @@ -39,13 +39,15 @@ @use '../features/tabs/InvokeOptionsPanel.scss'; @use '../features/tabs/TextToImage/TextToImage.scss'; @use '../features/tabs/ImageToImage/ImageToImage.scss'; -@use '../features/tabs/Inpainting/Inpainting.scss'; @use '../features/tabs/FloatingButton.scss'; +@use '../features/tabs/Inpainting/Inpainting.scss'; +@use '../features/tabs/Inpainting/InpaintingCanvasStatusIcons.scss'; // Component Shared @use '../common/components/IAINumberInput.scss'; @use '../common/components/IAIInput.scss'; @use '../common/components/IAIIconButton.scss'; +@use '../common/components/IAIButton.scss'; @use '../common/components/IAISwitch.scss'; @use '../common/components/IAISelect.scss'; @use '../common/components/IAISlider.scss'; diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 2646e0339b..6aa2c0dc1b 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -17,32 +17,38 @@ dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.19.3": - "version" "7.19.3" +"@babel/compat-data@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.0.tgz#9b61938c5f688212c7b9ae363a819df7d29d4093" + integrity sha512-Gt9jszFJYq7qzXVK4slhc6NzJXnOVmRECWcVjF/T23rNXD9NtWQ0W3qxdg+p9wWIB+VQw3GYV/U2Ha9bRTfs4w== -"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.18.13": - "version" "7.19.3" +"@babel/core@^7.19.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" + integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== dependencies: "@ampproject/remapping" "^2.1.0" "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.3" + "@babel/generator" "^7.19.6" "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-module-transforms" "^7.19.0" - "@babel/helpers" "^7.19.0" - "@babel/parser" "^7.19.3" + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helpers" "^7.19.4" + "@babel/parser" "^7.19.6" "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.3" - "@babel/types" "^7.19.3" - "convert-source-map" "^1.7.0" - "debug" "^4.1.0" - "gensync" "^1.0.0-beta.2" - "json5" "^2.2.1" - "semver" "^6.3.0" + "@babel/traverse" "^7.19.6" + "@babel/types" "^7.19.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" -"@babel/generator@^7.19.3": - "version" "7.19.3" +"@babel/generator@^7.19.6", "@babel/generator@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" + integrity sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w== dependencies: - "@babel/types" "^7.19.3" + "@babel/types" "^7.20.0" "@jridgewell/gen-mapping" "^0.3.2" "jsesc" "^2.5.1" @@ -54,9 +60,11 @@ "@babel/types" "^7.18.6" "@babel/helper-compilation-targets@^7.19.3": - "version" "7.19.3" + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" + integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== dependencies: - "@babel/compat-data" "^7.19.3" + "@babel/compat-data" "^7.20.0" "@babel/helper-validator-option" "^7.18.6" "browserslist" "^4.21.3" "semver" "^6.3.0" @@ -88,31 +96,31 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.19.0": - "integrity" "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz" - "version" "7.19.0" +"@babel/helper-module-transforms@^7.19.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" + integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" + "@babel/helper-simple-access" "^7.19.4" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/traverse" "^7.19.6" + "@babel/types" "^7.19.4" "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0": "integrity" "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==" "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz" "version" "7.19.0" -"@babel/helper-simple-access@^7.18.6": - "integrity" "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==" - "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz" - "version" "7.18.6" +"@babel/helper-simple-access@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" + integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.19.4" "@babel/helper-split-export-declaration@^7.18.6": "integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==" @@ -121,29 +129,29 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-string-parser@^7.18.10": - "integrity" "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" - "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz" - "version" "7.18.10" +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - "integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" - "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" - "version" "7.19.1" + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== "@babel/helper-validator-option@^7.18.6": "integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz" "version" "7.18.6" -"@babel/helpers@^7.19.0": - "integrity" "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==" - "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz" - "version" "7.19.0" +"@babel/helpers@^7.19.4": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.0.tgz#27c8ffa8cc32a2ed3762fba48886e7654dbcf77f" + integrity sha512-aGMjYraN0zosCEthoGLdqot1oRsmxVTQRHadsUPz5QM44Zej2PYRz7XiDE7GqnkZnNtLbOuxqoZw42vkU7+XEQ== dependencies: "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/traverse" "^7.20.0" + "@babel/types" "^7.20.0" "@babel/highlight@^7.18.6": "integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==" @@ -154,8 +162,10 @@ "chalk" "^2.0.0" "js-tokens" "^4.0.0" -"@babel/parser@^7.18.10", "@babel/parser@^7.19.3": - "version" "7.19.3" +"@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" + integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== "@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6": "integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==" @@ -178,17 +188,17 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-react-jsx-source@^7.18.6": - "integrity" "sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz" - "version" "7.18.6" +"@babel/plugin-transform-react-jsx-source@^7.19.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz#88578ae8331e5887e8ce28e4c9dc83fb29da0b86" + integrity sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-react-jsx@^7.18.10", "@babel/plugin-transform-react-jsx@^7.18.6": - "integrity" "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz" - "version" "7.19.0" +"@babel/plugin-transform-react-jsx@^7.18.6", "@babel/plugin-transform-react-jsx@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9" + integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-module-imports" "^7.18.6" @@ -197,11 +207,11 @@ "@babel/types" "^7.19.0" "@babel/runtime@^7.0.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.18.3", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - "integrity" "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==" - "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz" - "version" "7.19.0" + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.0.tgz#824a9ef325ffde6f78056059db3168c08785e24a" + integrity sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q== dependencies: - "regenerator-runtime" "^0.13.4" + regenerator-runtime "^0.13.10" "@babel/template@^7.18.10": "integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==" @@ -212,796 +222,810 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" -"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.3": - "version" "7.19.3" +"@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" + integrity sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ== dependencies: "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.3" + "@babel/generator" "^7.20.0" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-hoist-variables" "^7.18.6" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.19.3" - "@babel/types" "^7.19.3" - "debug" "^4.1.0" - "globals" "^11.1.0" + "@babel/parser" "^7.20.0" + "@babel/types" "^7.20.0" + debug "^4.1.0" + globals "^11.1.0" -"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.3": - "version" "7.19.3" +"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" + integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg== dependencies: - "@babel/helper-string-parser" "^7.18.10" + "@babel/helper-string-parser" "^7.19.4" "@babel/helper-validator-identifier" "^7.19.1" - "to-fast-properties" "^2.0.0" + to-fast-properties "^2.0.0" -"@chakra-ui/accordion@2.0.12": - "integrity" "sha512-O3qq8mILo1QODjCGr2xwxC5LNFakBoMzTjEgpvpIMynxWc/1RKfGuFLis3IDfpHIicXmBTK6sNiZXewmna88CQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.0.12.tgz" - "version" "2.0.12" +"@chakra-ui/accordion@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/accordion/-/accordion-2.1.2.tgz#f9d384b80f68a92689fa7ad4e43bd8944e6945c6" + integrity sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg== dependencies: - "@chakra-ui/descendant" "3.0.9" - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/transition" "2.0.9" + "@chakra-ui/descendant" "3.0.10" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/transition" "2.0.11" -"@chakra-ui/alert@2.0.9": - "integrity" "sha512-hFRIh6ZzQJ0sAESRym15mW/mcZE/yu4z6lFtdToBhpfSlhZLuE7gDdOTxqGkg417hY//48NiNXOCoQ2dUUuHKw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/alert@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/alert/-/alert-2.0.11.tgz#d792b0684ae7810befa3874af5bdd4aa115513a2" + integrity sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ== dependencies: - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/spinner" "2.0.9" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/spinner" "2.0.10" -"@chakra-ui/anatomy@2.0.6": - "integrity" "sha512-Vgop2FFdhVtX7BydjZdJWZAWy+DdXBU1IMaBppz6COaH+/7OXxoI2ec2bs17ehJyBO0M+ud3OLj5UCFQ79YsoQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.6.tgz" - "version" "2.0.6" +"@chakra-ui/anatomy@2.0.7": + version "2.0.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/anatomy/-/anatomy-2.0.7.tgz#33e60c7c4d6e5f949f6f8308249dc571f84ead1e" + integrity sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg== -"@chakra-ui/avatar@2.1.0": - "integrity" "sha512-SRQeH6NNvIBgUc4OsO14ypvcn8I66ndw7r4piIkm+R2zqbYnrzpp1d2zNPNHkChc4xQY71/GenenYO5Fhsi2DA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.1.0.tgz" - "version" "2.1.0" +"@chakra-ui/avatar@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/avatar/-/avatar-2.2.0.tgz#58b5e650f7e4b3ab229f50e6a102c54b6eb4b23a" + integrity sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug== dependencies: - "@chakra-ui/image" "2.0.10" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/image" "2.0.11" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/breadcrumb@2.0.9": - "integrity" "sha512-cc3WbxrJNRUph4v45qCdcIKJI0xECeV9VikQNIactBB+iexN4d+5P66xZABAkD8wWGmyH5KuSZcd9sFYNmC13w==" - "resolved" "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/breadcrumb@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/breadcrumb/-/breadcrumb-2.1.0.tgz#530ded99f931cfcb9f4bd4d951bc82b0a4e102ac" + integrity sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ== dependencies: - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/breakpoint-utils@2.0.3": - "integrity" "sha512-smi41ZtaiPw4mXaCgicyAh5M45Drt20wypThP+qQUT2CQ51UFZhYlItRA2lCXKQ9QB83POcHPC/oAwIsNOAfTg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/breakpoint-utils@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.4.tgz#6231eff8b20f4e3cbb4eb7c86d05c927679d905b" + integrity sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg== -"@chakra-ui/button@2.0.9": - "integrity" "sha512-4BuDBiBlChHW1rQ9iod9MKs87AY3IyvZQwjV3DZTU4IG0KcDDfLQf++jj4dkg9Ttu+pIWhwF42pzA40JxW1oNg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/button@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/button/-/button-2.0.11.tgz#98e0aa1e35ea7e193bb50f9a4b5d0ea23202ace8" + integrity sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw== dependencies: - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/spinner" "2.0.9" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/spinner" "2.0.10" -"@chakra-ui/checkbox@2.1.8": - "integrity" "sha512-HhRs3nwTFoIE/UpX4N2AZxxW39Xm/Vw01HjwP/59X60kdKs3RBXlm52cODkfUDfveyT9o5ezLhU/jRf0qA909Q==" - "resolved" "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.1.8.tgz" - "version" "2.1.8" +"@chakra-ui/checkbox@2.2.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/checkbox/-/checkbox-2.2.2.tgz#494d7090ac11a0a43d05b7849aff6085f7a91045" + integrity sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA== dependencies: - "@chakra-ui/form-control" "2.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/form-control" "2.0.11" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-callback-ref" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" - "@chakra-ui/react-use-update-effect" "2.0.3" - "@chakra-ui/visually-hidden" "2.0.9" + "@chakra-ui/react-use-callback-ref" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" + "@chakra-ui/react-use-update-effect" "2.0.4" + "@chakra-ui/visually-hidden" "2.0.11" "@zag-js/focus-visible" "0.1.0" -"@chakra-ui/clickable@2.0.9": - "integrity" "sha512-tGXYM6M6I954fif98QkNu5M76oBZmksCTj2mILOan9/BSimpFpu06aPGX3ZIkNsz300nIObn0FdtMvKpIEQueA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/clickable@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/clickable/-/clickable-2.0.10.tgz#e89b7b3eaf9364753f6205e36fd5128b26a617d8" + integrity sha512-G6JdR6yAMlXpfjOJ70W2FL7aUwNuomiMFtkneeTpk7Q42bJ5iGHfYlbZEx5nJd8iB+UluXVM4xlhMv2MyytjGw== dependencies: - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/close-button@2.0.9": - "integrity" "sha512-0RI/zLR+/mycGbYCCwDAc9hAVG7IIVmdikmo1ET7+rYip4TN94aWR0hA4dYtWqqghG1oW/pYQ9Yja6fEY90V5w==" - "resolved" "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/close-button@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/close-button/-/close-button-2.0.11.tgz#8b0679da42738229014d3807885d05fac0fdf448" + integrity sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw== dependencies: - "@chakra-ui/icon" "3.0.9" + "@chakra-ui/icon" "3.0.11" -"@chakra-ui/color-mode@2.1.7": - "integrity" "sha512-GAoKJzVRQeuEfCa2i0BZdMwxuOoaGknU3+5wgvLuaSpwlov4OyqpjKMRdSdpjr4IFiqqHK47dsr3H4LQsbO+9w==" - "resolved" "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.7.tgz" - "version" "2.1.7" +"@chakra-ui/color-mode@2.1.9": + version "2.1.9" + resolved "https://registry.yarnpkg.com/@chakra-ui/color-mode/-/color-mode-2.1.9.tgz#d3a6f9ba9eee15d9e14cc96484e25d44cef1dbc1" + integrity sha512-0kx0I+AQon8oS23/X+qMtnhsv/1BUulyJvU56p3Uh8CRaBfgJ7Ly9CerShoUL+5kadu6hN1M9oty4cugaCwv2w== dependencies: - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" -"@chakra-ui/control-box@2.0.9": - "integrity" "sha512-/viS9OBah1wCLNZbgfwkoQOnVRUYgp8Gypjqk9QNQwnNdFUTEgWc1RWN+1RYO85esJzHLkA2hZFIrYu1TZeZ6g==" - "resolved" "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/control-box@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/control-box/-/control-box-2.0.10.tgz#e8a849c9f0fa085da78ee15dda7e13e1734b983d" + integrity sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng== -"@chakra-ui/counter@2.0.9": - "integrity" "sha512-LuqtpyxCOZM19gAmV0vtVeaFd9ccPmEjoGJQ0NoO8CFheltgLC/7m/8YpDbgWiG4+BAkTUfIG+5nLg5hwvvQxw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/counter@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/counter/-/counter-2.0.10.tgz#861f00db021235892dfe0407e739a259f1c233b2" + integrity sha512-MZK8UKUZp4nFMd+GlV/cq0NIARS7UdlubTuCx+wockw9j2JI5OHzsyK0XiWuJiq5psegSTzpbtT99QfAUm3Yiw== dependencies: - "@chakra-ui/number-utils" "2.0.3" - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/number-utils" "2.0.4" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/css-reset@2.0.7": - "integrity" "sha512-ztGdFQ6U1hX2k6a3HZ8D3A/dZWVxlGe2F5mvUrRU554mFWBYmsq0ydZ7UBEPlykv9NoCz4nN8VCkIxcKJ3p29Q==" - "resolved" "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.7.tgz" - "version" "2.0.7" +"@chakra-ui/css-reset@2.0.8": + version "2.0.8" + resolved "https://registry.yarnpkg.com/@chakra-ui/css-reset/-/css-reset-2.0.8.tgz#093ce6b166b37f2dd14e63f246635c463a59c106" + integrity sha512-VuDD1rk1pFc+dItk4yUcstyoC9D2B35hatHDBtlPMqTczFAzpbgVJJYgEHANatXGfulM5SdckmYEIJ3Tac1Rtg== -"@chakra-ui/descendant@3.0.9": - "integrity" "sha512-30E5yMWvxgBx43PoI/67r9h9OhbpDfLb/MLOCjtEwebSbD0V5+fmnmCoUELScQbhozQVjA9t195X6UP0VQWj8w==" - "resolved" "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.9.tgz" - "version" "3.0.9" +"@chakra-ui/descendant@3.0.10": + version "3.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/descendant/-/descendant-3.0.10.tgz#e54c95270896c451f61b57d31719ee042f4e1827" + integrity sha512-MHH0Qdm0fGllGP2xgx4WOycmrpctyyEdGw6zxcfs2VqZNlrwmjG3Yb9eVY+Q7UmEv5rwAq6qRn7BhQxgSPn3Cg== dependencies: - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/dom-utils@2.0.1": - "integrity" "sha512-sbob9AHQq1+KIQ3XKslafislwtC8pYcpwM0S1SLzgyZumHRwhDimKwdi4MtRQfOCenub0E3diRjp4RpGRL0JuQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/dom-utils@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/dom-utils/-/dom-utils-2.0.3.tgz#8a5498b107d3a42662f3502f7b8965cb73bf6a33" + integrity sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA== -"@chakra-ui/editable@2.0.9": - "integrity" "sha512-s5F3UMR09s6ga3eVhw0UBMGmegtxg6jCp29VLqaEwP5BuWIEOjcJz358gTlnFr3dhvb31e3rcr+B1XiYv4wxqg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/editable@2.0.13": + version "2.0.13" + resolved "https://registry.yarnpkg.com/@chakra-ui/editable/-/editable-2.0.13.tgz#4e6ff480956ae2dcacf4ba2a15019336486bd613" + integrity sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw== dependencies: - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-focus-on-pointer-down" "2.0.1" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" - "@chakra-ui/react-use-update-effect" "2.0.3" - "@chakra-ui/shared-utils" "2.0.1" + "@chakra-ui/react-use-callback-ref" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-focus-on-pointer-down" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" + "@chakra-ui/react-use-update-effect" "2.0.4" + "@chakra-ui/shared-utils" "2.0.2" -"@chakra-ui/event-utils@2.0.4": - "integrity" "sha512-J2YgAM5Dw9hMkwfMsWhsiAG848GfTMxNclUIUcgV9RQhLEs0eTFhelzNiKVOMA3vBxlT6lOARuRun/ESiFZgGg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.4.tgz" - "version" "2.0.4" +"@chakra-ui/event-utils@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/event-utils/-/event-utils-2.0.5.tgz#23de21e319d1a70863953402d64cb4b0e6ce322f" + integrity sha512-VXoOAIsM0PFKDlhm+EZxkWlUXd5UFTb/LTux3y3A+S9G5fDxLRvpiLWByPUgTFTCDFcgTCF+YnQtdWJB4DLyxg== -"@chakra-ui/focus-lock@2.0.10": - "integrity" "sha512-LeRZYzwfJp0eq84oO8e1pC2qC8v8fJw/P4nYDrCDjuJU753DV6nVjp5MKMRqbkp+6IAElPc+ojy/sp2a9GCocw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/focus-lock@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/focus-lock/-/focus-lock-2.0.12.tgz#11c0301a326249efe269c2dd0f54b11a67a04321" + integrity sha512-NvIP59A11ZNbxXZ3qwxSiQ5npjABkpSbTIjK0uZ9bZm5LMfepRnuuA19VsVlq31/BYV9nHFAy6xzIuG+Qf9xMA== dependencies: - "@chakra-ui/dom-utils" "2.0.1" - "react-focus-lock" "^2.9.1" + "@chakra-ui/dom-utils" "2.0.3" + react-focus-lock "^2.9.1" -"@chakra-ui/form-control@2.0.9": - "integrity" "sha512-P8Tr45z/XSAa1m6uAma0eKf1h7Ltg2sLj2jK5YhaXJER9VUUY18iGe96D4JrAXlgEWDhTyWMb63nB+eYO1tKtw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/form-control@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/form-control/-/form-control-2.0.11.tgz#fbfdddb02d1b5d2c67ffdc721c434ff16693e4bd" + integrity sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow== dependencies: - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/hooks@2.0.9": - "integrity" "sha512-0JRgEPtsBaXr9nQW1xEKlWGA7WwFbLNqac7fQXp9zQvoHOWTfNJkK/NJaVBvyFPgfTLxy37WKHooVSwNG/Lwmg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/hooks@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-2.1.0.tgz#a8df3692e407c2fed8cc551c8ce7f3fcd0ea9864" + integrity sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA== dependencies: - "@chakra-ui/react-utils" "2.0.6" - "@chakra-ui/utils" "2.0.9" - "compute-scroll-into-view" "1.0.14" - "copy-to-clipboard" "3.3.1" + "@chakra-ui/react-utils" "2.0.8" + "@chakra-ui/utils" "2.0.11" + compute-scroll-into-view "1.0.14" + copy-to-clipboard "3.3.1" -"@chakra-ui/icon@3.0.10": - "integrity" "sha512-utO569d9bptEraJrEhuImfNzQ8v+a8PsQh8kTsodCzg8B16R3t5TTuoqeJqS6Nq16Vq6w87QbX3/4A73CNK5fw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.10.tgz" - "version" "3.0.10" +"@chakra-ui/icon@3.0.11": + version "3.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/icon/-/icon-3.0.11.tgz#a51dda24bed2f2ed77b4136ada8f22d3249c9870" + integrity sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw== dependencies: - "@chakra-ui/shared-utils" "2.0.1" - -"@chakra-ui/icon@3.0.9": - "integrity" "sha512-P2Pwm/za6m1W1oqL2kGHH6XrrymsBjqYAFwOW2lB5Q6mI1e+RYe/iMxDoPSLHMYhqdfH7vyib/ffE3Vv3a5oTA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.9.tgz" - "version" "3.0.9" - dependencies: - "@chakra-ui/shared-utils" "2.0.1" + "@chakra-ui/shared-utils" "2.0.2" "@chakra-ui/icons@^2.0.10": - "integrity" "sha512-hxMspvysOay2NsJyadM611F/Y4vVzJU/YkXTxsyBjm6v/DbENhpVmPnUf+kwwyl7dINNb9iOF+kuGxnuIEO1Tw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.10.tgz" - "version" "2.0.10" + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/icons/-/icons-2.0.11.tgz#3faf53c499c7c61c65b6e5ff4b0933f48b9ba416" + integrity sha512-WjxrFMt9hHpuZlnBh4fhtGOkIVlwYwHNmwq4sJGxYWlg8UnEhVJMoOojheJDy/d3Gp9+ApetlK3vt8fV/rZamg== dependencies: - "@chakra-ui/icon" "3.0.10" + "@chakra-ui/icon" "3.0.11" -"@chakra-ui/image@2.0.10": - "integrity" "sha512-Atc1bdog4V5xv7IbpF2F2UkKWfgG/TD74cIac09JuSpQcYyh7lrJ7iVvhTkeP+LDdCs+QCD7SnTUM4Y0ZlaHbA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/image@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/image/-/image-2.0.11.tgz#eb880ecd2fce47f22ef50bbbba66cbb027c0304c" + integrity sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA== dependencies: - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" -"@chakra-ui/input@2.0.9": - "integrity" "sha512-6MKydxTyF7JV7PtQHircQ5HBTd6Ik9Vn7p8fCLeAieT0TK8UQTxMWZVPminS7TRWMutrq8W99DcQOBlMz0cKrw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/input@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/input/-/input-2.0.12.tgz#332db53a831daea4d76e1de6d3b4462fd50ae167" + integrity sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ== dependencies: - "@chakra-ui/form-control" "2.0.9" - "@chakra-ui/object-utils" "2.0.3" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/shared-utils" "2.0.1" + "@chakra-ui/form-control" "2.0.11" + "@chakra-ui/object-utils" "2.0.4" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/shared-utils" "2.0.2" -"@chakra-ui/layout@2.1.6": - "integrity" "sha512-QDNaVu44UI46c+YlSF1KrzJkiwua0UtRXNTnR3jBE1uzcuqRow7xgr3E60dLphY2cPFqAljfQZUNlP3sgvCLww==" - "resolved" "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.6.tgz" - "version" "2.1.6" +"@chakra-ui/layout@2.1.9": + version "2.1.9" + resolved "https://registry.yarnpkg.com/@chakra-ui/layout/-/layout-2.1.9.tgz#3e9cc7b5915e033907367e40fc97d218efa5f777" + integrity sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw== dependencies: - "@chakra-ui/breakpoint-utils" "2.0.3" - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/object-utils" "2.0.3" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/shared-utils" "2.0.1" + "@chakra-ui/breakpoint-utils" "2.0.4" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/object-utils" "2.0.4" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/shared-utils" "2.0.2" -"@chakra-ui/lazy-utils@2.0.1": - "integrity" "sha512-986YjYq+hEzHDLZiqYlYbdqfiKdC3h2g896Eoe5K2UXtAVxqZI3UOnMH781X6N1R7rGJWquskzG681qFigW/BA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/lazy-utils@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/lazy-utils/-/lazy-utils-2.0.2.tgz#d85f9afc60c2434ba76376fd4b23a7a0a1341e14" + integrity sha512-MTxutBJZvqNNqrrS0722cI7qrnGu0yUQpIebmTxYwI+F3cOnPEKf5Ni+hrA8hKcw4XJhSY4npAPPYu1zJbOV4w== -"@chakra-ui/live-region@2.0.9": - "integrity" "sha512-ilbo/C5wcUoSHDU5owFPQP3KsabPYGzDEbwV+Z76BlyNdFN2PD0j13RGEH+sBNNZ3HzLyyuuc1YmkVcJi7ycQg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/live-region@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/live-region/-/live-region-2.0.10.tgz#d33a784c85feed7ba96e2579553ca1d20c965171" + integrity sha512-eQ2ZIreR/plzi/KGszDYTi1TvIyGEBcPiWP52BQOS7xwpzb1vsoR1FgFAIELxAGJvKnMUs+9qVogfyRBX8PdOg== -"@chakra-ui/media-query@3.2.5": - "integrity" "sha512-V+Dngi/r7u/uj7JhsZerM1RI597Oo4wED2ojNfclnnEVb/IoqktiuFy6RQgbo3HmE7M/E5B1i4yYzt7tQJhXlg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.5.tgz" - "version" "3.2.5" +"@chakra-ui/media-query@3.2.7": + version "3.2.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/media-query/-/media-query-3.2.7.tgz#ece5b2181136145305bf5e6ec82c696ef1d59a77" + integrity sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw== dependencies: - "@chakra-ui/breakpoint-utils" "2.0.3" - "@chakra-ui/react-env" "2.0.9" + "@chakra-ui/breakpoint-utils" "2.0.4" + "@chakra-ui/react-env" "2.0.10" -"@chakra-ui/menu@2.0.13": - "integrity" "sha512-XZYoq9k/txAELUgn5OokyxfXEpVZwBueVYXiT9ji0XvMuzXVxeHd40klJEkiJUctNsOahZf10t5yxlT4B00pwA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.0.13.tgz" - "version" "2.0.13" +"@chakra-ui/menu@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/menu/-/menu-2.1.2.tgz#bbe39e1efdb408ba8e6616e0ec290417474f9454" + integrity sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ== dependencies: - "@chakra-ui/clickable" "2.0.9" - "@chakra-ui/descendant" "3.0.9" - "@chakra-ui/lazy-utils" "2.0.1" - "@chakra-ui/popper" "3.0.7" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-animation-state" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-disclosure" "2.0.3" - "@chakra-ui/react-use-focus-effect" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-outside-click" "2.0.3" - "@chakra-ui/react-use-update-effect" "2.0.3" - "@chakra-ui/transition" "2.0.9" + "@chakra-ui/clickable" "2.0.10" + "@chakra-ui/descendant" "3.0.10" + "@chakra-ui/lazy-utils" "2.0.2" + "@chakra-ui/popper" "3.0.8" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-animation-state" "2.0.5" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-disclosure" "2.0.5" + "@chakra-ui/react-use-focus-effect" "2.0.5" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-outside-click" "2.0.4" + "@chakra-ui/react-use-update-effect" "2.0.4" + "@chakra-ui/transition" "2.0.11" -"@chakra-ui/modal@2.1.7": - "integrity" "sha512-A+CbvhQYpmLH3SrqJ1wJysUCGm0mNoSDxRjP4wX98j56nMTDAsMYlzttpuLmKaSzvbJ7uEQDLtQV8lZjB0gUuw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.1.7.tgz" - "version" "2.1.7" +"@chakra-ui/modal@2.2.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/modal/-/modal-2.2.2.tgz#bf3ef2673a8641a5c851faceb7811e0c0f323517" + integrity sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw== dependencies: - "@chakra-ui/close-button" "2.0.9" - "@chakra-ui/focus-lock" "2.0.10" - "@chakra-ui/portal" "2.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/close-button" "2.0.11" + "@chakra-ui/focus-lock" "2.0.12" + "@chakra-ui/portal" "2.0.10" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/transition" "2.0.9" - "aria-hidden" "^1.1.1" - "react-remove-scroll" "^2.5.4" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/transition" "2.0.11" + aria-hidden "^1.1.1" + react-remove-scroll "^2.5.4" -"@chakra-ui/number-input@2.0.9": - "integrity" "sha512-RsDzoNvSBZMgyXjN543AtQ2v99U1p/0xnGWZy4NCkgCDWMBn3kIXqSzQq5CB9Ot0MD8nnKF5VYdVdXWguXExEQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/number-input@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/number-input/-/number-input-2.0.12.tgz#90a8408e6abb2d021793888ef2119d01761d7614" + integrity sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA== dependencies: - "@chakra-ui/counter" "2.0.9" - "@chakra-ui/form-control" "2.0.9" - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/counter" "2.0.10" + "@chakra-ui/form-control" "2.0.11" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-callback-ref" "2.0.3" - "@chakra-ui/react-use-event-listener" "2.0.3" - "@chakra-ui/react-use-interval" "2.0.1" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" - "@chakra-ui/react-use-update-effect" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" + "@chakra-ui/react-use-event-listener" "2.0.4" + "@chakra-ui/react-use-interval" "2.0.2" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" + "@chakra-ui/react-use-update-effect" "2.0.4" -"@chakra-ui/number-utils@2.0.3": - "integrity" "sha512-oN03kYAUCCp/FNtpLr5mh+cvd/sRTzZWTBoFydmxc955psXq/X950gzs6o5kzoeFCpgXaxMmHAXQm3ReEK2NsQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/number-utils@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/number-utils/-/number-utils-2.0.4.tgz#0331be05956f2c03125c073d35655e261e267cd4" + integrity sha512-MdYd29GboBoKaXY9jhbY0Wl+0NxG1t/fa32ZSIbU6VrfMsZuAMl4NEJsz7Xvhy50fummLdKn5J6HFS7o5iyIgw== -"@chakra-ui/object-utils@2.0.3": - "integrity" "sha512-36prckrqTynVD/JTzyCr8OCWVOrMs/awZo3djVbIiNxRIcJ5iEwUVy26h3MWN4ENSopipBtxNfAwPNTLU5Si/g==" - "resolved" "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/object-utils@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/object-utils/-/object-utils-2.0.4.tgz#d890ce285103a5e9b993f016a4fb38307aa55ac0" + integrity sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ== -"@chakra-ui/pin-input@2.0.12": - "integrity" "sha512-gaMRp5AFW+qAJCUj93V1WluuYBBZ/5A3Wy5q796g8Auvw7vufgkVtl6EBznwvtynZN8gJwbRFpMtJxQyXCkUiw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.12.tgz" - "version" "2.0.12" +"@chakra-ui/pin-input@2.0.15": + version "2.0.15" + resolved "https://registry.yarnpkg.com/@chakra-ui/pin-input/-/pin-input-2.0.15.tgz#08e65c5e8468cef6192634a53859169b51c2c4a7" + integrity sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw== dependencies: - "@chakra-ui/descendant" "3.0.9" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/descendant" "3.0.10" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/popover@2.0.9": - "integrity" "sha512-+7tH4RVuheFQOyAZ5KT9x+qsLvz7rGuKaHtb0427+5bhUzLaSAghtr/afzOKHDwUVBwF2tTUNanR23ipW1fXDg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/popover@2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/popover/-/popover-2.1.1.tgz#1b5e05e334ba5f9bce4bc5bcabfb92563393fc84" + integrity sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA== dependencies: - "@chakra-ui/close-button" "2.0.9" - "@chakra-ui/hooks" "2.0.9" - "@chakra-ui/lazy-utils" "2.0.1" - "@chakra-ui/popper" "3.0.7" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/close-button" "2.0.11" + "@chakra-ui/lazy-utils" "2.0.2" + "@chakra-ui/popper" "3.0.8" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-disclosure" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-animation-state" "2.0.5" + "@chakra-ui/react-use-disclosure" "2.0.5" + "@chakra-ui/react-use-focus-effect" "2.0.5" + "@chakra-ui/react-use-focus-on-pointer-down" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/popper@3.0.7": - "integrity" "sha512-xLYhuNsk1gOjymtek1ZdZlG21hmg2a7Iu2KsD9Hi7+aUxc2K5/XxX+/vyjjz8u4s0gmj83pTqnauQRynb/TCXA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.7.tgz" - "version" "3.0.7" +"@chakra-ui/popper@3.0.8": + version "3.0.8" + resolved "https://registry.yarnpkg.com/@chakra-ui/popper/-/popper-3.0.8.tgz#89b6984aee405316974dbb70ba451f85832bf44e" + integrity sha512-246eUwuCRsLpTPxn5T8D8T9/6ODqmmz6pRRJAjGnLlUB0gNHgjisBn0UDBic5Gbxcg0sqKvxOMY3uurbW5lXTA== dependencies: "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" "@popperjs/core" "^2.9.3" -"@chakra-ui/portal@2.0.9": - "integrity" "sha512-9e9S0MLbkpofPGlyYA12jNYSdndugy6ylPi5pC9nr3/VqG2Kn+8VcBChAeXW8K4ms7WFc74rNX1pBY/UVwr4qg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/portal@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/portal/-/portal-2.0.10.tgz#8ac21131cb0666a0bf6565468b3f7e799ef3bc8d" + integrity sha512-VRYvVAggIuqIZ3IQ6XZ1b5ujjjOUgPk9PPdc9jssUngZa7RG+5NXNhgoM8a5TsXv6aPEolBOlDNWuxzRQ4RSSg== dependencies: - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" -"@chakra-ui/progress@2.0.10": - "integrity" "sha512-my0Pi3NG1PYhlvCav4fybg3gL5HBNe+7lO4PVdri4QHEyfJlrDeBWID+1GgqlpUWdTj3sOf7ysku+FEgkeOeSA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/progress@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/progress/-/progress-2.0.12.tgz#7ce57fe2822d1741c26e82960ca02c667a265a05" + integrity sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg== dependencies: - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/provider@2.0.16": - "integrity" "sha512-4t/PmjJ7WXPPaPfoYgw8F1/rVtorZuvknugHfOZcOtAPGQmOPotSv28qjKpu/mCvc1GMGV0swMsvCeInYz7g0w==" - "resolved" "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.16.tgz" - "version" "2.0.16" +"@chakra-ui/provider@2.0.20": + version "2.0.20" + resolved "https://registry.yarnpkg.com/@chakra-ui/provider/-/provider-2.0.20.tgz#2f3f73f6142f4d2b2a5a8ad6dbd777a3fc4390ce" + integrity sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ== dependencies: - "@chakra-ui/css-reset" "2.0.7" - "@chakra-ui/portal" "2.0.9" - "@chakra-ui/react-env" "2.0.9" - "@chakra-ui/system" "2.2.9" - "@chakra-ui/utils" "2.0.9" + "@chakra-ui/css-reset" "2.0.8" + "@chakra-ui/portal" "2.0.10" + "@chakra-ui/react-env" "2.0.10" + "@chakra-ui/system" "2.3.0" + "@chakra-ui/utils" "2.0.11" -"@chakra-ui/radio@2.0.10": - "integrity" "sha512-LhAWsY22cmb+M/iyhFgkzf2+V9TJmAC77Cd+GbP3M3sxDSEUDtq08KOc3JjoYc3GzeZml3JL1yssbxh+liY3xA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/radio@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/radio/-/radio-2.0.12.tgz#d89eb463df0247a0e634cff1fb9ca755bcbab825" + integrity sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA== dependencies: - "@chakra-ui/form-control" "2.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/form-control" "2.0.11" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-merge-refs" "2.0.4" "@zag-js/focus-visible" "0.1.0" -"@chakra-ui/react-children-utils@2.0.1": - "integrity" "sha512-sEgpuh/vWSt2+W0F49EGYXXUyjmg0lbosjVg6qUKHv9sAyx5tbrOrZ6df/TaMUSAe9m3AUOMGqUIPLpxno0DjA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-children-utils@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-children-utils/-/react-children-utils-2.0.3.tgz#406b984c653befd6c99636fcefb55bd01d436a7d" + integrity sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg== -"@chakra-ui/react-context@2.0.3": - "integrity" "sha512-KmPq6sb1y05WsOUqXZtBBC4LsNKZIFrp2thTsLBwcuH7lkXZwPMHmJGKa9K980P+SWEgfH2s2PY2z+QrIuqWGg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-context@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-context/-/react-context-2.0.4.tgz#1b6ab260d44d9073c95b975b7d1643f011e65e02" + integrity sha512-eBITFkf7fLSiMZrSdhweK4fYr41WUNMEeIEOP2dCWolE7WgKxNYaYleC+iRGY0GeXkFM2KYywUtixjJe29NuVA== -"@chakra-ui/react-env@2.0.9": - "integrity" "sha512-4AJHNUGBR19hzVyOILYpZZgq8jGrpEcbhvR++CppbvPH7vfPZpoz6L/cBtHxS07YwDtUeBL8yCNiLlTxctV//Q==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/react-env@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-env/-/react-env-2.0.10.tgz#2eaa4ba64a14ecd2d279c32d5edfef7a6b5de3e8" + integrity sha512-3Yab5EbFcCGYzEsoijy4eA3354Z/JoXyk9chYIuW7Uwd+K6g/R8C0mUSAHeTmfp6Fix9kzDgerO5MWNM87b8cA== "@chakra-ui/react-types@2.0.3": "integrity" "sha512-1mJYOQldFTALE0Wr3j6tk/MYvgQIp6CKkJulNzZrI8QN+ox/bJOh8OVP4vhwqvfigdLTui0g0k8M9h+j2ub/Mw==" "resolved" "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.3.tgz" "version" "2.0.3" -"@chakra-ui/react-use-animation-state@2.0.3": - "integrity" "sha512-sjGgzMMmxurwKDSFhDLpLNn3SWUERI5iAZOOa0pYnyOLGVXMowgIjK6jpZxre1vc3A+unjJk5P4qeiyY+C4uwQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-animation-state@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.5.tgz#f022baf0103c35aa494227b041422e7d2401b0d4" + integrity sha512-8gZIqZpMS5yTGlC+IqYoSrV13joiAYoeI0YR2t68WuDagcZ459OrjE57+gF04NLxfdV7eUgwqnpuv7IOLbJX/A== dependencies: - "@chakra-ui/dom-utils" "2.0.1" - "@chakra-ui/react-use-event-listener" "2.0.3" + "@chakra-ui/dom-utils" "2.0.3" + "@chakra-ui/react-use-event-listener" "2.0.4" -"@chakra-ui/react-use-callback-ref@2.0.3": - "integrity" "sha512-kdYlhgnQKWWLNwl3WSv/Oq3+mlnu2p3y4Xc1AqKVHVcBOdQE9lpW3d7ZaOoK2aIXXWq1rocscOiXBUtM0Vqd2A==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-callback-ref@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.4.tgz#5099ef1df4413af42e434945f541de99394ec96f" + integrity sha512-he7EQfwMA4mwiDDKvX7cHIJaboCqf7UD3KYHGUcIjsF4dSc2Y8X5Ze4w+hmVZoJWIe4DWUzb3ili2SUm8eTgPg== -"@chakra-ui/react-use-controllable-state@2.0.3": - "integrity" "sha512-su8efwCWWnY2LQUU6PEnYwSGJX8kvPSO2KyUKuymx8q3fNWuyhzAZriG/TbeeCxESLp70+wuniUlSGRa4vxylQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-controllable-state@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.5.tgz#5ef9f600ae134a2a37fe080fd6231bbed83544bb" + integrity sha512-JrZZpMX24CUyfDuyqDczw9Z9IMvjH8ujETHK0Zu4M0SIsX/q4EqOwwngUFL03I2gx/O38HfSdeX8hMu4zbTAGA== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-disclosure@2.0.3": - "integrity" "sha512-3IdrzvQZcgjqSx5wTVffInOyhMU+d3ZlIE26JmqejMyN/B+qAs932iKfm0A1mTMPTz38ZnNtuaKazmzyfR1ePg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-disclosure@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.5.tgz#bb52340f0e7d614cc95819bd21cffd050783f96c" + integrity sha512-kPLB9oxImASRhAbKfvfc03/lbAJbsXndEVRzd+nvvL+QZm2RRfnel3k6OIkWvGFOXXYOPE2+slLe8ZPwbTGg9g== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-event-listener@2.0.3": - "integrity" "sha512-m3ZdJjo3QQ1HcQGnehlBTgHaCVewz5fwIRTXVzbZTraVJr4k589Zf87eagW57tT4dyv656lSmdhaFGZ8p5Snww==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-event-listener@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.4.tgz#3f893def57a7b10db6c355740dd1e82cd3216259" + integrity sha512-VqmalfKWMO8D21XuZO19WUtcP5xhbHXKzkggApTChZUN02UC5TC4pe0pYbDygoeUuNBhY+9lJKHeS08vYsljRg== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-focus-effect@2.0.3": - "integrity" "sha512-N0rho7P+rH5cn13dbS8GUOye+6RYXAmXhmlS+WW/3lWidGH3HAbMoOVf56UiuSnE1+2or8/U7qRshUryj2H1nA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-focus-effect@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.5.tgz#b554277c38e84468b019e08a73579e9700e1003a" + integrity sha512-sbe1QnsXXfjukM+laxbKnT0UnMpHe/7kTzEPG/BYM6/ZDUUmrC1Nz+8l+3H/52iWIaruikDBdif/Xd37Yvu3Kg== dependencies: - "@chakra-ui/dom-utils" "2.0.1" - "@chakra-ui/react-use-event-listener" "2.0.3" - "@chakra-ui/react-use-update-effect" "2.0.3" + "@chakra-ui/dom-utils" "2.0.3" + "@chakra-ui/react-use-event-listener" "2.0.4" + "@chakra-ui/react-use-update-effect" "2.0.4" -"@chakra-ui/react-use-focus-on-pointer-down@2.0.1": - "integrity" "sha512-f0qL2iWvajUo+0jwDZyJpUMJ6J6BH3WjDZE2Rp6cns4pgI6uYuv2gj+FqQ5jnoYdXkeER6lBI56a+aIW/1RYiA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-use-focus-on-pointer-down@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.3.tgz#8b605063c9e707a18b021fbcaed8919c8660d1ed" + integrity sha512-8cKmpv26JnblexNaekWxEDI7M+MZnJcp1PJUz6lByjfQ1m4YjFr1cdbdhG4moaqzzYs7vTmO/qL8KVq8ZLUwyQ== dependencies: - "@chakra-ui/react-use-event-listener" "2.0.3" + "@chakra-ui/react-use-event-listener" "2.0.4" -"@chakra-ui/react-use-interval@2.0.1": - "integrity" "sha512-6ZLzKA7Ga894UZcXO3bbGYThlhviiau1oxZ1UcJG5pUXNM9Up7O/4Joq31sL+KcpteCN45vd1etomilsv/blxw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-use-interval@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-interval/-/react-use-interval-2.0.2.tgz#6d1d5d5b5c5604ee2ea47f1e140e6eaf6e885df5" + integrity sha512-5U1c0pEB5n0Yri0E4RdFXWx2RVBZBBhD8Uu49dM33jkIguCbIPmZ+YgVry5DDzCHyz4RgDg4yZKOPK0PI8lEUg== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-merge-refs@2.0.3": - "integrity" "sha512-n35BmVbasy5Esa6qxznWmiV3NaRxGpqMpZH0n+X7aXt8VkGAJzRpAVjUmKCLNYyCLpqsQceCmAEK8a5SR6vxqw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-latest-ref@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.2.tgz#4895d3ae2dc93a660ed86aaec7021b729830d3d2" + integrity sha512-Ra/NMV+DSQ3n0AdKsyIqdgnFzls5UntabtIRfDXLrqmJ4tI0a1tDdop2qop0Ue87AcqD9P1KtQue4KPx7wCElw== -"@chakra-ui/react-use-outside-click@2.0.3": - "integrity" "sha512-r5OohM8lOuZTz6e3vVHvfm/3sEkd06nUPBNU+r3rWh1I7bR9z5Gia/BOQD6GE4jUTanDkHcH76Pf9qJ45kpibQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-merge-refs@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.4.tgz#c23f10fda1d3a6327a48708a8a7ad4b62ba918d3" + integrity sha512-aoWvtE5tDQNaLCiNUI6WV+MA2zVcCLR5mHSCISmowlTXyXOqOU5Fo9ZoUftzrmgCJpDu5x1jfUOivxuHUueb0g== + +"@chakra-ui/react-use-outside-click@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.4.tgz#977d873cfedec615c8e3acd48fca7b094b464b6e" + integrity sha512-uerJKS8dqg2kHs1xozA5vcCqW0UInuwrfCPb+rDWBTpu7aEqxABMw9W3e4gfOABrAjhKz2I0a/bu2i8zbVwdLw== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-pan-event@2.0.4": - "integrity" "sha512-lcEjngfCgIjE5qZeJiaDx+aJzZPLjbjUmbWumi8pIgWOnDL8Ffjh7AMKW4CddP5OgcRnDDb+7aqJbb55wraboA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.4.tgz" - "version" "2.0.4" +"@chakra-ui/react-use-pan-event@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.5.tgz#9269d4b798d1447e18b00ee0b28fa52c5c8efb26" + integrity sha512-nhE3b85++EEmBD2v6m46TLoA4LehSCZ349P8kvEjw/RC0K6XDOZndaBucIeAlnpEENSSUpczFfMSOLxSHdu0oA== dependencies: - "@chakra-ui/event-utils" "2.0.4" - "framesync" "5.3.0" + "@chakra-ui/event-utils" "2.0.5" + "@chakra-ui/react-use-latest-ref" "2.0.2" + framesync "5.3.0" -"@chakra-ui/react-use-previous@2.0.1": - "integrity" "sha512-ROi+/puVd8D1QaxBSOcGlJNqV2x02ppSgmXzZZJhM8ryFLZjY9ojV3HhamB2IJ/7SIb1rMSSV1GPedFw7YMCwA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-use-previous@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-previous/-/react-use-previous-2.0.2.tgz#1091ae8abc2082ab504e3742f8b1d75409ae7b27" + integrity sha512-ap/teLRPKopaHYD80fnf0TR/NpTWHJO5VdKg6sPyF1y5ediYLAzPT1G2OqMCj4QfJsYDctioT142URDYe0Nn7w== -"@chakra-ui/react-use-safe-layout-effect@2.0.1": - "integrity" "sha512-H+ZOjkPqv3KBPEoP68JKpQBNdLOI0mwzEiTT397UdvBVCCJ+1/ijWVUT+Ub/pYic60O6xUghy5ORaWqJHhnKDA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-use-safe-layout-effect@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.2.tgz#31088eeb4b2a6910251683ddb15fb855d6127adf" + integrity sha512-gl5HDq9RVeDJiT8udtpx12KRV8JPLJHDIUX8f/yZcKpXow0C7FFGg5Yy5I9397NQog5ZjKMuOg+AUq9TLJxsyQ== -"@chakra-ui/react-use-size@2.0.3": - "integrity" "sha512-hr4hKepPUmM2paXseSZiOTK2y+ZqnSzYNusDEB01f+cDerFjdN1jSfNJKXpiKF0+hNESXfOPQb3Zt0eDusRdoA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-size@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-size/-/react-use-size-2.0.4.tgz#3634782f8dab6aa2a37699188afa89251cbae8f3" + integrity sha512-W6rgTLuoSC4ovZtqYco8cG+yBadH3bhlg92T5lgpKDakSDr0mXcZdbGx6g0AOkgxXm0V1jWNGO1743wudtF7ew== dependencies: "@zag-js/element-size" "0.1.0" -"@chakra-ui/react-use-timeout@2.0.1": - "integrity" "sha512-zXh9RH+GciKr8hvaOADHOoHP72B7UZUEymA8CWCV4WEs/9s/PfQJH7X1bwvaj43CcOmfVQg4oODWqCYQM1lSsg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/react-use-timeout@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.2.tgz#f1378de0d5e01f7aee60d5b9ec3205e1fc7d2fc4" + integrity sha512-n6zb3OmxtDmRMxYkDgILqKh15aDOa8jNLHBlqHzmlL6mEGNKmMFPW9j/KvpAqSgKjUTDRnnXcpneprTMKy/yrw== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" -"@chakra-ui/react-use-update-effect@2.0.3": - "integrity" "sha512-8hkP1o/UUUA49w/R+XyAlPiCjxXTCWCNsHWUOEhAitjJfoCNUjgaNKOD52hT07kc5ACJEcJQHA5327LnwtiIlg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.3.tgz" - "version" "2.0.3" +"@chakra-ui/react-use-update-effect@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.4.tgz#522bc58b943fffe540a91f7a096d42e4a91b9748" + integrity sha512-F/I9LVnGAQyvww+x7tQb47wCwjhMYjpxtM1dTg1U3oCEXY0yF1Ts3NJLUAlsr3nAW6epJIwWx61niC7KWpam1w== -"@chakra-ui/react-utils@2.0.6": - "integrity" "sha512-ZL0FPaolovXOxMzYRSLHgBYtvxIkA/c5GTSYpXL8DcC+TBLZnAmQ8BPTS2b6xys6xvwdQjkZRUeQ0cBNFaryJg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.6.tgz" - "version" "2.0.6" +"@chakra-ui/react-utils@2.0.8": + version "2.0.8" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-utils/-/react-utils-2.0.8.tgz#1db4e920386f4afbf44fe9dd8aaaf6f22eefb371" + integrity sha512-OSHHBKZlJWTi2NZcPnBx1PyZvLQY+n5RPBtcri7/89EDdAwz2NdEhp2Dz1yQRctOSCF1kB/rnCYDP1U0oRk9RQ== dependencies: - "@chakra-ui/utils" "2.0.9" + "@chakra-ui/utils" "2.0.11" "@chakra-ui/react@^2.3.1": - "integrity" "sha512-qOcDLbA1x4pnpJPtF4YJ7pZzK/ki6SoQl9Vj7fsR+hJw1lt3y1475NSyYGiA6qgho/8twUgYLhcdrTbQPcmOHg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.2.tgz" - "version" "2.3.2" + version "2.3.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/react/-/react-2.3.6.tgz#a6d3e092cab433fcd9cf8e9876756818c4261df6" + integrity sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ== dependencies: - "@chakra-ui/accordion" "2.0.12" - "@chakra-ui/alert" "2.0.9" - "@chakra-ui/avatar" "2.1.0" - "@chakra-ui/breadcrumb" "2.0.9" - "@chakra-ui/button" "2.0.9" - "@chakra-ui/checkbox" "2.1.8" - "@chakra-ui/close-button" "2.0.9" - "@chakra-ui/control-box" "2.0.9" - "@chakra-ui/counter" "2.0.9" - "@chakra-ui/css-reset" "2.0.7" - "@chakra-ui/editable" "2.0.9" - "@chakra-ui/form-control" "2.0.9" - "@chakra-ui/hooks" "2.0.9" - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/image" "2.0.10" - "@chakra-ui/input" "2.0.9" - "@chakra-ui/layout" "2.1.6" - "@chakra-ui/live-region" "2.0.9" - "@chakra-ui/media-query" "3.2.5" - "@chakra-ui/menu" "2.0.13" - "@chakra-ui/modal" "2.1.7" - "@chakra-ui/number-input" "2.0.9" - "@chakra-ui/pin-input" "2.0.12" - "@chakra-ui/popover" "2.0.9" - "@chakra-ui/popper" "3.0.7" - "@chakra-ui/portal" "2.0.9" - "@chakra-ui/progress" "2.0.10" - "@chakra-ui/provider" "2.0.16" - "@chakra-ui/radio" "2.0.10" - "@chakra-ui/react-env" "2.0.9" - "@chakra-ui/select" "2.0.10" - "@chakra-ui/skeleton" "2.0.15" - "@chakra-ui/slider" "2.0.10" - "@chakra-ui/spinner" "2.0.9" - "@chakra-ui/stat" "2.0.9" - "@chakra-ui/switch" "2.0.11" - "@chakra-ui/system" "2.2.9" - "@chakra-ui/table" "2.0.9" - "@chakra-ui/tabs" "2.1.1" - "@chakra-ui/tag" "2.0.9" - "@chakra-ui/textarea" "2.0.10" - "@chakra-ui/theme" "2.1.11" - "@chakra-ui/toast" "3.0.10" - "@chakra-ui/tooltip" "2.0.10" - "@chakra-ui/transition" "2.0.9" - "@chakra-ui/utils" "2.0.9" - "@chakra-ui/visually-hidden" "2.0.9" + "@chakra-ui/accordion" "2.1.2" + "@chakra-ui/alert" "2.0.11" + "@chakra-ui/avatar" "2.2.0" + "@chakra-ui/breadcrumb" "2.1.0" + "@chakra-ui/button" "2.0.11" + "@chakra-ui/checkbox" "2.2.2" + "@chakra-ui/close-button" "2.0.11" + "@chakra-ui/control-box" "2.0.10" + "@chakra-ui/counter" "2.0.10" + "@chakra-ui/css-reset" "2.0.8" + "@chakra-ui/editable" "2.0.13" + "@chakra-ui/form-control" "2.0.11" + "@chakra-ui/hooks" "2.1.0" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/image" "2.0.11" + "@chakra-ui/input" "2.0.12" + "@chakra-ui/layout" "2.1.9" + "@chakra-ui/live-region" "2.0.10" + "@chakra-ui/media-query" "3.2.7" + "@chakra-ui/menu" "2.1.2" + "@chakra-ui/modal" "2.2.2" + "@chakra-ui/number-input" "2.0.12" + "@chakra-ui/pin-input" "2.0.15" + "@chakra-ui/popover" "2.1.1" + "@chakra-ui/popper" "3.0.8" + "@chakra-ui/portal" "2.0.10" + "@chakra-ui/progress" "2.0.12" + "@chakra-ui/provider" "2.0.20" + "@chakra-ui/radio" "2.0.12" + "@chakra-ui/react-env" "2.0.10" + "@chakra-ui/select" "2.0.12" + "@chakra-ui/skeleton" "2.0.17" + "@chakra-ui/slider" "2.0.12" + "@chakra-ui/spinner" "2.0.10" + "@chakra-ui/stat" "2.0.11" + "@chakra-ui/styled-system" "2.3.4" + "@chakra-ui/switch" "2.0.14" + "@chakra-ui/system" "2.3.0" + "@chakra-ui/table" "2.0.11" + "@chakra-ui/tabs" "2.1.4" + "@chakra-ui/tag" "2.0.11" + "@chakra-ui/textarea" "2.0.12" + "@chakra-ui/theme" "2.1.14" + "@chakra-ui/theme-utils" "2.0.1" + "@chakra-ui/toast" "4.0.0" + "@chakra-ui/tooltip" "2.2.0" + "@chakra-ui/transition" "2.0.11" + "@chakra-ui/utils" "2.0.11" + "@chakra-ui/visually-hidden" "2.0.11" -"@chakra-ui/select@2.0.10": - "integrity" "sha512-7AslBWwI/JyczjMMGtPuN34M/C38koVd+N/pb6swHoIP9TRkkdvDlonIakcmtO1oLEzlNIFKmt4FQ7bUp9ea5Q==" - "resolved" "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/select@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/select/-/select-2.0.12.tgz#9b485e6a28c9aa468bc1c0d8a78aabd985b0c370" + integrity sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA== dependencies: - "@chakra-ui/form-control" "2.0.9" + "@chakra-ui/form-control" "2.0.11" -"@chakra-ui/shared-utils@2.0.1": - "integrity" "sha512-NXDBl/u4wrSNp0ON5R3r3evkRurrAz2yuO7neooaG+O5HEenVouGqm4CsXd6lUAPmjwiGzA0LQFNCt0Hj92dXg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.1.tgz" - "version" "2.0.1" +"@chakra-ui/shared-utils@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/shared-utils/-/shared-utils-2.0.2.tgz#1df08133194c12ac4df9302604ec37784c2bb026" + integrity sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg== -"@chakra-ui/skeleton@2.0.15": - "integrity" "sha512-QVMkXwrH9jLfim8uJTZcjHeGjzoquNcHGXD5wapd7eDqp9BygvmMXAHBxFm8eEJLHuvIqLX94P6DLeiieYwX7Q==" - "resolved" "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.15.tgz" - "version" "2.0.15" +"@chakra-ui/skeleton@2.0.17": + version "2.0.17" + resolved "https://registry.yarnpkg.com/@chakra-ui/skeleton/-/skeleton-2.0.17.tgz#737e08f771980f5b73060dc6c940691e7759d044" + integrity sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg== dependencies: - "@chakra-ui/media-query" "3.2.5" - "@chakra-ui/react-use-previous" "2.0.1" + "@chakra-ui/media-query" "3.2.7" + "@chakra-ui/react-use-previous" "2.0.2" -"@chakra-ui/slider@2.0.10": - "integrity" "sha512-F0RGl2ruADbXO/GnoBUiTEl+przxhZo2e0tfw9VTtS+RsJZ22uHrTNVvVJHNmjK7/E3++kBfaLCacoJFz/io+g==" - "resolved" "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/slider@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/slider/-/slider-2.0.12.tgz#42fc5fe385c507276da29f4aa49a6408ee853978" + integrity sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw== dependencies: - "@chakra-ui/number-utils" "2.0.3" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/number-utils" "2.0.4" + "@chakra-ui/react-context" "2.0.4" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-callback-ref" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-pan-event" "2.0.4" - "@chakra-ui/react-use-size" "2.0.3" - "@chakra-ui/react-use-update-effect" "2.0.3" + "@chakra-ui/react-use-callback-ref" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-latest-ref" "2.0.2" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-pan-event" "2.0.5" + "@chakra-ui/react-use-size" "2.0.4" + "@chakra-ui/react-use-update-effect" "2.0.4" -"@chakra-ui/spinner@2.0.9": - "integrity" "sha512-9ALl51fiVWptDu2J2xcv0TSfGf4buumpHrEXHvV2Qy+HZ6rYnUmSThBSb/VgoQS+rASG8bAbLUPlQTQ+v9ibFg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/spinner@2.0.10": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/spinner/-/spinner-2.0.10.tgz#f8b1b6f1c8f45e3aeab44d5ab1f1debc71e52573" + integrity sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw== -"@chakra-ui/stat@2.0.9": - "integrity" "sha512-C9cytqegWSGJ/hh3/qwsgGlerXLYHrU0iQcJQ+pKSRFJhshXsv3go5IR6kVL72Yf2s4Gs5c3GsMZrLM22ePpDg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/stat@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/stat/-/stat-2.0.11.tgz#0c052aee68486a892e09e802bb569dc984e31eae" + integrity sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw== dependencies: - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/styled-system@>=2.0.0": - "version" "2.3.4" +"@chakra-ui/styled-system@2.3.4": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/styled-system/-/styled-system-2.3.4.tgz#6022c5a675b54a69b1d3c2d3e60258901dc7b82a" + integrity sha512-Lozbedu+GBj4EbHB/eGv475SFDLApsIEN9gNKiZJBJAE1HIhHn3Seh1iZQSrHC/Beq+D5cQq3Z+yPn3bXtFU7w== dependencies: "csstype" "^3.0.11" "lodash.mergewith" "4.6.2" -"@chakra-ui/styled-system@2.3.1": - "integrity" "sha512-jyR9s2yk5TEyq4HUfjrgUeaOzd9ZTZrbjK96UjtiTCZGO/q4j2RXtYvfheUjUyW1UnzI2A1ffHOJca8tBMDjpA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.1.tgz" - "version" "2.3.1" +"@chakra-ui/switch@2.0.14": + version "2.0.14" + resolved "https://registry.yarnpkg.com/@chakra-ui/switch/-/switch-2.0.14.tgz#62372355bf73c19896b39fb7e75c132333c5a882" + integrity sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA== dependencies: - "csstype" "^3.0.11" - "lodash.mergewith" "4.6.2" + "@chakra-ui/checkbox" "2.2.2" -"@chakra-ui/switch@2.0.11": - "integrity" "sha512-gY8OGBnoPosZpq7dDNVf432t67pTc/cz5VkGhbtER7bbjXSoXe0DAiAYL+HT2kD7mbTJQzzHK/y0St0WimR1Mw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.11.tgz" - "version" "2.0.11" +"@chakra-ui/system@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/system/-/system-2.3.0.tgz#b7ba122872d4d48806fbf994f1187680ae2296a6" + integrity sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ== dependencies: - "@chakra-ui/checkbox" "2.1.8" + "@chakra-ui/color-mode" "2.1.9" + "@chakra-ui/react-utils" "2.0.8" + "@chakra-ui/styled-system" "2.3.4" + "@chakra-ui/theme-utils" "2.0.1" + "@chakra-ui/utils" "2.0.11" + react-fast-compare "3.2.0" -"@chakra-ui/system@>=2.0.0", "@chakra-ui/system@2.2.9": - "integrity" "sha512-SyTeIGm+goyYK8vqX4dU6oeLhxUAeGI3Cl+mxA+aiKIX01YTALhTWhpbrsuMYBevV+l9EGK12egPUQE+Mo3WlQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/system/-/system-2.2.9.tgz" - "version" "2.2.9" +"@chakra-ui/table@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/table/-/table-2.0.11.tgz#9bd25d5383c94982b89e792675bc1d1f667f81f3" + integrity sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg== dependencies: - "@chakra-ui/color-mode" "2.1.7" - "@chakra-ui/react-utils" "2.0.6" - "@chakra-ui/styled-system" "2.3.1" - "@chakra-ui/utils" "2.0.9" - "react-fast-compare" "3.2.0" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/table@2.0.9": - "integrity" "sha512-XRz6+x4dMeQX3xyViyG2H/P1STI/2vwvgU2cjzzwS+5fZ2JdGaTgYzBb+IZoH9agEq1Ma3rlKMUPDrRCFb7kLQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/tabs@2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/tabs/-/tabs-2.1.4.tgz#38d9748ce2cfa583a123c0f695ea1cbce1a6bd42" + integrity sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew== dependencies: - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/clickable" "2.0.10" + "@chakra-ui/descendant" "3.0.10" + "@chakra-ui/lazy-utils" "2.0.2" + "@chakra-ui/react-children-utils" "2.0.3" + "@chakra-ui/react-context" "2.0.4" + "@chakra-ui/react-use-controllable-state" "2.0.5" + "@chakra-ui/react-use-merge-refs" "2.0.4" + "@chakra-ui/react-use-safe-layout-effect" "2.0.2" -"@chakra-ui/tabs@2.1.1": - "integrity" "sha512-xA+vwqpAHb0nBLrkiO5Lea2UDGROyAIBqsyp/8XXXEr6eKxtNe1I6WJPbDQy0aazB2ToAA0R6fT34HjLaXP8MQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.1.tgz" - "version" "2.1.1" +"@chakra-ui/tag@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/tag/-/tag-2.0.11.tgz#14702adf5d1456dbbb84ea7a4b314953b92c323f" + integrity sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew== dependencies: - "@chakra-ui/clickable" "2.0.9" - "@chakra-ui/descendant" "3.0.9" - "@chakra-ui/lazy-utils" "2.0.1" - "@chakra-ui/react-children-utils" "2.0.1" - "@chakra-ui/react-context" "2.0.3" - "@chakra-ui/react-use-controllable-state" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" - "@chakra-ui/react-use-safe-layout-effect" "2.0.1" + "@chakra-ui/icon" "3.0.11" + "@chakra-ui/react-context" "2.0.4" -"@chakra-ui/tag@2.0.9": - "integrity" "sha512-NKARwhsZ04t2vkrdRhNcakEiVtg1q44yUUsDw2Jwdu4idAWQupZGGochQI2Ac4T2MI1b66zQUkaGnm3l1mhTtg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/textarea@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/textarea/-/textarea-2.0.12.tgz#469c1d64cb855b3b534dcd7fcc1d927e60da8da1" + integrity sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A== dependencies: - "@chakra-ui/icon" "3.0.9" - "@chakra-ui/react-context" "2.0.3" + "@chakra-ui/form-control" "2.0.11" -"@chakra-ui/textarea@2.0.10": - "integrity" "sha512-HSo0EPsY8XKGA+Af6jTob1oe1T6NKZwgjLmX0binK3MMM9pDTXsUTw8GD0g971lxw9oktVMLK/O9QVAgVAm5mw==" - "resolved" "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/theme-tools@2.0.12": + version "2.0.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme-tools/-/theme-tools-2.0.12.tgz#b29d9fb626d35e3b00f532c64f95ea261d8f6997" + integrity sha512-mnMlKSmXkCjHUJsKWmJbgBTGF2vnLaMLv1ihkBn5eQcCubMQrBLTiMAEFl5pZdzuHItU6QdnLGA10smcXbNl0g== dependencies: - "@chakra-ui/form-control" "2.0.9" - -"@chakra-ui/theme-tools@2.0.11": - "integrity" "sha512-0Juf98bAyOgnBeQ39nMKWqRsOxZDw75BbAB8o0oVyjhYVS1wJh7tFX1ZRV8N/+AN6fuRXEznZPpyUh3J+ZTiRg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.11.tgz" - "version" "2.0.11" - dependencies: - "@chakra-ui/anatomy" "2.0.6" + "@chakra-ui/anatomy" "2.0.7" "@ctrl/tinycolor" "^3.4.0" -"@chakra-ui/theme@2.1.11": - "integrity" "sha512-gI0NLU6wO/5cRq8gbDHuy24Y/ZhJxN4D/2uucNN9is3h+d58/En5jV3fwzZW8PLiLKW/T2CmbYWEZWV2YkcUVA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.11.tgz" - "version" "2.1.11" +"@chakra-ui/theme-utils@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme-utils/-/theme-utils-2.0.1.tgz#a3dc99331ba943e155dd683fe25ce302e3084db0" + integrity sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w== dependencies: - "@chakra-ui/anatomy" "2.0.6" - "@chakra-ui/theme-tools" "2.0.11" + "@chakra-ui/styled-system" "2.3.4" + "@chakra-ui/theme" "2.1.14" + lodash.mergewith "4.6.2" -"@chakra-ui/toast@3.0.10": - "integrity" "sha512-i/oEtzmarO0hM6fxa55OmA8ZGkZv9b+vIC2xs5kQ/C0rJaC0ycibok8srq2Stjq9309fZNezyzThQp6e9acUYQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/toast/-/toast-3.0.10.tgz" - "version" "3.0.10" +"@chakra-ui/theme@2.1.14": + version "2.1.14" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme/-/theme-2.1.14.tgz#4726d65a65515f8ee96b5f2a725d0d17804ddfc9" + integrity sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw== dependencies: - "@chakra-ui/alert" "2.0.9" - "@chakra-ui/close-button" "2.0.9" - "@chakra-ui/portal" "2.0.9" - "@chakra-ui/react-use-timeout" "2.0.1" - "@chakra-ui/react-use-update-effect" "2.0.3" - "@chakra-ui/theme" "2.1.11" + "@chakra-ui/anatomy" "2.0.7" + "@chakra-ui/theme-tools" "2.0.12" -"@chakra-ui/tooltip@2.0.10": - "integrity" "sha512-pBILBdZoux2K3EW9V6JuyZYUWz2/Y7oYCVO6AwNOesiEBGAONyzoDwFV728EzPEHe9e+YBcKOSZ9tEpDdrzHMA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.0.10.tgz" - "version" "2.0.10" +"@chakra-ui/toast@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/toast/-/toast-4.0.0.tgz#797c34c4ecfcad7c6899c1cda221af0ff04d5d0b" + integrity sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og== dependencies: - "@chakra-ui/popper" "3.0.7" - "@chakra-ui/portal" "2.0.9" + "@chakra-ui/alert" "2.0.11" + "@chakra-ui/close-button" "2.0.11" + "@chakra-ui/portal" "2.0.10" + "@chakra-ui/react-use-timeout" "2.0.2" + "@chakra-ui/react-use-update-effect" "2.0.4" + "@chakra-ui/styled-system" "2.3.4" + "@chakra-ui/theme" "2.1.14" + +"@chakra-ui/tooltip@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/tooltip/-/tooltip-2.2.0.tgz#24e005f831cddf1c0e41dd246ed2771a97b8637c" + integrity sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ== + dependencies: + "@chakra-ui/popper" "3.0.8" + "@chakra-ui/portal" "2.0.10" "@chakra-ui/react-types" "2.0.3" - "@chakra-ui/react-use-disclosure" "2.0.3" - "@chakra-ui/react-use-event-listener" "2.0.3" - "@chakra-ui/react-use-merge-refs" "2.0.3" + "@chakra-ui/react-use-disclosure" "2.0.5" + "@chakra-ui/react-use-event-listener" "2.0.4" + "@chakra-ui/react-use-merge-refs" "2.0.4" -"@chakra-ui/transition@2.0.9": - "integrity" "sha512-cVfKdZl128AEj0LDS8M9dzXao4wmTVj3gRJBnm91Qcg243Pm8OlgIBNbHEwsq/Fps+PsN431BtEGfL4w79wQEA==" - "resolved" "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/transition@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/transition/-/transition-2.0.11.tgz#b2cfeb2150871c635cb9d03d9b525481dbe56f56" + integrity sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw== -"@chakra-ui/utils@2.0.9": - "integrity" "sha512-7ct5562Jw6pZdtj63XfUkEUXXsCCVqdqIXyLtQ9VgOKtRQWwDxzc8uPI5Zjdw9AleEITZFUH8TNKWn75nm54kQ==" - "resolved" "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/utils@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/utils/-/utils-2.0.11.tgz#8e773f900a8356bd10c48b59151a781dba1c7b70" + integrity sha512-4ZQdK6tbOuTrUCsAQBHWo7tw5/Q6pBV93ZbVpats61cSWMFGv32AIQw9/hA4un2zDeSWN9ZMVLNjAY2Dq/KQOA== dependencies: "@types/lodash.mergewith" "4.6.6" "css-box-model" "1.2.1" "framesync" "5.3.0" "lodash.mergewith" "4.6.2" -"@chakra-ui/visually-hidden@2.0.9": - "integrity" "sha512-PkNxrRGp9H3bdqEaoo8XGt/AL9UuGRTom0/9XJa+G/Dj8Cy1sDuamOWk3pN/ZQs46RokfK9Uh5LqPY5dwSDweg==" - "resolved" "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.9.tgz" - "version" "2.0.9" +"@chakra-ui/visually-hidden@2.0.11": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/visually-hidden/-/visually-hidden-2.0.11.tgz#b2eb236e803451b39cdfcce3c5ab52e773c066a3" + integrity sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ== "@ctrl/tinycolor@^3.4.0": "integrity" "sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==" "resolved" "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.1.tgz" "version" "3.4.1" -"@emotion/babel-plugin@^11.10.0": - "integrity" "sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==" - "resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.2.tgz" - "version" "11.10.2" +"@emotion/babel-plugin@^11.10.5": + version "11.10.5" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz#65fa6e1790ddc9e23cc22658a4c5dea423c55c3c" + integrity sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA== dependencies: "@babel/helper-module-imports" "^7.16.7" "@babel/plugin-syntax-jsx" "^7.17.12" "@babel/runtime" "^7.18.3" "@emotion/hash" "^0.9.0" "@emotion/memoize" "^0.8.0" - "@emotion/serialize" "^1.1.0" - "babel-plugin-macros" "^3.1.0" - "convert-source-map" "^1.5.0" - "escape-string-regexp" "^4.0.0" - "find-root" "^1.1.0" - "source-map" "^0.5.7" - "stylis" "4.0.13" + "@emotion/serialize" "^1.1.1" + babel-plugin-macros "^3.1.0" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.1.3" -"@emotion/cache@^11.10.0": - "integrity" "sha512-Psmp/7ovAa8appWh3g51goxu/z3iVms7JXOreq136D8Bbn6dYraPnmL6mdM8GThEx9vwSn92Fz+mGSjBzN8UPQ==" - "resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.3.tgz" - "version" "11.10.3" +"@emotion/cache@^11.10.5": + version "11.10.5" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.10.5.tgz#c142da9351f94e47527ed458f7bbbbe40bb13c12" + integrity sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA== dependencies: "@emotion/memoize" "^0.8.0" - "@emotion/sheet" "^1.2.0" + "@emotion/sheet" "^1.2.1" "@emotion/utils" "^1.2.0" "@emotion/weak-memoize" "^0.3.0" - "stylis" "4.0.13" + stylis "4.1.3" "@emotion/hash@^0.9.0": "integrity" "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==" @@ -1027,29 +1051,24 @@ "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz" "version" "0.8.0" -"@emotion/memoize@0.7.4": - "integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" - "version" "0.7.4" - -"@emotion/react@^11.0.0", "@emotion/react@^11.0.0-rc.0", "@emotion/react@^11.10.4", "@emotion/react@>=10.0.35": - "integrity" "sha512-j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA==" - "resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.10.4.tgz" - "version" "11.10.4" +"@emotion/react@^11.10.4": + version "11.10.5" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.10.5.tgz#95fff612a5de1efa9c0d535384d3cfa115fe175d" + integrity sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A== dependencies: "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.10.0" - "@emotion/cache" "^11.10.0" - "@emotion/serialize" "^1.1.0" + "@emotion/babel-plugin" "^11.10.5" + "@emotion/cache" "^11.10.5" + "@emotion/serialize" "^1.1.1" "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" "@emotion/utils" "^1.2.0" "@emotion/weak-memoize" "^0.3.0" "hoist-non-react-statics" "^3.3.1" -"@emotion/serialize@^1.1.0": - "integrity" "sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA==" - "resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.0.tgz" - "version" "1.1.0" +"@emotion/serialize@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.1.tgz#0595701b1902feded8a96d293b26be3f5c1a5cf0" + integrity sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA== dependencies: "@emotion/hash" "^0.9.0" "@emotion/memoize" "^0.8.0" @@ -1057,20 +1076,20 @@ "@emotion/utils" "^1.2.0" "csstype" "^3.0.2" -"@emotion/sheet@^1.2.0": - "integrity" "sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==" - "resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.0.tgz" - "version" "1.2.0" +"@emotion/sheet@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.1.tgz#0767e0305230e894897cadb6c8df2c51e61a6c2c" + integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA== -"@emotion/styled@^11.0.0", "@emotion/styled@^11.10.4": - "integrity" "sha512-pRl4R8Ez3UXvOPfc2bzIoV8u9P97UedgHS4FPX594ntwEuAMA114wlaHvOK24HB48uqfXiGlYIZYCxVJ1R1ttQ==" - "resolved" "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.4.tgz" - "version" "11.10.4" +"@emotion/styled@^11.10.4": + version "11.10.5" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.10.5.tgz#1fe7bf941b0909802cb826457e362444e7e96a79" + integrity sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw== dependencies: "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.10.0" + "@emotion/babel-plugin" "^11.10.5" "@emotion/is-prop-valid" "^1.2.0" - "@emotion/serialize" "^1.1.0" + "@emotion/serialize" "^1.1.1" "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" "@emotion/utils" "^1.2.0" @@ -1094,10 +1113,20 @@ "resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz" "version" "0.3.0" -"@eslint/eslintrc@^1.3.2": - "integrity" "sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==" - "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz" - "version" "1.3.2" +"@esbuild/android-arm@0.15.12": + version "0.15.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.12.tgz#e548b10a5e55b9e10537a049ebf0bc72c453b769" + integrity sha512-IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA== + +"@esbuild/linux-loong64@0.15.12": + version "0.15.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.12.tgz#475b33a2631a3d8ca8aa95ee127f9a61d95bf9c1" + integrity sha512-tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw== + +"@eslint/eslintrc@^1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" + integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== dependencies: "ajv" "^6.12.4" "debug" "^4.3.2" @@ -1129,19 +1158,14 @@ "@floating-ui/dom" "^0.5.3" "use-isomorphic-layout-effect" "^1.1.1" -"@humanwhocodes/config-array@^0.10.4": - "integrity" "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==" - "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz" - "version" "0.10.4" +"@humanwhocodes/config-array@^0.11.6": + version "0.11.7" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f" + integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw== dependencies: "@humanwhocodes/object-schema" "^1.2.1" - "debug" "^4.1.1" - "minimatch" "^3.0.4" - -"@humanwhocodes/gitignore-to-minimatch@^1.0.2": - "integrity" "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==" - "resolved" "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz" - "version" "1.0.2" + debug "^4.1.1" + minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": "integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" @@ -1170,28 +1194,28 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@^3.0.3": - "integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz" - "version" "3.1.0" +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": "integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" "resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" "version" "1.1.2" -"@jridgewell/sourcemap-codec@^1.4.10": - "integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" - "version" "1.4.14" +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== "@jridgewell/trace-mapping@^0.3.9": - "integrity" "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==" - "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz" - "version" "0.3.15" + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" "@motionone/animation@^10.13.1": "integrity" "sha512-h+1sdyBP8vbxEBW5gPFDnj+m2DCqdlAuf2g6Iafb1lcMnqjsRXWlPw1AXgvUMXmreyhqmPbJqoNfIKdytampRQ==" @@ -1259,10 +1283,10 @@ "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" "version" "2.0.5" -"@nodelib/fs.walk@^1.2.3": - "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" - "version" "1.2.8" +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" "fastq" "^1.6.0" @@ -1572,9 +1596,9 @@ "@babel/runtime" "^7.13.10" "@reduxjs/toolkit@^1.8.5": - "integrity" "sha512-f4D5EXO7A7Xq35T0zRbWq5kJQyXzzscnHKmjnu2+37B3rwHU6mX9PYlbfXdnxcY6P/7zfmjhgan0Z+yuOfeBmA==" - "resolved" "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.8.5.tgz" - "version" "1.8.5" + version "1.8.6" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.8.6.tgz#147fb7957befcdb75bc9c1230db63628e30e4332" + integrity sha512-4Ia/Loc6WLmdSOzi7k5ff7dLK8CgG2b8aqpLsCAJhazAzGdp//YBUSaj0ceW6a3kDBDNRrq5CRwyCS0wBiL1ig== dependencies: "immer" "^9.0.7" "redux" "^4.1.2" @@ -1610,9 +1634,9 @@ "version" "5.0.0" "@types/eslint@^8.4.5": - "integrity" "sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==" - "resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz" - "version" "8.4.6" + version "8.4.9" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.9.tgz#f7371980148697f4b582b086630319b55324b5aa" + integrity sha512-jFCSo4wJzlHQLCpceUhUnXdrPuCNOjGFMQ8Eg6JXxlz3QaCKOb7eGi2cephQdM4XTYsNej69P9JDJ1zqNIbncQ== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -1643,12 +1667,14 @@ "@types/lodash" "*" "@types/lodash@*": - "integrity" "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==" - "resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz" - "version" "4.14.185" + version "4.14.186" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.186.tgz#862e5514dd7bd66ada6c70ee5fce844b06c8ee97" + integrity sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw== "@types/node@>=10.0.0": - "version" "18.8.3" + version "18.11.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.8.tgz#16d222a58d4363a2a359656dd20b28414de5d265" + integrity sha512-uGwPWlE0Hj972KkHtCDVwZ8O39GmyjfMane1Z3GUBGGnkZ2USDq7SxLpVIiIHpweY9DS0QTDH0Nw7RNBsAAZ5A== "@types/parse-json@^4.0.0": "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" @@ -1660,10 +1686,10 @@ "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" "version" "15.7.5" -"@types/react-dom@^16.8 || ^17.0 || ^18.0", "@types/react-dom@^18.0.6": - "integrity" "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==" - "resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz" - "version" "18.0.6" +"@types/react-dom@^18.0.6": + version "18.0.8" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.8.tgz#d2606d855186cd42cc1b11e63a71c39525441685" + integrity sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw== dependencies: "@types/react" "*" @@ -1681,10 +1707,10 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@^16.8 || ^17.0 || ^18.0", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@^18.0.17": - "integrity" "sha512-MWul1teSPxujEHVwZl4a5HxQ9vVNsjTchVA+xRqv/VYGCuKGAU6UhfrTdF5aBefwD1BHUD8i/zq+O/vyCm/FrA==" - "resolved" "https://registry.npmjs.org/@types/react/-/react-18.0.20.tgz" - "version" "18.0.20" +"@types/react@*", "@types/react@^18.0.17": + version "18.0.24" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.24.tgz#2f79ed5b27f08d05107aab45c17919754cc44c20" + integrity sha512-wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -1695,6 +1721,11 @@ "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" "version" "0.16.2" +"@types/semver@^7.3.12": + version "7.3.13" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" + integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== + "@types/use-sync-external-store@^0.0.3": "integrity" "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" "resolved" "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz" @@ -1706,98 +1737,100 @@ "version" "8.3.4" "@typescript-eslint/eslint-plugin@^5.36.2": - "integrity" "sha512-Fde6W0IafXktz1UlnhGkrrmnnGpAo1kyX7dnyHHVrmwJOn72Oqm3eYtddrpOwwel2W8PAK9F3pIL5S+lfoM0og==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.37.0.tgz" - "version" "5.37.0" + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.42.0.tgz#36a8c0c379870127059889a9cc7e05c260d2aaa5" + integrity sha512-5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ== dependencies: - "@typescript-eslint/scope-manager" "5.37.0" - "@typescript-eslint/type-utils" "5.37.0" - "@typescript-eslint/utils" "5.37.0" - "debug" "^4.3.4" - "functional-red-black-tree" "^1.0.1" - "ignore" "^5.2.0" - "regexpp" "^3.2.0" - "semver" "^7.3.7" - "tsutils" "^3.21.0" + "@typescript-eslint/scope-manager" "5.42.0" + "@typescript-eslint/type-utils" "5.42.0" + "@typescript-eslint/utils" "5.42.0" + debug "^4.3.4" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + regexpp "^3.2.0" + semver "^7.3.7" + tsutils "^3.21.0" -"@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.36.2": - "integrity" "sha512-01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/parser@^5.36.2": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.42.0.tgz#be0ffbe279e1320e3d15e2ef0ad19262f59e9240" + integrity sha512-Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA== dependencies: - "@typescript-eslint/scope-manager" "5.37.0" - "@typescript-eslint/types" "5.37.0" - "@typescript-eslint/typescript-estree" "5.37.0" - "debug" "^4.3.4" + "@typescript-eslint/scope-manager" "5.42.0" + "@typescript-eslint/types" "5.42.0" + "@typescript-eslint/typescript-estree" "5.42.0" + debug "^4.3.4" -"@typescript-eslint/scope-manager@5.37.0": - "integrity" "sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/scope-manager@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.42.0.tgz#e1f2bb26d3b2a508421ee2e3ceea5396b192f5ef" + integrity sha512-l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow== dependencies: - "@typescript-eslint/types" "5.37.0" - "@typescript-eslint/visitor-keys" "5.37.0" + "@typescript-eslint/types" "5.42.0" + "@typescript-eslint/visitor-keys" "5.42.0" -"@typescript-eslint/type-utils@5.37.0": - "integrity" "sha512-BSx/O0Z0SXOF5tY0bNTBcDEKz2Ec20GVYvq/H/XNKiUorUFilH7NPbFUuiiyzWaSdN3PA8JV0OvYx0gH/5aFAQ==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/type-utils@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.42.0.tgz#4206d7192d4fe903ddf99d09b41d4ac31b0b7dca" + integrity sha512-HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg== dependencies: - "@typescript-eslint/typescript-estree" "5.37.0" - "@typescript-eslint/utils" "5.37.0" - "debug" "^4.3.4" - "tsutils" "^3.21.0" + "@typescript-eslint/typescript-estree" "5.42.0" + "@typescript-eslint/utils" "5.42.0" + debug "^4.3.4" + tsutils "^3.21.0" -"@typescript-eslint/types@5.37.0": - "integrity" "sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/types@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.42.0.tgz#5aeff9b5eced48f27d5b8139339bf1ef805bad7a" + integrity sha512-t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw== -"@typescript-eslint/typescript-estree@5.37.0": - "integrity" "sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/typescript-estree@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.42.0.tgz#2592d24bb5f89bf54a63384ff3494870f95b3fd8" + integrity sha512-2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg== dependencies: - "@typescript-eslint/types" "5.37.0" - "@typescript-eslint/visitor-keys" "5.37.0" - "debug" "^4.3.4" - "globby" "^11.1.0" - "is-glob" "^4.0.3" - "semver" "^7.3.7" - "tsutils" "^3.21.0" + "@typescript-eslint/types" "5.42.0" + "@typescript-eslint/visitor-keys" "5.42.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" -"@typescript-eslint/utils@5.37.0": - "integrity" "sha512-jUEJoQrWbZhmikbcWSMDuUSxEE7ID2W/QCV/uz10WtQqfOuKZUqFGjqLJ+qhDd17rjgp+QJPqTdPIBWwoob2NQ==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/utils@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.42.0.tgz#f06bd43b9a9a06ed8f29600273240e84a53f2f15" + integrity sha512-JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ== dependencies: "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.37.0" - "@typescript-eslint/types" "5.37.0" - "@typescript-eslint/typescript-estree" "5.37.0" - "eslint-scope" "^5.1.1" - "eslint-utils" "^3.0.0" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.42.0" + "@typescript-eslint/types" "5.42.0" + "@typescript-eslint/typescript-estree" "5.42.0" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.37.0": - "integrity" "sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA==" - "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz" - "version" "5.37.0" +"@typescript-eslint/visitor-keys@5.42.0": + version "5.42.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.42.0.tgz#ee8d62d486f41cfe646632fab790fbf0c1db5bb0" + integrity sha512-QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg== dependencies: - "@typescript-eslint/types" "5.37.0" - "eslint-visitor-keys" "^3.3.0" + "@typescript-eslint/types" "5.42.0" + eslint-visitor-keys "^3.3.0" "@vitejs/plugin-react@^2.0.1": - "integrity" "sha512-am6rPyyU3LzUYne3Gd9oj9c4Rzbq5hQnuGXSMT6Gujq45Il/+bunwq3lrB7wghLkiF45ygMwft37vgJ/NE8IAA==" - "resolved" "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-2.1.0.tgz" - "version" "2.1.0" + version "2.2.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-2.2.0.tgz#1b9f63b8b6bc3f56258d20cd19b33f5cc761ce6e" + integrity sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA== dependencies: - "@babel/core" "^7.18.13" - "@babel/plugin-transform-react-jsx" "^7.18.10" + "@babel/core" "^7.19.6" + "@babel/plugin-transform-react-jsx" "^7.19.0" "@babel/plugin-transform-react-jsx-development" "^7.18.6" "@babel/plugin-transform-react-jsx-self" "^7.18.6" - "@babel/plugin-transform-react-jsx-source" "^7.18.6" - "magic-string" "^0.26.2" - "react-refresh" "^0.14.0" + "@babel/plugin-transform-react-jsx-source" "^7.19.6" + magic-string "^0.26.7" + react-refresh "^0.14.0" "@zag-js/element-size@0.1.0": "integrity" "sha512-QF8wp0+V8++z+FHXiIw93+zudtubYszOtYbNgK39fg3pi+nCZtuSm4L1jC5QZMatNZ83MfOzyNCfgUubapagJQ==" @@ -1822,10 +1855,10 @@ "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" "version" "5.3.2" -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.8.0": - "integrity" "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" - "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz" - "version" "8.8.0" +acorn@^8.8.0: + version "8.8.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" + integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== "add@^2.0.6": "integrity" "sha512-j5QzrmsokwWWp6kUcJQySpbG+xfOBqqKnup3OIk1pz+kB/80SLorZ9V8zHFLO92Lcd+hbvq8bT+zOGoPkmBV0Q==" @@ -1945,10 +1978,10 @@ "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" "version" "3.1.0" -"caniuse-lite@^1.0.30001400": - "integrity" "sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==" - "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz" - "version" "1.0.30001402" +caniuse-lite@^1.0.30001400: + version "1.0.30001427" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz#d3a749f74be7ae0671fbec3a4eea18576e8ad646" + integrity sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ== "chalk@^2.0.0": "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" @@ -2016,12 +2049,10 @@ "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" "version" "0.0.1" -"convert-source-map@^1.5.0", "convert-source-map@^1.7.0": - "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" - "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" - "version" "1.8.0" - dependencies: - "safe-buffer" "~5.1.1" +convert-source-map@^1.5.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== "cookie@~0.4.1": "integrity" "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" @@ -2124,15 +2155,15 @@ "resolved" "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" "version" "0.1.2" -"electron-to-chromium@^1.4.251": - "integrity" "sha512-1pezJ2E1UyBTGbA7fUlHdPSXQw1k+82VhTFLG5G0AUqLGvsZqFzleOblceqegZzxYX4kC7hGEEdzIQI9RZ1Cuw==" - "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.253.tgz" - "version" "1.4.253" +electron-to-chromium@^1.4.251: + version "1.4.284" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== -"engine.io-client@~6.2.1": - "integrity" "sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==" - "resolved" "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.2.tgz" - "version" "6.2.2" +engine.io-client@~6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.2.3.tgz#a8cbdab003162529db85e9de31575097f6d29458" + integrity sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw== dependencies: "@socket.io/component-emitter" "~3.1.0" "debug" "~4.3.1" @@ -2168,37 +2199,133 @@ dependencies: "is-arrayish" "^0.2.1" -"esbuild-darwin-arm64@0.15.7": - "integrity" "sha512-kBIHvtVqbSGajN88lYMnR3aIleH3ABZLLFLxwL2stiuIGAjGlQW741NxVTpUHQXUmPzxi6POqc9npkXa8AcSZQ==" - "resolved" "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.7.tgz" - "version" "0.15.7" +esbuild-android-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.12.tgz#5e8151d5f0a748c71a7fbea8cee844ccf008e6fc" + integrity sha512-MJKXwvPY9g0rGps0+U65HlTsM1wUs9lbjt5CU19RESqycGFDRijMDQsh68MtbzkqWSRdEtiKS1mtPzKneaAI0Q== -"esbuild@^0.15.6": - "integrity" "sha512-7V8tzllIbAQV1M4QoE52ImKu8hT/NLGlGXkiDsbEU5PS6K8Mn09ZnYoS+dcmHxOS9CRsV4IRAMdT3I67IyUNXw==" - "resolved" "https://registry.npmjs.org/esbuild/-/esbuild-0.15.7.tgz" - "version" "0.15.7" +esbuild-android-arm64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.12.tgz#5ee72a6baa444bc96ffcb472a3ba4aba2cc80666" + integrity sha512-Hc9SEcZbIMhhLcvhr1DH+lrrec9SFTiRzfJ7EGSBZiiw994gfkVV6vG0sLWqQQ6DD7V4+OggB+Hn0IRUdDUqvA== + +esbuild-darwin-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.12.tgz#70047007e093fa1b3ba7ef86f9b3fa63db51fe25" + integrity sha512-qkmqrTVYPFiePt5qFjP8w/S+GIUMbt6k8qmiPraECUWfPptaPJUGkCKrWEfYFRWB7bY23FV95rhvPyh/KARP8Q== + +esbuild-darwin-arm64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.12.tgz#41c951f23d9a70539bcca552bae6e5196696ae04" + integrity sha512-z4zPX02tQ41kcXMyN3c/GfZpIjKoI/BzHrdKUwhC/Ki5BAhWv59A9M8H+iqaRbwpzYrYidTybBwiZAIWCLJAkw== + +esbuild-freebsd-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.12.tgz#a761b5afd12bbedb7d56c612e9cfa4d2711f33f0" + integrity sha512-XFL7gKMCKXLDiAiBjhLG0XECliXaRLTZh6hsyzqUqPUf/PY4C6EJDTKIeqqPKXaVJ8+fzNek88285krSz1QECw== + +esbuild-freebsd-arm64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.12.tgz#6b0839d4d58deabc6cbd96276eb8cbf94f7f335e" + integrity sha512-jwEIu5UCUk6TjiG1X+KQnCGISI+ILnXzIzt9yDVrhjug2fkYzlLbl0K43q96Q3KB66v6N1UFF0r5Ks4Xo7i72g== + +esbuild-linux-32@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.12.tgz#bd50bfe22514d434d97d5150977496e2631345b4" + integrity sha512-uSQuSEyF1kVzGzuIr4XM+v7TPKxHjBnLcwv2yPyCz8riV8VUCnO/C4BF3w5dHiVpCd5Z1cebBtZJNlC4anWpwA== + +esbuild-linux-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.12.tgz#074bb2b194bf658245f8490f29c01ffcdfa8c931" + integrity sha512-QcgCKb7zfJxqT9o5z9ZUeGH1k8N6iX1Y7VNsEi5F9+HzN1OIx7ESxtQXDN9jbeUSPiRH1n9cw6gFT3H4qbdvcA== + +esbuild-linux-arm64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.12.tgz#3bf789c4396dc032875a122988efd6f3733f28f5" + integrity sha512-HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ== + +esbuild-linux-arm@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.12.tgz#b91b5a8d470053f6c2c9c8a5e67ec10a71fe4a67" + integrity sha512-Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A== + +esbuild-linux-mips64le@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.12.tgz#2fb54099ada3c950a7536dfcba46172c61e580e2" + integrity sha512-Qol3+AvivngUZkTVFgLpb0H6DT+N5/zM3V1YgTkryPYFeUvuT5JFNDR3ZiS6LxhyF8EE+fiNtzwlPqMDqVcc6A== + +esbuild-linux-ppc64le@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.12.tgz#9e3b8c09825fb27886249dfb3142a750df29a1b7" + integrity sha512-4D8qUCo+CFKaR0cGXtGyVsOI7w7k93Qxb3KFXWr75An0DHamYzq8lt7TNZKoOq/Gh8c40/aKaxvcZnTgQ0TJNg== + +esbuild-linux-riscv64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.12.tgz#923d0f5b6e12ee0d1fe116b08e4ae4478fe40693" + integrity sha512-G9w6NcuuCI6TUUxe6ka0enjZHDnSVK8bO+1qDhMOCtl7Tr78CcZilJj8SGLN00zO5iIlwNRZKHjdMpfFgNn1VA== + +esbuild-linux-s390x@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.12.tgz#3b1620220482b96266a0c6d9d471d451a1eab86f" + integrity sha512-Lt6BDnuXbXeqSlVuuUM5z18GkJAZf3ERskGZbAWjrQoi9xbEIsj/hEzVnSAFLtkfLuy2DE4RwTcX02tZFunXww== + +esbuild-netbsd-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.12.tgz#276730f80da646859b1af5a740e7802d8cd73e42" + integrity sha512-jlUxCiHO1dsqoURZDQts+HK100o0hXfi4t54MNRMCAqKGAV33JCVvMplLAa2FwviSojT/5ZG5HUfG3gstwAG8w== + +esbuild-openbsd-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.12.tgz#bd0eea1dd2ca0722ed489d88c26714034429f8ae" + integrity sha512-1o1uAfRTMIWNOmpf8v7iudND0L6zRBYSH45sofCZywrcf7NcZA+c7aFsS1YryU+yN7aRppTqdUK1PgbZVaB1Dw== + +esbuild-sunos-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.12.tgz#5e56bf9eef3b2d92360d6d29dcde7722acbecc9e" + integrity sha512-nkl251DpoWoBO9Eq9aFdoIt2yYmp4I3kvQjba3jFKlMXuqQ9A4q+JaqdkCouG3DHgAGnzshzaGu6xofGcXyPXg== + +esbuild-windows-32@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.12.tgz#a4f1a301c1a2fa7701fcd4b91ef9d2620cf293d0" + integrity sha512-WlGeBZHgPC00O08luIp5B2SP4cNCp/PcS+3Pcg31kdcJPopHxLkdCXtadLU9J82LCfw4TVls21A6lilQ9mzHrw== + +esbuild-windows-64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.12.tgz#bc2b467541744d653be4fe64eaa9b0dbbf8e07f6" + integrity sha512-VActO3WnWZSN//xjSfbiGOSyC+wkZtI8I4KlgrTo5oHJM6z3MZZBCuFaZHd8hzf/W9KPhF0lY8OqlmWC9HO5AA== + +esbuild-windows-arm64@0.15.12: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.12.tgz#9a7266404334a86be800957eaee9aef94c3df328" + integrity sha512-Of3MIacva1OK/m4zCNIvBfz8VVROBmQT+gRX6pFTLPngFYcj6TFH/12VveAqq1k9VB2l28EoVMNMUCcmsfwyuA== + +esbuild@^0.15.9: + version "0.15.12" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.12.tgz#6c8e22d6d3b7430d165c33848298d3fc9a1f251c" + integrity sha512-PcT+/wyDqJQsRVhaE9uX/Oq4XLrFh0ce/bs2TJh4CSaw9xuvI+xFrH2nAYOADbhQjUgAhNWC5LKoUsakm4dxng== optionalDependencies: - "@esbuild/linux-loong64" "0.15.7" - "esbuild-android-64" "0.15.7" - "esbuild-android-arm64" "0.15.7" - "esbuild-darwin-64" "0.15.7" - "esbuild-darwin-arm64" "0.15.7" - "esbuild-freebsd-64" "0.15.7" - "esbuild-freebsd-arm64" "0.15.7" - "esbuild-linux-32" "0.15.7" - "esbuild-linux-64" "0.15.7" - "esbuild-linux-arm" "0.15.7" - "esbuild-linux-arm64" "0.15.7" - "esbuild-linux-mips64le" "0.15.7" - "esbuild-linux-ppc64le" "0.15.7" - "esbuild-linux-riscv64" "0.15.7" - "esbuild-linux-s390x" "0.15.7" - "esbuild-netbsd-64" "0.15.7" - "esbuild-openbsd-64" "0.15.7" - "esbuild-sunos-64" "0.15.7" - "esbuild-windows-32" "0.15.7" - "esbuild-windows-64" "0.15.7" - "esbuild-windows-arm64" "0.15.7" + "@esbuild/android-arm" "0.15.12" + "@esbuild/linux-loong64" "0.15.12" + esbuild-android-64 "0.15.12" + esbuild-android-arm64 "0.15.12" + esbuild-darwin-64 "0.15.12" + esbuild-darwin-arm64 "0.15.12" + esbuild-freebsd-64 "0.15.12" + esbuild-freebsd-arm64 "0.15.12" + esbuild-linux-32 "0.15.12" + esbuild-linux-64 "0.15.12" + esbuild-linux-arm "0.15.12" + esbuild-linux-arm64 "0.15.12" + esbuild-linux-mips64le "0.15.12" + esbuild-linux-ppc64le "0.15.12" + esbuild-linux-riscv64 "0.15.12" + esbuild-linux-s390x "0.15.12" + esbuild-netbsd-64 "0.15.12" + esbuild-openbsd-64 "0.15.12" + esbuild-sunos-64 "0.15.12" + esbuild-windows-32 "0.15.12" + esbuild-windows-64 "0.15.12" + esbuild-windows-arm64 "0.15.12" "escalade@^3.1.1": "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" @@ -2260,50 +2387,50 @@ "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" "version" "3.3.0" -"eslint@*", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^8.23.0", "eslint@>=5", "eslint@>=7", "eslint@>=7.28.0": - "integrity" "sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg==" - "resolved" "https://registry.npmjs.org/eslint/-/eslint-8.23.1.tgz" - "version" "8.23.1" +eslint@^8.23.0: + version "8.26.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.26.0.tgz#2bcc8836e6c424c4ac26a5674a70d44d84f2181d" + integrity sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== dependencies: - "@eslint/eslintrc" "^1.3.2" - "@humanwhocodes/config-array" "^0.10.4" - "@humanwhocodes/gitignore-to-minimatch" "^1.0.2" + "@eslint/eslintrc" "^1.3.3" + "@humanwhocodes/config-array" "^0.11.6" "@humanwhocodes/module-importer" "^1.0.1" - "ajv" "^6.10.0" - "chalk" "^4.0.0" - "cross-spawn" "^7.0.2" - "debug" "^4.3.2" - "doctrine" "^3.0.0" - "escape-string-regexp" "^4.0.0" - "eslint-scope" "^7.1.1" - "eslint-utils" "^3.0.0" - "eslint-visitor-keys" "^3.3.0" - "espree" "^9.4.0" - "esquery" "^1.4.0" - "esutils" "^2.0.2" - "fast-deep-equal" "^3.1.3" - "file-entry-cache" "^6.0.1" - "find-up" "^5.0.0" - "glob-parent" "^6.0.1" - "globals" "^13.15.0" - "globby" "^11.1.0" - "grapheme-splitter" "^1.0.4" - "ignore" "^5.2.0" - "import-fresh" "^3.0.0" - "imurmurhash" "^0.1.4" - "is-glob" "^4.0.0" - "js-sdsl" "^4.1.4" - "js-yaml" "^4.1.0" - "json-stable-stringify-without-jsonify" "^1.0.1" - "levn" "^0.4.1" - "lodash.merge" "^4.6.2" - "minimatch" "^3.1.2" - "natural-compare" "^1.4.0" - "optionator" "^0.9.1" - "regexpp" "^3.2.0" - "strip-ansi" "^6.0.1" - "strip-json-comments" "^3.1.0" - "text-table" "^0.2.0" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.4.0" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.15.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-sdsl "^4.1.4" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" "espree@^9.4.0": "integrity" "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==" @@ -2451,17 +2578,17 @@ "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" "version" "3.2.7" -"focus-lock@^0.11.2": - "integrity" "sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==" - "resolved" "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.2.tgz" - "version" "0.11.2" +focus-lock@^0.11.2: + version "0.11.3" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.11.3.tgz#c094e8f109d780f56038abdeec79328fd56b627f" + integrity sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg== dependencies: "tslib" "^2.0.3" -"framer-motion@^7.2.1", "framer-motion@>=4.0.0": - "integrity" "sha512-JrLLVCi59LMI3+ZvSSbxf/Z7SOIdYRZrgdkUvJkzyT2RXu34HtGy26n41jNrcD5K85boqlZhGTbfqnAIfMHRLQ==" - "resolved" "https://registry.npmjs.org/framer-motion/-/framer-motion-7.3.5.tgz" - "version" "7.3.5" +framer-motion@^7.2.1: + version "7.6.2" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-7.6.2.tgz#7fb93ebfeda27c8c2cff1895ca7a417229e81bf7" + integrity sha512-YRr+KaC+1MlLx7iArVyjZRpc0QXI7H0XIOJrdol+dF1+WLQJwS2sP04KGq808BG+byD36UAmAt4YqObE5YFLtw== dependencies: "@motionone/dom" "10.13.1" "framesync" "6.1.2" @@ -2506,15 +2633,10 @@ "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" "version" "1.1.1" -"functional-red-black-tree@^1.0.1": - "integrity" "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" - "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" - "version" "1.0.1" - -"gensync@^1.0.0-beta.2": - "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" - "version" "1.0.0-beta.2" +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== "get-nonce@^1.0.0": "integrity" "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" @@ -2528,10 +2650,10 @@ dependencies: "is-glob" "^4.0.1" -"glob-parent@^6.0.1": - "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" - "version" "6.0.2" +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: "is-glob" "^4.0.3" @@ -2622,10 +2744,10 @@ "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" "version" "5.2.0" -"immer@^9.0.7": - "integrity" "sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==" - "resolved" "https://registry.npmjs.org/immer/-/immer-9.0.15.tgz" - "version" "9.0.15" +immer@^9.0.7: + version "9.0.16" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.16.tgz#8e7caab80118c2b54b37ad43e05758cdefad0198" + integrity sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ== "immutable@^4.0.0": "integrity" "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==" @@ -2677,10 +2799,10 @@ dependencies: "binary-extensions" "^2.0.0" -"is-core-module@^2.9.0": - "integrity" "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==" - "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz" - "version" "2.10.0" +is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== dependencies: "has" "^1.0.3" @@ -2701,10 +2823,15 @@ "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" "version" "7.0.0" -"isexe@^2.0.0": - "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" - "version" "2.0.0" +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== "its-fine@^1.0.6": "integrity" "sha512-VZJZPwVT2kxe5KQv+TxCjojfLiUIut8zXDNLTxcM7gJ/xQ/bSPk5M0neZ+j3myy45KKkltY1mm1jyJgx3Fxsdg==" @@ -2713,10 +2840,10 @@ dependencies: "@types/react-reconciler" "^0.28.0" -"js-sdsl@^4.1.4": - "integrity" "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==" - "resolved" "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz" - "version" "4.1.4" +js-sdsl@^4.1.4: + version "4.1.5" + resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" + integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== "js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" @@ -2809,10 +2936,10 @@ dependencies: "yallist" "^4.0.0" -"magic-string@^0.26.2": - "integrity" "sha512-u1Po0NDyFcwdg2nzHT88wSK0+Rih0N1M+Ph1Sp08k8yvFFU3KR72wryS7e1qMPJypt99WB7fIFVCA92mQrMjrg==" - "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.26.3.tgz" - "version" "0.26.3" +magic-string@^0.26.7: + version "0.26.7" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.7.tgz#caf7daf61b34e9982f8228c4527474dac8981d6f" + integrity sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow== dependencies: "sourcemap-codec" "^1.4.8" @@ -2846,10 +2973,10 @@ dependencies: "mime-db" "1.52.0" -"minimatch@^3.0.4", "minimatch@^3.1.1", "minimatch@^3.1.2": - "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - "version" "3.1.2" +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: "brace-expansion" "^1.1.7" @@ -2863,10 +2990,15 @@ "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" "version" "3.3.4" -"natural-compare@^1.4.0": - "integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" - "version" "1.4.0" +natural-compare-lite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== "negotiator@0.6.3": "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" @@ -2995,10 +3127,10 @@ "style-value-types" "5.1.2" "tslib" "2.4.0" -"postcss@^8.4.16": - "integrity" "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==" - "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz" - "version" "8.4.16" +postcss@^8.4.18: + version "8.4.18" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.18.tgz#6d50046ea7d3d66a85e0e782074e7203bc7fbca2" + integrity sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== dependencies: "nanoid" "^3.3.4" "picocolors" "^1.0.0" @@ -3070,10 +3202,10 @@ "loose-envify" "^1.1.0" "scheduler" "^0.23.0" -"react-dropzone@^14.2.2": - "integrity" "sha512-5oyGN/B5rNhop2ggUnxztXBQ6q6zii+OMEftPzsxAR2hhpVWz0nAV+3Ktxo2h5bZzdcCKrpd8bfWAVsveIBM+w==" - "resolved" "https://registry.npmjs.org/react-dropzone/-/react-dropzone-14.2.2.tgz" - "version" "14.2.2" +react-dropzone@^14.2.2: + version "14.2.3" + resolved "https://registry.yarnpkg.com/react-dropzone/-/react-dropzone-14.2.3.tgz#0acab68308fda2d54d1273a1e626264e13d4e84b" + integrity sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug== dependencies: "attr-accept" "^2.2.2" "file-selector" "^0.6.0" @@ -3103,10 +3235,10 @@ dependencies: "hotkeys-js" "3.9.4" -"react-icons@^4.4.0": - "integrity" "sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==" - "resolved" "https://registry.npmjs.org/react-icons/-/react-icons-4.4.0.tgz" - "version" "4.4.0" +react-icons@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.6.0.tgz#f83eda179af5d02c047449a20b702c858653d397" + integrity sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g== "react-is@^16.13.1", "react-is@^16.7.0": "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" @@ -3135,10 +3267,10 @@ "loose-envify" "^1.1.0" "scheduler" "^0.23.0" -"react-redux@^7.2.1 || ^8.0.2", "react-redux@^8.0.2": - "integrity" "sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==" - "resolved" "https://registry.npmjs.org/react-redux/-/react-redux-8.0.2.tgz" - "version" "8.0.2" +react-redux@^8.0.2: + version "8.0.4" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-8.0.4.tgz#80c31dffa8af9526967c4267022ae1525ff0e36a" + integrity sha512-yMfQ7mX6bWuicz2fids6cR1YT59VTuT8MKyyE310wJQlINKENCeT1UcPdEiX6znI5tF8zXyJ/VYvDgeGuaaNwQ== dependencies: "@babel/runtime" "^7.12.1" "@types/hoist-non-react-statics" "^3.3.1" @@ -3152,10 +3284,10 @@ "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz" "version" "0.14.0" -"react-remove-scroll-bar@^2.3.3": - "integrity" "sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==" - "resolved" "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.3.tgz" - "version" "2.3.3" +react-remove-scroll-bar@^2.3.3: + version "2.3.4" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz#53e272d7a5cb8242990c7f144c44d8bd8ab5afd9" + integrity sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A== dependencies: "react-style-singleton" "^2.2.1" "tslib" "^2.0.0" @@ -3221,10 +3353,10 @@ dependencies: "@babel/runtime" "^7.9.2" -"regenerator-runtime@^0.13.4": - "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" - "version" "0.13.9" +regenerator-runtime@^0.13.10: + version "0.13.10" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" + integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== "regexpp@^3.2.0": "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" @@ -3262,29 +3394,24 @@ dependencies: "glob" "^7.1.3" -"rollup@^2.77.2", "rollup@~2.78.0": - "integrity" "sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==" - "resolved" "https://registry.npmjs.org/rollup/-/rollup-2.78.1.tgz" - "version" "2.78.1" +rollup@^2.77.2, rollup@^2.79.1: + version "2.79.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" + integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== optionalDependencies: "fsevents" "~2.3.2" -"run-parallel@^1.1.9": - "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" - "version" "1.2.0" +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: "queue-microtask" "^1.2.2" -"safe-buffer@~5.1.1": - "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - "version" "5.1.2" - -"sass@*", "sass@^1.55.0": - "integrity" "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==" - "resolved" "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz" - "version" "1.55.0" +sass@^1.55.0: + version "1.55.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.55.0.tgz#0c4d3c293cfe8f8a2e8d3b666e1cf1bff8065d1c" + integrity sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A== dependencies: "chokidar" ">=3.0.0 <4.0.0" "immutable" "^4.0.0" @@ -3302,10 +3429,10 @@ "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" "version" "6.3.0" -"semver@^7.3.7": - "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" - "version" "7.3.7" +semver@^7.3.7: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== dependencies: "lru-cache" "^6.0.0" @@ -3331,15 +3458,15 @@ "resolved" "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz" "version" "2.4.0" -"socket.io-client@^4.5.2": - "integrity" "sha512-naqYfFu7CLDiQ1B7AlLhRXKX3gdeaIMfgigwavDzgJoIUYulc1qHH5+2XflTsXTPY7BlPH5rppJyUjhjrKQKLg==" - "resolved" "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.2.tgz" - "version" "4.5.2" +socket.io-client@^4.5.2: + version "4.5.3" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.5.3.tgz#bed69209d001465b2fea650d2e95c1e82768ab5e" + integrity sha512-I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A== dependencies: "@socket.io/component-emitter" "~3.1.0" - "debug" "~4.3.2" - "engine.io-client" "~6.2.1" - "socket.io-parser" "~4.2.0" + debug "~4.3.2" + engine.io-client "~6.2.3" + socket.io-parser "~4.2.0" "socket.io-parser@~4.2.0": "integrity" "sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==" @@ -3349,10 +3476,10 @@ "@socket.io/component-emitter" "~3.1.0" "debug" "~4.3.1" -"socket.io@^4.5.2": - "integrity" "sha512-6fCnk4ARMPZN448+SQcnn1u8OHUC72puJcNtSgg2xS34Cu7br1gQ09YKkO1PFfDn/wyUE9ZgMAwosJed003+NQ==" - "resolved" "https://registry.npmjs.org/socket.io/-/socket.io-4.5.2.tgz" - "version" "4.5.2" +socket.io@^4.5.2: + version "4.5.3" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.5.3.tgz#44dffea48d7f5aa41df4a66377c386b953bc521c" + integrity sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg== dependencies: "accepts" "~1.3.4" "base64id" "~2.0.0" @@ -3415,10 +3542,10 @@ "hey-listen" "^1.0.8" "tslib" "2.4.0" -"stylis@4.0.13": - "integrity" "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" - "resolved" "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz" - "version" "4.0.13" +stylis@4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" + integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== "supports-color@^5.3.0": "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" @@ -3449,10 +3576,10 @@ "resolved" "https://registry.npmjs.org/through/-/through-2.3.8.tgz" "version" "2.3.8" -"tiny-invariant@^1.0.6": - "integrity" "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==" - "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz" - "version" "1.2.0" +tiny-invariant@^1.0.6: + version "1.3.1" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" + integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== "to-fast-properties@^2.0.0": "integrity" "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" @@ -3482,20 +3609,25 @@ "string-argv" "^0.1.1" "strip-ansi" "^6.0.0" -"tslib@^1.8.1": - "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" - "version" "1.14.1" +tslib@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== "tslib@^2.0.0", "tslib@^2.0.3", "tslib@^2.1.0", "tslib@^2.3.1", "tslib@^2.4.0", "tslib@2.4.0": "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" "version" "2.4.0" -"tsutils@^3.21.0": - "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" - "version" "3.21.0" +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== dependencies: "tslib" "^1.8.1" @@ -3511,15 +3643,15 @@ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" "version" "0.20.2" -"typescript@*", "typescript@^4.6.4", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta": - "integrity" "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==" - "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz" - "version" "4.8.3" +typescript@^4.6.4: + version "4.8.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" + integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== -"update-browserslist-db@^1.0.9": - "integrity" "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==" - "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz" - "version" "1.0.9" +update-browserslist-db@^1.0.9: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== dependencies: "escalade" "^3.1.1" "picocolors" "^1.0.0" @@ -3575,15 +3707,15 @@ "@types/eslint" "^8.4.5" "rollup" "^2.77.2" -"vite@^3.0.0", "vite@^3.0.7", "vite@>=2": - "integrity" "sha512-hgxQWev/AL7nWYrqByYo8nfcH9n97v6oFsta9+JX8h6cEkni7nHKP2kJleNYV2kcGhE8jsbaY1aStwPZXzPbgA==" - "resolved" "https://registry.npmjs.org/vite/-/vite-3.1.1.tgz" - "version" "3.1.1" +vite@^3.0.7: + version "3.2.2" + resolved "https://registry.yarnpkg.com/vite/-/vite-3.2.2.tgz#280762bfaf47bcea1d12698427331c0009ac7c1f" + integrity sha512-pLrhatFFOWO9kS19bQ658CnRYzv0WLbsPih6R+iFeEEhDOuYgYCX2rztUViMz/uy/V8cLCJvLFeiOK7RJEzHcw== dependencies: - "esbuild" "^0.15.6" - "postcss" "^8.4.16" - "resolve" "^1.22.1" - "rollup" "~2.78.0" + esbuild "^0.15.9" + postcss "^8.4.18" + resolve "^1.22.1" + rollup "^2.79.1" optionalDependencies: "fsevents" "~2.3.2"